
Simplify autoconf checks by using AC_CHECK_FUNCS/HEADERS. Clarify some ambiguous dependencies around strnlen/strndup. Unconditionally enable pidwraptest for all arc4random implementations. Remove HAVE_VASPRINTF conditional, since asprintf requires vasprintf. ok @doug
16 lines
323 B
Smarty
16 lines
323 B
Smarty
include $(top_srcdir)/Makefile.am.common
|
|
|
|
bin_PROGRAMS = openssl
|
|
|
|
openssl_CFLAGS = $(USER_CFLAGS)
|
|
openssl_LDADD = $(PLATFORM_LDADD)
|
|
openssl_LDADD += $(top_builddir)/ssl/libssl.la
|
|
openssl_LDADD += $(top_builddir)/crypto/libcrypto.la
|
|
|
|
openssl_SOURCES =
|
|
noinst_HEADERS =
|
|
|
|
if !HAVE_STRTONUM
|
|
openssl_SOURCES += strtonum.c
|
|
endif
|