aboutsummaryrefslogtreecommitdiff
path: root/tls
diff options
context:
space:
mode:
authorkinichiro <kinichiro.inoguchi@gmail.com>2016-04-04 11:28:46 +0900
committerkinichiro <kinichiro.inoguchi@gmail.com>2016-04-04 14:27:43 +0900
commit3207606f117fe4844c5eb18019a4f0939349ece7 (patch)
tree9d245cfc79e840affb460a19f0d4aff943dd28e8 /tls
parent8131b377bffdacb8789c78ef31160b3bf4ee054b (diff)
downloadportable-3207606f117fe4844c5eb18019a4f0939349ece7.tar.gz
portable-3207606f117fe4844c5eb18019a4f0939349ece7.tar.bz2
portable-3207606f117fe4844c5eb18019a4f0939349ece7.zip
fix cmake on HP-UX
- CMakeLists.txt * add OS specific compiler flags and library * add checking size of time_t * add checking memmem() - tests/CMakeLists.txt * add if(HAVE_MEMMEM) for explicit_bzero * add checking SMALL_TIME_T for rfc5280time - crypto/CMakeLists.txt * add getentropy_hpux.c - tls/CMakeLists.txt * fix checking strsep
Diffstat (limited to 'tls')
-rw-r--r--tls/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tls/CMakeLists.txt b/tls/CMakeLists.txt
index ad6fe49..929d30c 100644
--- a/tls/CMakeLists.txt
+++ b/tls/CMakeLists.txt
@@ -17,7 +17,7 @@ set(
17) 17)
18 18
19 19
20if(NOT HAVE_STRCASECMP) 20if(NOT HAVE_STRSEP)
21 set(TLS_SRC ${TLS_SRC} strsep.c) 21 set(TLS_SRC ${TLS_SRC} strsep.c)
22endif() 22endif()
23 23