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)
38 lines
601 B
Makefile
38 lines
601 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
AM_CPPFLAGS += \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBDNS_CFLAGS) \
|
|
$(LIBISCCFG_CFLAGS) \
|
|
$(LIBIDN2_CFLAGS) \
|
|
$(LIBUV_CFLAGS) \
|
|
$(OPENSSL_CFLAGS)
|
|
|
|
LDADD += \
|
|
libdighost.la \
|
|
$(LIBISC_LIBS) \
|
|
$(LIBDNS_LIBS) \
|
|
$(LIBISCCFG_LIBS) \
|
|
$(LIBIDN2_LIBS)
|
|
|
|
noinst_LTLIBRARIES = libdighost.la
|
|
|
|
libdighost_la_SOURCES = \
|
|
dighost.h \
|
|
dighost.c
|
|
|
|
bin_PROGRAMS = dig host nslookup
|
|
|
|
nslookup_CPPFLAGS = \
|
|
$(AM_CPPFLAGS)
|
|
|
|
nslookup_LDADD = \
|
|
$(LDADD)
|
|
|
|
if HAVE_READLINE
|
|
nslookup_CPPFLAGS += \
|
|
$(READLINE_CFLAGS)
|
|
nslookup_LDADD += \
|
|
$(READLINE_LIBS)
|
|
endif HAVE_READLINE
|