Skip to content

Commit 6513efd

Browse files
committed
Fix UNITTEST for MacOSX.
1 parent 5d02e0b commit 6513efd

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

CMakeLists.txt

+14
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,20 @@ else()
251251
endif(WIN32 OR CYGWIN)
252252

253253
# requirements
254+
255+
include(CheckSymbolExists)
256+
# Some platforms provide their own strlcpy & strlcat. (BSD, MacOSX)
257+
# Others don't so we provide our own. (Most, but not all Linux)
258+
# Define the preprocessor macro so libgps does not supply its own version.
259+
check_symbol_exists(strlcpy string.h HAVE_STRLCPY)
260+
if(HAVE_STRLCPY)
261+
add_compile_options(-DHAVE_STRLCPY)
262+
endif()
263+
check_symbol_exists(strlcat string.h HAVE_STRLCAT)
264+
if(HAVE_STRLCAT)
265+
add_compile_options(-DHAVE_STRLCAT)
266+
endif()
267+
254268
set(THREADS_PREFER_PTHREAD_FLAG ON)
255269
find_package(Threads REQUIRED)
256270

src/CMakeLists.txt

-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,3 @@
1-
include(CheckSymbolExists)
2-
# Some platforms provide their own strlcpy & strlcat. (BSD, MacOSX)
3-
# Others don't so we provide our own. (Most, but not all Linux)
4-
# Define the preprocessor macro so libgps does not supply its own version.
5-
check_symbol_exists(strlcpy string.h HAVE_STRLCPY)
6-
if(HAVE_STRLCPY)
7-
add_compile_options(-DHAVE_STRLCPY)
8-
endif()
9-
check_symbol_exists(strlcat string.h HAVE_STRLCAT)
10-
if(HAVE_STRLCAT)
11-
add_compile_options(-DHAVE_STRLCAT)
12-
endif()
131

142
# global includes
153
# not ideal but not so slow

0 commit comments

Comments
 (0)