fix static mingw builds, platform LDADD needs to come at the end
This commit is contained in:
parent
45d35f0dfb
commit
c691459502
@ -11,10 +11,10 @@ endif
|
||||
EXTRA_DIST = nc.1
|
||||
EXTRA_DIST += CMakeLists.txt
|
||||
|
||||
nc_LDADD = $(PLATFORM_LDADD) $(PROG_LDADD)
|
||||
nc_LDADD += $(abs_top_builddir)/crypto/libcrypto.la
|
||||
nc_LDADD = $(abs_top_builddir)/crypto/libcrypto.la
|
||||
nc_LDADD += $(abs_top_builddir)/ssl/libssl.la
|
||||
nc_LDADD += $(abs_top_builddir)/tls/libtls.la
|
||||
nc_LDADD += $(PLATFORM_LDADD) $(PROG_LDADD)
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/apps/nc/compat
|
||||
|
||||
|
@ -4,9 +4,9 @@ bin_PROGRAMS = openssl
|
||||
|
||||
dist_man_MANS = openssl.1
|
||||
|
||||
openssl_LDADD = $(PLATFORM_LDADD) $(PROG_LDADD)
|
||||
openssl_LDADD += $(abs_top_builddir)/ssl/libssl.la
|
||||
openssl_LDADD = $(abs_top_builddir)/ssl/libssl.la
|
||||
openssl_LDADD += $(abs_top_builddir)/crypto/libcrypto.la
|
||||
openssl_LDADD += $(PLATFORM_LDADD) $(PROG_LDADD)
|
||||
|
||||
openssl_SOURCES = apps.c
|
||||
openssl_SOURCES += asn1pars.c
|
||||
|
@ -7,10 +7,10 @@ AM_CPPFLAGS += -I $(top_srcdir)/apps/openssl
|
||||
AM_CPPFLAGS += -I $(top_srcdir)/apps/openssl/compat
|
||||
AM_CPPFLAGS += -D_PATH_SSL_CA_FILE=\"$(top_srcdir)/apps/openssl/cert.pem\"
|
||||
|
||||
LDADD = $(PLATFORM_LDADD) $(PROG_LDADD)
|
||||
LDADD += $(abs_top_builddir)/tls/.libs/libtls.a
|
||||
LDADD = $(abs_top_builddir)/tls/.libs/libtls.a
|
||||
LDADD += $(abs_top_builddir)/ssl/.libs/libssl.a
|
||||
LDADD += $(abs_top_builddir)/crypto/.libs/libcrypto.a
|
||||
LDADD += $(PLATFORM_LDADD) $(PROG_LDADD)
|
||||
if HOST_ASM_MACOSX_X86_64
|
||||
LDADD += $(abs_top_builddir)/crypto/.libs/libcrypto_la-cpuid-macosx-x86_64.o
|
||||
endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user