easylogging++: detect DragonFly BSD as a UNIX

This commit is contained in:
moneromooo-monero 2017-01-20 00:33:13 +00:00
parent 71ac698b78
commit 7c0c5c1724
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -104,8 +104,13 @@
#else #else
# define ELPP_OS_SOLARIS 0 # define ELPP_OS_SOLARIS 0
#endif #endif
#if (defined(__DragonFly__))
# define ELPP_OS_DRAGONFLY 1
#else
# define ELPP_OS_DRAGONFLY 0
#endif
// Unix // Unix
#if ((ELPP_OS_LINUX || ELPP_OS_MAC || ELPP_OS_FREEBSD || ELPP_OS_SOLARIS) && (!ELPP_OS_WINDOWS)) #if ((ELPP_OS_LINUX || ELPP_OS_MAC || ELPP_OS_FREEBSD || ELPP_OS_SOLARIS || ELPP_OS_DRAGONFLY) && (!ELPP_OS_WINDOWS))
# define ELPP_OS_UNIX 1 # define ELPP_OS_UNIX 1
#else #else
# define ELPP_OS_UNIX 0 # define ELPP_OS_UNIX 0