mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-10 10:11:39 -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.
38 lines
727 B
Makefile
38 lines
727 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
lib_LTLIBRARIES = libisccc.la
|
|
|
|
libisccc_ladir = $(includedir)/isccc
|
|
libisccc_la_HEADERS = \
|
|
include/isccc/alist.h \
|
|
include/isccc/base64.h \
|
|
include/isccc/cc.h \
|
|
include/isccc/ccmsg.h \
|
|
include/isccc/sexpr.h \
|
|
include/isccc/symtab.h \
|
|
include/isccc/symtype.h \
|
|
include/isccc/types.h \
|
|
include/isccc/util.h
|
|
|
|
libisccc_la_SOURCES = \
|
|
$(libisccc_la_HEADERS) \
|
|
alist.c \
|
|
base64.c \
|
|
cc.c \
|
|
ccmsg.c \
|
|
sexpr.c \
|
|
symtab.c
|
|
|
|
libisccc_la_CPPFLAGS = \
|
|
$(AM_CPPFLAGS) \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBDNS_CFLAGS) \
|
|
$(LIBISCCC_CFLAGS) \
|
|
$(OPENSSL_CFLAGS)
|
|
|
|
libisccc_la_LIBADD = \
|
|
$(LIBISC_LIBS)
|
|
|
|
libisccc_la_LDFLAGS = \
|
|
$(AM_LDFLAGS) \
|
|
-release "$(PACKAGE_VERSION)"
|