DragonFlyBSD support, mainly FreeBSD codepath.

This commit is contained in:
David Carlier 2020-10-10 14:14:49 +01:00
parent 23e4960fef
commit eace0982a2
5 changed files with 9 additions and 7 deletions

View File

@ -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

View File

@ -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

View File

@ -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);

View File

@ -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)

View File

@ -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));