mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 07:12:11 -04:00
fix: nil: Add OpenSSL includes as needed
The isc/crypto.h now directly includes the OpenSSL headers (evp.h) and any application that includes that header also needs to have OPENSSL_CFLAGS in the Makefile.am. Adjust the required automake files as needed. Merge branch 'ondrej/add-missing-OPENSSL_CFLAGS' into 'main' See merge request isc-projects/bind9!9713
This commit is contained in:
commit
14e6242ad4
3 changed files with 6 additions and 3 deletions
|
|
@ -5,7 +5,8 @@ AM_CPPFLAGS += \
|
|||
$(LIBISC_CFLAGS) \
|
||||
$(LIBDNS_CFLAGS) \
|
||||
$(LIBNS_CFLAGS) \
|
||||
$(LIBISCCFG_CFLAGS)
|
||||
$(LIBISCCFG_CFLAGS) \
|
||||
$(OPENSSL_CFLAGS)
|
||||
|
||||
AM_CPPFLAGS += \
|
||||
-DSYSCONFDIR=\"${sysconfdir}\"
|
||||
|
|
|
|||
|
|
@ -5,7 +5,8 @@ AM_CPPFLAGS += \
|
|||
$(LIBDNS_CFLAGS) \
|
||||
$(LIBISCCFG_CFLAGS) \
|
||||
$(LIBIDN2_CFLAGS) \
|
||||
$(LIBUV_CFLAGS)
|
||||
$(LIBUV_CFLAGS) \
|
||||
$(OPENSSL_CFLAGS)
|
||||
|
||||
LDADD += \
|
||||
libdighost.la \
|
||||
|
|
|
|||
|
|
@ -27,7 +27,8 @@ libisccc_la_CPPFLAGS = \
|
|||
$(AM_CPPFLAGS) \
|
||||
$(LIBISC_CFLAGS) \
|
||||
$(LIBDNS_CFLAGS) \
|
||||
$(LIBISCCC_CFLAGS)
|
||||
$(LIBISCCC_CFLAGS) \
|
||||
$(OPENSSL_CFLAGS)
|
||||
|
||||
libisccc_la_LIBADD = \
|
||||
$(LIBISC_LIBS)
|
||||
|
|
|
|||
Loading…
Reference in a new issue