mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-28 17:46:40 -04:00
The build would fail if the OpenSSL libraries were not in default include path because we include <openssl/opensslv.h> header in lib/bind9/check.c. Add $(OPENSSL_CFLAGS) to lib/bind9/Makefile.am.
36 lines
674 B
Makefile
36 lines
674 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
lib_LTLIBRARIES = libbind9.la
|
|
|
|
libbind9_ladir = $(includedir)/bind9
|
|
libbind9_la_HEADERS = \
|
|
include/bind9/check.h \
|
|
include/bind9/getaddresses.h
|
|
|
|
libbind9_la_SOURCES = \
|
|
$(libbind9_la_HEADERS) \
|
|
check.c \
|
|
getaddresses.c
|
|
|
|
libbind9_la_CPPFLAGS = \
|
|
$(AM_CPPFLAGS) \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBDNS_CFLAGS) \
|
|
$(LIBISCCFG_CFLAGS) \
|
|
$(LIBNS_CFLAGS) \
|
|
$(LIBBIND9_CFLAGS) \
|
|
$(OPENSSL_CFLAGS)
|
|
|
|
libbind9_la_LIBADD = \
|
|
$(LIBNS_LIBS) \
|
|
$(LIBISCCFG_LIBS) \
|
|
$(LIBDNS_LIBS) \
|
|
$(LIBISC_LIBS)
|
|
|
|
libbind9_la_LDFLAGS = \
|
|
$(AM_LDFLAGS) \
|
|
-release "$(PACKAGE_VERSION)"
|
|
|
|
if HAVE_DNSTAP
|
|
libbind9_la_CPPFLAGS += $(DNSTAP_CFLAGS)
|
|
endif
|