mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
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.
(cherry picked from commit 88103e72d5)
23 lines
391 B
Makefile
23 lines
391 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
AM_CPPFLAGS += \
|
|
-I$(top_builddir)/include \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBDNS_CFLAGS) \
|
|
$(LIBNS_CFLAGS) \
|
|
$(LIBISCCFG_CFLAGS) \
|
|
$(OPENSSL_CFLAGS)
|
|
|
|
AM_CPPFLAGS += \
|
|
-DSYSCONFDIR=\"${sysconfdir}\"
|
|
|
|
bin_PROGRAMS = delv
|
|
|
|
delv_SOURCES = \
|
|
delv.c
|
|
|
|
delv_LDADD = \
|
|
$(LIBISC_LIBS) \
|
|
$(LIBDNS_LIBS) \
|
|
$(LIBNS_LIBS) \
|
|
$(LIBISCCFG_LIBS)
|