@@ -278,20 +278,58 @@ typedef pthread_mutex_t dw_mutex_t;
278
278
/* Platform differences for string functions. */
279
279
280
280
281
+ // Windows is missing a few which are available on Unix/Linux platforms.
282
+ // We provide our own copies when building on Windows.
281
283
282
284
#if __WIN32__
283
285
char * strsep (char * * stringp , const char * delim );
284
286
char * strtok_r (char * str , const char * delim , char * * saveptr );
285
287
#endif
286
288
287
289
// Don't recall why I added this for everyone rather than only for Windows.
290
+ // Potential problem if some C library declares it a little differently.
288
291
char * strcasestr (const char * S , const char * FIND );
289
292
290
293
291
- // cmake determines whether strlcpy and strlcat are available
292
- // or if we need to supply our own.
294
+ // cmake tries to determine whether strlcpy and strlcat are provided by the C runtime library.
295
+ //
296
+ // ../CMakeLists.txt:check_symbol_exists(strlcpy string.h HAVE_STRLCPY)
297
+ //
298
+ // It sets HAVE_STRLCPY and HAVE_STRLCAT if the corresponding functions are declared.
299
+ // Unfortunately this does not work right for glibc 2.38 which declares the functions
300
+ // like this:
301
+ //
302
+ // extern __typeof (strlcpy) __strlcpy;
303
+ // libc_hidden_proto (__strlcpy)
304
+ // extern __typeof (strlcat) __strlcat;
305
+ // libc_hidden_proto (__strlcat)
306
+ //
307
+ // Rather than the normal way found in earlier versions:
308
+ //
309
+ // extern char *strcpy (char *__restrict __dest, const char *__restrict __src)
310
+ //
311
+ // Perhaps a later version of cmake will recognize this form but the version I'm
312
+ // using does not.
313
+ // So, our work around is to assume these functions are available for glibc >= 2.38.
314
+ //
315
+ // In theory, cmake should be able to find the version of the C runtime library,
316
+ // but I could not get it to work. So we have the test here. We will still build
317
+ // own library with the strl... functions but this does not cause a problem
318
+ // because they have special debug names which will not cause a conflict.
319
+
320
+ #ifdef __GLIBC__
321
+ #if (__GLIBC__ > 2 ) || ((__GLIBC__ == 2 ) && (__GLIBC_MINOR__ >= 38 ))
322
+ // These functions first added in 2.38.
323
+ //#warning "DEBUG - glibc >= 2.38"
324
+ #define HAVE_STRLCPY 1
325
+ #define HAVE_STRLCAT 1
326
+ #else
327
+ //#warning "DEBUG - glibc < 2.38"
328
+ #endif
329
+ #endif
293
330
294
331
#define DEBUG_STRL 1 // Extra Debug version when using our own strlcpy, strlcat.
332
+ // Should be ignored if not supplying our own.
295
333
296
334
#ifndef HAVE_STRLCPY // Need to supply our own.
297
335
#if DEBUG_STRL
0 commit comments