DragonFlyBSD support, mainly FreeBSD codepath.
This commit is contained in:
parent
23e4960fef
commit
eace0982a2
@ -176,12 +176,12 @@ endif()
|
||||
add_subdirectory("${PROJECT_SOURCE_DIR}/lib/bullet")
|
||||
include_directories(BEFORE "${PROJECT_SOURCE_DIR}/lib/bullet/src")
|
||||
|
||||
if(WIN32 OR CMAKE_SYSTEM_NAME MATCHES "BSD")
|
||||
if(WIN32 OR CMAKE_SYSTEM_NAME MATCHES "BSD" OR CMAKE_SYSTEM_NAME MATCHES "DragonFly")
|
||||
set(LIBRESOLV_LIBRARY)
|
||||
elseif (HAIKU)
|
||||
find_library(LIBRESOLV_LIBRARY NAMES network socket)
|
||||
else()
|
||||
find_library(LIBRESOLV_LIBRARY NAMES resolv libresolv)
|
||||
find_library(LIBRESOLV_LIBRARY NAMES resolv libresolv)
|
||||
endif()
|
||||
|
||||
# Find system ENet library or build it if missing
|
||||
|
@ -38,7 +38,7 @@
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
#if !defined(__APPLE__) && !defined(__SNC__) && !defined(__ghs__) && !defined(__FreeBSD__) && !defined(__OpenBSD__)
|
||||
#if !defined(__APPLE__) && !defined(__SNC__) && !defined(__ghs__) && !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__DragonFly__)
|
||||
#include <malloc.h>
|
||||
#endif
|
||||
|
||||
|
@ -346,7 +346,7 @@
|
||||
#include <mach-o/dyld.h>
|
||||
#endif
|
||||
|
||||
#if defined(__FreeBSD__)
|
||||
#if defined(__FreeBSD__) || defined(__DragonFly__)
|
||||
#include <sys/sysctl.h>
|
||||
#endif
|
||||
|
||||
@ -432,7 +432,7 @@
|
||||
return;
|
||||
}
|
||||
path[len] = 0;
|
||||
#elif defined(__FreeBSD__)
|
||||
#elif defined(__FreeBSD__) || defined(__DragonFly__)
|
||||
int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1};
|
||||
size_t len = PATH_MAX;
|
||||
path = (char*)malloc(PATH_MAX+1);
|
||||
|
@ -1390,6 +1390,8 @@ namespace StringUtils
|
||||
uagent += (std::string)" (Macintosh)";
|
||||
#elif defined(__FreeBSD__)
|
||||
uagent += (std::string)" (FreeBSD)";
|
||||
#elif defined(__DragonFly__)
|
||||
uagent += (std::string)" (DragonFlyBSD)";
|
||||
#elif defined(__HAIKU__)
|
||||
uagent += (std::string)" (Haiku)";
|
||||
#elif defined(ANDROID)
|
||||
|
@ -44,7 +44,7 @@
|
||||
# include <pthread.h>
|
||||
#endif
|
||||
|
||||
#if defined(__FreeBSD__)
|
||||
#if defined(__FreeBSD__) || defined(__DragonFly__)
|
||||
# include <pthread.h>
|
||||
# include <pthread_np.h>
|
||||
#endif
|
||||
@ -98,7 +98,7 @@ namespace VS
|
||||
#if __GLIBC__ > 2 || __GLIBC_MINOR__ > 11
|
||||
pthread_setname_np(pthread_self(), name);
|
||||
#endif
|
||||
#elif defined(__FreeBSD__)
|
||||
#elif defined(__FreeBSD__) || defined(__DragonFly__)
|
||||
pthread_set_name_np(pthread_self(), name);
|
||||
#elif defined(__NetBSD__)
|
||||
pthread_setname_np(pthread_self(), "%s", const_cast<char *>(name));
|
||||
|
Loading…
x
Reference in New Issue
Block a user