Skip to content

Commit 1d67b44

Browse files
committed
Issue 150 - Check whether platform provides strlcpy & strlcat
or if we need to provide our own.
1 parent 07fdc75 commit 1d67b44

File tree

3 files changed

+54
-30
lines changed

3 files changed

+54
-30
lines changed

external/misc/CMakeLists.txt

+25-6
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,31 @@ include_directories(
66
)
77

88
if(LINUX)
9-
list(APPEND misc_SOURCES
10-
# Provide our own copy of strlcpy and strlcat
11-
# because they are not included with Linux.
12-
${CUSTOM_MISC_DIR}/strlcpy.c
13-
${CUSTOM_MISC_DIR}/strlcat.c
14-
)
9+
# Previously -
10+
# list(APPEND misc_SOURCES
11+
# # Provide our own copy of strlcpy and strlcat
12+
# # because they are not included with Linux.
13+
# ${CUSTOM_MISC_DIR}/strlcpy.c
14+
# ${CUSTOM_MISC_DIR}/strlcat.c
15+
# )
16+
# It seems that Alpine Linux and Void Linux have strlcpy and
17+
# strlcat so we need to handle the situation more delicately.
18+
# When doing it this way, there is probably no reason to
19+
# distinguish between Linux and BSD-like systems here.
20+
# If we kept going, the same thing could be done for each
21+
# of the functions and no OS check would be needed.
22+
23+
if (NOT HAVE_STRLCPY)
24+
list(APPEND misc_SOURCES
25+
${CUSTOM_MISC_DIR}/strlcpy.c
26+
)
27+
endif()
28+
29+
if (NOT HAVE_STRLCAT)
30+
list(APPEND misc_SOURCES
31+
${CUSTOM_MISC_DIR}/strlcat.c
32+
)
33+
endif()
1534

1635
add_library(misc STATIC
1736
${misc_SOURCES}

src/CMakeLists.txt

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
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()
13+
114
# global includes
215
# not ideal but not so slow
316
# otherwise use target_include_directories

src/direwolf.h

+16-24
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,7 @@
176176
#define DW_METERS_TO_FEET(x) ((x) == G_UNKNOWN ? G_UNKNOWN : (x) * 3.2808399)
177177
#define DW_FEET_TO_METERS(x) ((x) == G_UNKNOWN ? G_UNKNOWN : (x) * 0.3048)
178178
#define DW_KM_TO_MILES(x) ((x) == G_UNKNOWN ? G_UNKNOWN : (x) * 0.621371192)
179+
#define DW_MILES_TO_KM(x) ((x) == G_UNKNOWN ? G_UNKNOWN : (x) * 1.609344)
179180

180181
#define DW_KNOTS_TO_MPH(x) ((x) == G_UNKNOWN ? G_UNKNOWN : (x) * 1.15077945)
181182
#define DW_KNOTS_TO_METERS_PER_SEC(x) ((x) == G_UNKNOWN ? G_UNKNOWN : (x) * 0.51444444444)
@@ -278,43 +279,34 @@ char *strsep(char **stringp, const char *delim);
278279
char *strtok_r(char *str, const char *delim, char **saveptr);
279280
#endif
280281

281-
// Don't recall why for everyone.
282+
// Don't recall why I added this for everyone rather than only for Windows.
282283
char *strcasestr(const char *S, const char *FIND);
283284

284285

285-
#if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)
286+
// cmake determines whether strlcpy and strlcat are available
287+
// or if we need to supply our own.
286288

287-
// strlcpy and strlcat should be in string.h and the C library.
288-
289-
#else // Use our own copy
290-
291-
292-
// These prevent /usr/include/gps.h from providing its own definition.
293-
#define HAVE_STRLCAT 1
294-
#define HAVE_STRLCPY 1
295-
296-
297-
#define DEBUG_STRL 1
289+
#define DEBUG_STRL 1 // Extra Debug version when using our own strlcpy, strlcat.
298290

291+
#ifndef HAVE_STRLCPY // Need to supply our own.
299292
#if DEBUG_STRL
300-
301293
#define strlcpy(dst,src,siz) strlcpy_debug(dst,src,siz,__FILE__,__func__,__LINE__)
302-
#define strlcat(dst,src,siz) strlcat_debug(dst,src,siz,__FILE__,__func__,__LINE__)
303-
304294
size_t strlcpy_debug(char *__restrict__ dst, const char *__restrict__ src, size_t siz, const char *file, const char *func, int line);
305-
size_t strlcat_debug(char *__restrict__ dst, const char *__restrict__ src, size_t siz, const char *file, const char *func, int line);
306-
307295
#else
308-
309296
#define strlcpy(dst,src,siz) strlcpy_debug(dst,src,siz)
310-
#define strlcat(dst,src,siz) strlcat_debug(dst,src,siz)
311-
312297
size_t strlcpy_debug(char *__restrict__ dst, const char *__restrict__ src, size_t siz);
313-
size_t strlcat_debug(char *__restrict__ dst, const char *__restrict__ src, size_t siz);
314-
315298
#endif /* DEBUG_STRL */
299+
#endif
316300

317-
#endif /* BSD or Apple */
301+
#ifndef HAVE_STRLCAT // Need to supply our own.
302+
#if DEBUG_STRL
303+
#define strlcat(dst,src,siz) strlcat_debug(dst,src,siz,__FILE__,__func__,__LINE__)
304+
size_t strlcat_debug(char *__restrict__ dst, const char *__restrict__ src, size_t siz, const char *file, const char *func, int line);
305+
#else
306+
#define strlcat(dst,src,siz) strlcat_debug(dst,src,siz)
307+
size_t strlcat_debug(char *__restrict__ dst, const char *__restrict__ src, size_t siz);
308+
#endif /* DEBUG_STRL */
309+
#endif
318310

319311

320312
#endif /* ifndef DIREWOLF_H */

0 commit comments

Comments
 (0)