mirror of
https://github.com/cuberite/libevent.git
synced 2025-09-12 13:58:58 -04:00
autotools: pass $(OPENSSL_INCS) for samples (FTBFS macOS)
if OpenSSL is in a non standard location, need to pass that information to any sample that needs it Closes: #550 (cherry picked from commit 0ec5edde503096a81831f36441a4115574ac45f0)
This commit is contained in:
parent
25150a629e
commit
c2495265b1
@ -16,16 +16,16 @@ SAMPLES = \
|
||||
if OPENSSL
|
||||
SAMPLES += sample/le-proxy
|
||||
sample_le_proxy_SOURCES = sample/le-proxy.c
|
||||
sample_le_proxy_LDADD = libevent.la libevent_openssl.la ${OPENSSL_LIBS} ${OPENSSL_LIBADD}
|
||||
sample_le_proxy_INCLUDES = $(OPENSSL_INCS)
|
||||
sample_le_proxy_LDADD = libevent.la libevent_openssl.la $(OPENSSL_LIBS) $(OPENSSL_LIBADD)
|
||||
sample_le_proxy_CPPFLAGS = $(AM_CPPFLAGS) $(OPENSSL_INCS)
|
||||
|
||||
SAMPLES += sample/https-client
|
||||
sample_https_client_SOURCES = \
|
||||
sample/https-client.c \
|
||||
sample/hostcheck.c \
|
||||
sample/openssl_hostname_validation.c
|
||||
sample_https_client_LDADD = libevent.la libevent_openssl.la ${OPENSSL_LIBS} ${OPENSSL_LIBADD}
|
||||
sample_https_client_INCLUDES = $(OPENSSL_INCS)
|
||||
sample_https_client_LDADD = libevent.la libevent_openssl.la $(OPENSSL_LIBS) $(OPENSSL_LIBADD)
|
||||
sample_https_client_CPPFLAGS = $(AM_CPPFLAGS) $(OPENSSL_INCS)
|
||||
noinst_HEADERS += \
|
||||
sample/hostcheck.h \
|
||||
sample/openssl_hostname_validation.h
|
||||
|
Loading…
x
Reference in New Issue
Block a user