mirror of
https://github.com/owntone/owntone-server.git
synced 2025-03-26 15:30:58 -04:00
Proper update to libevent 2 in spotify.h and pipe.h
This commit is contained in:
parent
a3a689573f
commit
661a557500
@ -3,7 +3,11 @@
|
||||
#define __PIPE_H__
|
||||
|
||||
#include "db.h"
|
||||
#include <event.h>
|
||||
#ifdef HAVE_LIBEVENT2
|
||||
# include <event2/buffer.h>
|
||||
#else
|
||||
# include <event.h>
|
||||
#endif
|
||||
|
||||
int
|
||||
pipe_setup(struct media_file_info *mfi);
|
||||
|
@ -3,7 +3,12 @@
|
||||
#define __SPOTIFY_H__
|
||||
|
||||
#include "db.h"
|
||||
#include <event.h>
|
||||
#ifdef HAVE_LIBEVENT2
|
||||
# include <event2/event.h>
|
||||
# include <event2/buffer.h>
|
||||
#else
|
||||
# include <event.h>
|
||||
#endif
|
||||
|
||||
int
|
||||
spotify_playback_play(struct media_file_info *mfi);
|
||||
|
Loading…
x
Reference in New Issue
Block a user