diff options
author | Brent Cook <busterb@gmail.com> | 2024-03-07 21:02:11 -0600 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2024-03-07 21:02:11 -0600 |
commit | 530084a5f641eb290fdb9bd663d810bcaecb0f48 (patch) | |
tree | 12fd42f84b6ad44488eefd682e435d8bf3f2af76 /crypto | |
parent | c7d8355a01e3a3ef56bd650176d3ef6370faf74e (diff) | |
download | portable-530084a5f641eb290fdb9bd663d810bcaecb0f48.tar.gz portable-530084a5f641eb290fdb9bd663d810bcaecb0f48.tar.bz2 portable-530084a5f641eb290fdb9bd663d810bcaecb0f48.zip |
move syslog_r and getprogname into compat src list
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt index c431df1..f371d84 100644 --- a/crypto/CMakeLists.txt +++ b/crypto/CMakeLists.txt | |||
@@ -739,11 +739,11 @@ endif() | |||
739 | 739 | ||
740 | if(NOT HAVE_GETPROGNAME) | 740 | if(NOT HAVE_GETPROGNAME) |
741 | if(WIN32) | 741 | if(WIN32) |
742 | set(CRYPTO_SRC ${CRYPTO_SRC} compat/getprogname_windows.c) | 742 | set(COMPAT_SRC ${COMPAT_SRC} compat/getprogname_windows.c) |
743 | elseif(CMAKE_SYSTEM_NAME MATCHES "Linux") | 743 | elseif(CMAKE_SYSTEM_NAME MATCHES "Linux") |
744 | set(CRYPTO_SRC ${CRYPTO_SRC} compat/getprogname_linux.c) | 744 | set(COMPAT_SRC ${COMPAT_SRC} compat/getprogname_linux.c) |
745 | else() | 745 | else() |
746 | set(CRYPTO_SRC ${CRYPTO_SRC} compat/getprogname_unimpl.c) | 746 | set(COMPAT_SRC ${COMPAT_SRC} compat/getprogname_unimpl.c) |
747 | endif() | 747 | endif() |
748 | endif() | 748 | endif() |
749 | 749 | ||
@@ -783,7 +783,7 @@ if(NOT HAVE_STRTONUM) | |||
783 | endif() | 783 | endif() |
784 | 784 | ||
785 | if(NOT HAVE_SYSLOG_R) | 785 | if(NOT HAVE_SYSLOG_R) |
786 | set(CRYPTO_SRC ${CRYPTO_SRC} compat/syslog_r.c) | 786 | set(COMPAT_SRC ${COMPAT_SRC} compat/syslog_r.c) |
787 | endif() | 787 | endif() |
788 | 788 | ||
789 | if(NOT HAVE_TIMEGM) | 789 | if(NOT HAVE_TIMEGM) |