aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--crypto/CMakeLists.txt8
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
740if(NOT HAVE_GETPROGNAME) 740if(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()
748endif() 748endif()
749 749
@@ -783,7 +783,7 @@ if(NOT HAVE_STRTONUM)
783endif() 783endif()
784 784
785if(NOT HAVE_SYSLOG_R) 785if(NOT HAVE_SYSLOG_R)
786 set(CRYPTO_SRC ${CRYPTO_SRC} compat/syslog_r.c) 786 set(COMPAT_SRC ${COMPAT_SRC} compat/syslog_r.c)
787endif() 787endif()
788 788
789if(NOT HAVE_TIMEGM) 789if(NOT HAVE_TIMEGM)