diff options
| author | Garrett D'Amore <garrett@damore.org> | 2024-12-17 19:17:44 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2024-12-17 19:17:44 -0800 |
| commit | d83f5aea789f896c90208567a9e56599a439e90a (patch) | |
| tree | 012f75df4dc6b71078710cfbcb9230d5b3cb3e6e /src/core/CMakeLists.txt | |
| parent | 7c51e7b1807fb2daa214e5bc99799a1327a666c8 (diff) | |
| download | nng-d83f5aea789f896c90208567a9e56599a439e90a.tar.gz nng-d83f5aea789f896c90208567a9e56599a439e90a.tar.bz2 nng-d83f5aea789f896c90208567a9e56599a439e90a.zip | |
syslog: test for existence
Some POSIX emulations may lack a reasonable syslog function
(although syslog is required per the Open Group). For now we
just check for it, and don't use it if it isn't present.
Diffstat (limited to 'src/core/CMakeLists.txt')
| -rw-r--r-- | src/core/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 81f8d1ee..ba8b1ca8 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -15,6 +15,7 @@ nng_check_sym(strnlen string.h NNG_HAVE_STRNLEN) nng_check_sym(strcasecmp string.h NNG_HAVE_STRCASECMP) nng_check_sym(strncasecmp string.h NNG_HAVE_STRNCASECMP) nng_check_sym(localtime_r time.h NNG_HAVE_LOCALTIME_R) +nng_check_sym(syslog syslog.h NNG_HAVE_SYSLOG) nng_sources( defs.h |
