Add inet_ntop and memmem for ocspcheck

This commit is contained in:
kinichiro
2017-01-26 13:58:27 +09:00
parent adb94725ae
commit 7dd0650d33
8 changed files with 300 additions and 2 deletions

View File

@@ -13,3 +13,11 @@ ocspcheck_LDADD += $(PLATFORM_LDADD) $(PROG_LDADD)
ocspcheck_SOURCES = http.c
ocspcheck_SOURCES += ocspcheck.c
noinst_HEADERS = http.h
if !HAVE_INET_NTOP
ocspcheck_SOURCES += compat/inet_ntop.c
endif
if !HAVE_MEMMEM
ocspcheck_SOURCES += compat/memmem.c
endif