diff options
author | Brent Cook <bcook@openbsd.org> | 2017-01-09 02:22:26 -0600 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2017-01-09 02:22:26 -0600 |
commit | c691459502efc76b7fa4478b461ba7ab6c0d48cb (patch) | |
tree | 4bb07be318fb5f0bbc9240557d59f968c9db3c0a /apps/nc | |
parent | 45d35f0dfba2219539ab2b0e8f7c460bd79bfa29 (diff) | |
download | portable-c691459502efc76b7fa4478b461ba7ab6c0d48cb.tar.gz portable-c691459502efc76b7fa4478b461ba7ab6c0d48cb.tar.bz2 portable-c691459502efc76b7fa4478b461ba7ab6c0d48cb.zip |
fix static mingw builds, platform LDADD needs to come at the end
Diffstat (limited to 'apps/nc')
-rw-r--r-- | apps/nc/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/nc/Makefile.am b/apps/nc/Makefile.am index 2a24d87..791eade 100644 --- a/apps/nc/Makefile.am +++ b/apps/nc/Makefile.am | |||
@@ -11,10 +11,10 @@ endif | |||
11 | EXTRA_DIST = nc.1 | 11 | EXTRA_DIST = nc.1 |
12 | EXTRA_DIST += CMakeLists.txt | 12 | EXTRA_DIST += CMakeLists.txt |
13 | 13 | ||
14 | nc_LDADD = $(PLATFORM_LDADD) $(PROG_LDADD) | 14 | nc_LDADD = $(abs_top_builddir)/crypto/libcrypto.la |
15 | nc_LDADD += $(abs_top_builddir)/crypto/libcrypto.la | ||
16 | nc_LDADD += $(abs_top_builddir)/ssl/libssl.la | 15 | nc_LDADD += $(abs_top_builddir)/ssl/libssl.la |
17 | nc_LDADD += $(abs_top_builddir)/tls/libtls.la | 16 | nc_LDADD += $(abs_top_builddir)/tls/libtls.la |
17 | nc_LDADD += $(PLATFORM_LDADD) $(PROG_LDADD) | ||
18 | 18 | ||
19 | AM_CPPFLAGS += -I$(top_srcdir)/apps/nc/compat | 19 | AM_CPPFLAGS += -I$(top_srcdir)/apps/nc/compat |
20 | 20 | ||