mirror of https://github.com/sipwise/kamailio.git
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.
55 lines
1.6 KiB
55 lines
1.6 KiB
message(
|
|
STATUS
|
|
"Configuring for Darwin (Apple stationary operating systems (macOS, OS X, etc.)"
|
|
)
|
|
|
|
target_compile_definitions(
|
|
common
|
|
INTERFACE HAVE_SOCKADDR_SA_LEN
|
|
HAVE_GETHOSTBYNAME2
|
|
HAVE_UNION_SEMUN
|
|
HAVE_SCHED_YIELD
|
|
USE_ANON_MMAP
|
|
HAVE_MSGHDR_MSG_CONTROL
|
|
NDEBUG # NDEBUG used to turn off assert (assert wants to call
|
|
# eprintf which doesn't seem to be defined in any shared lib
|
|
HAVE_CONNECT_ECONNRESET_BUG
|
|
HAVE_TIMEGM
|
|
USE_SIGWAIT
|
|
HAVE_IP_MREQN)
|
|
|
|
target_link_libraries(common INTERFACE resolv)
|
|
target_link_libraries(common_utils INTERFACE resolv)
|
|
|
|
if(NOT ${USE_FAST_LOCK})
|
|
target_compile_definitions(common INTERFACE USE_PTHREAD_MUTEX USE_SYSV_SEM)
|
|
endif()
|
|
|
|
if (CMAKE_HOST_SYSTEM_VERSION VERSION_LESS 24)
|
|
message(STATUS "Running on Big Sur")
|
|
set(CMAKE_MODULE_LINKER_FLAGS
|
|
"${CMAKE_MODULE_LINKER_FLAGS} -bundle -flat_namespace -undefined suppress")
|
|
set(CMAKE_SHARED_LINKER_FLAGS
|
|
"${CMAKE_SHARED_LINKER_FLAGS} -dynamiclib -flat_namespace -undefined suppress"
|
|
)
|
|
else ()
|
|
set(CMAKE_MODULE_LINKER_FLAGS
|
|
"${CMAKE_MODULE_LINKER_FLAGS} -bundle -flat_namespace -undefined dynamic_lookup")
|
|
set(CMAKE_SHARED_LINKER_FLAGS
|
|
"${CMAKE_SHARED_LINKER_FLAGS} -dynamiclib -flat_namespace -undefined dynamic_lookup"
|
|
)
|
|
endif ()
|
|
|
|
if(NOT NO_SELECT)
|
|
target_compile_definitions(common INTERFACE HAVE_SELECT)
|
|
endif()
|
|
|
|
if(NOT NO_KQUEUE)
|
|
target_compile_definitions(common INTERFACE HAVE_KQUEUE)
|
|
endif()
|
|
|
|
# TODO: Chek if we need this in favor of GnuInstallDir alternative
|
|
if(NOT DEFINED RUN_PREFIX)
|
|
set(RUN_PREFIX "/var")
|
|
endif()
|