Merge pull request #1073 from devnexen/build_fix_bsd
build fix for BSD systems
This commit is contained in:
@@ -84,7 +84,7 @@ ELSE(WIN32)
|
|||||||
ADD_DEFINITIONS("-DGLEW_STATIC")
|
ADD_DEFINITIONS("-DGLEW_STATIC")
|
||||||
ADD_DEFINITIONS("-DGLEW_DYNAMIC_LOAD_ALL_GLX_FUNCTIONS=1")
|
ADD_DEFINITIONS("-DGLEW_DYNAMIC_LOAD_ALL_GLX_FUNCTIONS=1")
|
||||||
|
|
||||||
LINK_LIBRARIES( pthread dl )
|
LINK_LIBRARIES( pthread ${DL} )
|
||||||
ENDIF(APPLE)
|
ENDIF(APPLE)
|
||||||
ENDIF(WIN32)
|
ENDIF(WIN32)
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,16 @@
|
|||||||
SUBDIRS( HelloWorld BasicDemo )
|
SUBDIRS( HelloWorld BasicDemo )
|
||||||
IF(BUILD_BULLET3)
|
IF(BUILD_BULLET3)
|
||||||
|
SET(DL dl)
|
||||||
|
IF(CMAKE_SYSTEM_NAME MATCHES "Linux")
|
||||||
|
SET(OSDEF -D_LINUX)
|
||||||
|
ELSE(CMAKE_SYSTEM_NAME MATCHES "Linux")
|
||||||
|
IF(APPLE)
|
||||||
|
SET(OSDEF -D_DARWIN)
|
||||||
|
ELSE(APPLE)
|
||||||
|
SET(OSDEF -D_BSD)
|
||||||
|
SET(DL "")
|
||||||
|
ENDIF(APPLE)
|
||||||
|
ENDIF(CMAKE_SYSTEM_NAME MATCHES "Linux")
|
||||||
SUBDIRS( ExampleBrowser RobotSimulator SharedMemory ThirdPartyLibs/Gwen ThirdPartyLibs/BussIK ThirdPartyLibs/clsocket OpenGLWindow )
|
SUBDIRS( ExampleBrowser RobotSimulator SharedMemory ThirdPartyLibs/Gwen ThirdPartyLibs/BussIK ThirdPartyLibs/clsocket OpenGLWindow )
|
||||||
ENDIF()
|
ENDIF()
|
||||||
IF(BUILD_PYBULLET)
|
IF(BUILD_PYBULLET)
|
||||||
|
|||||||
@@ -65,7 +65,7 @@ IF (BUILD_SHARED_LIBS)
|
|||||||
TARGET_LINK_LIBRARIES(
|
TARGET_LINK_LIBRARIES(
|
||||||
BulletExampleBrowserLib Bullet3Common BulletSoftBody BulletDynamics BulletCollision BulletInverseDynamicsUtils
|
BulletExampleBrowserLib Bullet3Common BulletSoftBody BulletDynamics BulletCollision BulletInverseDynamicsUtils
|
||||||
BulletInverseDynamics LinearMath OpenGLWindow gwen BussIK
|
BulletInverseDynamics LinearMath OpenGLWindow gwen BussIK
|
||||||
pthread dl
|
pthread ${DL}
|
||||||
)
|
)
|
||||||
ENDIF(APPLE)
|
ENDIF(APPLE)
|
||||||
ENDIF(WIN32)
|
ENDIF(WIN32)
|
||||||
@@ -106,7 +106,7 @@ ELSE(WIN32)
|
|||||||
ADD_DEFINITIONS("-DGLEW_STATIC")
|
ADD_DEFINITIONS("-DGLEW_STATIC")
|
||||||
ADD_DEFINITIONS("-DGLEW_DYNAMIC_LOAD_ALL_GLX_FUNCTIONS=1")
|
ADD_DEFINITIONS("-DGLEW_DYNAMIC_LOAD_ALL_GLX_FUNCTIONS=1")
|
||||||
INCLUDE_DIRECTORIES( ${BULLET_PHYSICS_SOURCE_DIR}/examples/ThirdPartyLibs/Glew )
|
INCLUDE_DIRECTORIES( ${BULLET_PHYSICS_SOURCE_DIR}/examples/ThirdPartyLibs/Glew )
|
||||||
LINK_LIBRARIES( pthread dl)
|
LINK_LIBRARIES( pthread ${DL})
|
||||||
ENDIF(APPLE)
|
ENDIF(APPLE)
|
||||||
ENDIF(WIN32)
|
ENDIF(WIN32)
|
||||||
|
|
||||||
|
|||||||
@@ -61,7 +61,7 @@ if (BUILD_SHARED_LIBS)
|
|||||||
else()
|
else()
|
||||||
set (CMAKE_THREAD_PREFER_PTHREAD TRUE)
|
set (CMAKE_THREAD_PREFER_PTHREAD TRUE)
|
||||||
FIND_PACKAGE(Threads)
|
FIND_PACKAGE(Threads)
|
||||||
target_link_libraries(OpenGLWindow dl ${CMAKE_THREAD_LIBS_INIT})
|
target_link_libraries(OpenGLWindow ${DL} ${CMAKE_THREAD_LIBS_INIT})
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|||||||
@@ -99,11 +99,7 @@ ELSE(WIN32)
|
|||||||
ENDIF(BUILD_ENET)
|
ENDIF(BUILD_ENET)
|
||||||
|
|
||||||
IF(BUILD_CLSOCKET)
|
IF(BUILD_CLSOCKET)
|
||||||
IF(APPLE)
|
ADD_DEFINITIONS(${OSDEF})
|
||||||
ADD_DEFINITIONS(-D_DARWIN)
|
|
||||||
ELSE()
|
|
||||||
ADD_DEFINITIONS(-D_LINUX)
|
|
||||||
ENDIF()
|
|
||||||
ENDIF(BUILD_CLSOCKET)
|
ENDIF(BUILD_CLSOCKET)
|
||||||
ENDIF(WIN32)
|
ENDIF(WIN32)
|
||||||
|
|
||||||
@@ -160,7 +156,7 @@ ELSE(WIN32)
|
|||||||
ADD_DEFINITIONS("-DGLEW_STATIC")
|
ADD_DEFINITIONS("-DGLEW_STATIC")
|
||||||
ADD_DEFINITIONS("-DGLEW_DYNAMIC_LOAD_ALL_GLX_FUNCTIONS=1")
|
ADD_DEFINITIONS("-DGLEW_DYNAMIC_LOAD_ALL_GLX_FUNCTIONS=1")
|
||||||
|
|
||||||
LINK_LIBRARIES( pthread dl )
|
LINK_LIBRARIES( pthread ${DL} )
|
||||||
ENDIF(APPLE)
|
ENDIF(APPLE)
|
||||||
ENDIF(WIN32)
|
ENDIF(WIN32)
|
||||||
|
|
||||||
|
|||||||
@@ -114,7 +114,7 @@ ELSE(WIN32)
|
|||||||
)
|
)
|
||||||
|
|
||||||
ELSE(APPLE)
|
ELSE(APPLE)
|
||||||
LINK_LIBRARIES( pthread dl )
|
LINK_LIBRARIES( pthread ${DL} )
|
||||||
ADD_EXECUTABLE(App_PhysicsServer_SharedMemory
|
ADD_EXECUTABLE(App_PhysicsServer_SharedMemory
|
||||||
${SharedMemory_SRCS}
|
${SharedMemory_SRCS}
|
||||||
../MultiThreading/b3PosixThreadSupport.cpp
|
../MultiThreading/b3PosixThreadSupport.cpp
|
||||||
@@ -181,7 +181,7 @@ ELSE(WIN32)
|
|||||||
)
|
)
|
||||||
|
|
||||||
ELSE(APPLE)
|
ELSE(APPLE)
|
||||||
LINK_LIBRARIES( pthread dl )
|
LINK_LIBRARIES( pthread ${DL} )
|
||||||
ADD_DEFINITIONS("-DGLEW_INIT_OPENGL11_FUNCTIONS=1")
|
ADD_DEFINITIONS("-DGLEW_INIT_OPENGL11_FUNCTIONS=1")
|
||||||
ADD_DEFINITIONS("-DGLEW_STATIC")
|
ADD_DEFINITIONS("-DGLEW_STATIC")
|
||||||
ADD_DEFINITIONS("-DGLEW_DYNAMIC_LOAD_ALL_GLX_FUNCTIONS=1")
|
ADD_DEFINITIONS("-DGLEW_DYNAMIC_LOAD_ALL_GLX_FUNCTIONS=1")
|
||||||
@@ -290,4 +290,4 @@ IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
|||||||
SET_TARGET_PROPERTIES(App_PhysicsServer_SharedMemory_VR PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
SET_TARGET_PROPERTIES(App_PhysicsServer_SharedMemory_VR PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||||
|
|
||||||
ENDIF(WIN32)
|
ENDIF(WIN32)
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ ELSE(WIN32)
|
|||||||
ADD_DEFINITIONS("-DGLEW_STATIC")
|
ADD_DEFINITIONS("-DGLEW_STATIC")
|
||||||
ADD_DEFINITIONS("-DGLEW_DYNAMIC_LOAD_ALL_GLX_FUNCTIONS=1")
|
ADD_DEFINITIONS("-DGLEW_DYNAMIC_LOAD_ALL_GLX_FUNCTIONS=1")
|
||||||
|
|
||||||
LINK_LIBRARIES( X11 pthread dl Xext)
|
LINK_LIBRARIES( X11 pthread ${DL} Xext)
|
||||||
ENDIF(APPLE)
|
ENDIF(APPLE)
|
||||||
ENDIF(WIN32)
|
ENDIF(WIN32)
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
#define GWEN_MACROS_H
|
#define GWEN_MACROS_H
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#ifndef __APPLE__
|
#if !defined(__APPLE__) && !defined(__OpenBSD__)
|
||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
#endif //__APPLE__
|
#endif //__APPLE__
|
||||||
#include <memory.h>
|
#include <memory.h>
|
||||||
@@ -38,7 +38,7 @@
|
|||||||
#define GwenUtil_OutputDebugWideString( lpOutputString ) //wprintf( lpOutputString )
|
#define GwenUtil_OutputDebugWideString( lpOutputString ) //wprintf( lpOutputString )
|
||||||
#define GwenUtil_WideStringToFloat( _Str ) wcstof(_Str, NULL)
|
#define GwenUtil_WideStringToFloat( _Str ) wcstof(_Str, NULL)
|
||||||
|
|
||||||
#elif defined(__linux__)
|
#elif defined(__linux__) || defined(__OpenBSD__)
|
||||||
|
|
||||||
#define GwenUtil_VSNPrintFSafe( _DstBuf, _DstSize, _MaxCount, _Format, _ArgList ) vsnprintf( _DstBuf, _DstSize, _Format, _ArgList )
|
#define GwenUtil_VSNPrintFSafe( _DstBuf, _DstSize, _MaxCount, _Format, _ArgList ) vsnprintf( _DstBuf, _DstSize, _Format, _ArgList )
|
||||||
#define GwenUtil_VSWPrintFSafe( _DstBuf, _SizeInWords, _Format, _ArgList ) vswprintf( _DstBuf, _SizeInWords, _Format, _ArgList )
|
#define GwenUtil_VSWPrintFSafe( _DstBuf, _SizeInWords, _Format, _ArgList ) vswprintf( _DstBuf, _SizeInWords, _Format, _ArgList )
|
||||||
|
|||||||
@@ -30,14 +30,7 @@ LIST(APPEND CLSOCKET_SOURCES ${CLSOCKET_HEADERS})
|
|||||||
# OS and compiler checks.
|
# OS and compiler checks.
|
||||||
if(UNIX)
|
if(UNIX)
|
||||||
# linux / normal unix
|
# linux / normal unix
|
||||||
add_definitions(-D_LINUX)
|
add_definitions(${OSDEF})
|
||||||
if(CYGWIN)
|
|
||||||
# Special Cygwin stuff here
|
|
||||||
elseif(APPLE)
|
|
||||||
# Special Apple stuff here
|
|
||||||
remove_definitions(-D_LINUX)
|
|
||||||
add_definitions(-D_DARWIN)
|
|
||||||
endif()
|
|
||||||
elseif(WIN32)
|
elseif(WIN32)
|
||||||
add_definitions(-DWIN32)
|
add_definitions(-DWIN32)
|
||||||
SET(PROJECT_LIBS Ws2_32.lib)
|
SET(PROJECT_LIBS Ws2_32.lib)
|
||||||
|
|||||||
@@ -61,7 +61,7 @@ extern "C"
|
|||||||
#define __WORDSIZE 32
|
#define __WORDSIZE 32
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(_LINUX) || defined(_DARWIN)
|
#if defined(_LINUX) || defined(_DARWIN) || defined(_BSD)
|
||||||
typedef unsigned char uint8;
|
typedef unsigned char uint8;
|
||||||
typedef char int8;
|
typedef char int8;
|
||||||
typedef unsigned short uint16;
|
typedef unsigned short uint16;
|
||||||
@@ -176,7 +176,7 @@ extern "C"
|
|||||||
#define GETHOSTBYNAME(a) gethostbyname(a)
|
#define GETHOSTBYNAME(a) gethostbyname(a)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(_LINUX) || defined(_DARWIN)
|
#if defined(_LINUX) || defined(_DARWIN) || defined(_BSD)
|
||||||
#define ACCEPT(a,b,c) accept(a,b,c)
|
#define ACCEPT(a,b,c) accept(a,b,c)
|
||||||
#define CONNECT(a,b,c) connect(a,b,c)
|
#define CONNECT(a,b,c) connect(a,b,c)
|
||||||
#define CLOSE(a) close(a)
|
#define CLOSE(a) close(a)
|
||||||
|
|||||||
@@ -49,7 +49,7 @@
|
|||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
|
||||||
#if defined(_LINUX) || defined (_DARWIN)
|
#if defined(_LINUX) || defined (_DARWIN) || defined(_BSD)
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#include <netinet/in.h>
|
#include <netinet/in.h>
|
||||||
#include <arpa/inet.h>
|
#include <arpa/inet.h>
|
||||||
@@ -66,7 +66,7 @@
|
|||||||
#ifdef _DARWIN
|
#ifdef _DARWIN
|
||||||
#include <net/if.h>
|
#include <net/if.h>
|
||||||
#endif
|
#endif
|
||||||
#if defined(_LINUX) || defined (_DARWIN)
|
#if defined(_LINUX) || defined (_DARWIN) || defined(_BSD)
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#include <sys/uio.h>
|
#include <sys/uio.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|||||||
@@ -101,11 +101,7 @@ ELSE(WIN32)
|
|||||||
ENDIF(BUILD_PYBULLET_ENET)
|
ENDIF(BUILD_PYBULLET_ENET)
|
||||||
|
|
||||||
IF(BUILD_PYBULLET_CLSOCKET)
|
IF(BUILD_PYBULLET_CLSOCKET)
|
||||||
IF(APPLE)
|
ADD_DEFINITIONS(${OSDEF})
|
||||||
ADD_DEFINITIONS(-D_DARWIN)
|
|
||||||
ELSE()
|
|
||||||
ADD_DEFINITIONS(-D_LINUX)
|
|
||||||
ENDIF()
|
|
||||||
ENDIF(BUILD_PYBULLET_CLSOCKET)
|
ENDIF(BUILD_PYBULLET_CLSOCKET)
|
||||||
ENDIF(WIN32)
|
ENDIF(WIN32)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user