You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
370 B
14 lines
370 B
#include <sys/cdefs.h> /* Defines __BIONIC__ */
|
|
|
|
#if defined(__BIONIC__)
|
|
# include <event2/event-config-bionic.h>
|
|
#else
|
|
# if defined(__linux__)
|
|
# include <event2/event-config-linux.h>
|
|
# elif defined(__APPLE__)
|
|
# include <event2/event-config-darwin.h>
|
|
# else
|
|
# error No event-config.h suitable for this distribution.
|
|
# endif
|
|
#endif /* ifdef __BIONIC__ */
|