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
This commit is contained in:
kinichiro
2016-04-04 11:28:46 +09:00
parent 8131b377bf
commit 3207606f11
4 changed files with 40 additions and 6 deletions

View File

@@ -17,7 +17,7 @@ set(
)
if(NOT HAVE_STRCASECMP)
if(NOT HAVE_STRSEP)
set(TLS_SRC ${TLS_SRC} strsep.c)
endif()