diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2012-09-25 16:51:44 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2012-09-25 16:51:44 +0200 |
commit | 8ee791268815e56ad4adebe643b0aefe0b034f1e (patch) | |
tree | 17495d700cb55deb81e4b18623676a57da1a8d78 /doc/examples | |
parent | 3b70d49d37d5c9f2d25fab06891bfa5bdf34211f (diff) | |
download | gnutls-8ee791268815e56ad4adebe643b0aefe0b034f1e.tar.gz |
All external libraries that were in LDFLAGS are moved into LIBADD/LDADD.
It also fixes order within LIBADD/LDADD so that libtool objects go first.
Patch by Bartosz Brachaczek.
Diffstat (limited to 'doc/examples')
-rw-r--r-- | doc/examples/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/examples/Makefile.am b/doc/examples/Makefile.am index 29f612f986..6f42a1fbc5 100644 --- a/doc/examples/Makefile.am +++ b/doc/examples/Makefile.am @@ -37,8 +37,8 @@ LDADD = libexamples.la \ ../../gl/libgnu.la \ $(LIBSOCKET) $(INET_NTOP_LIB) $(INET_PTON_LIB) -CXX_LDADD = $(LDADD) \ - ../../lib/libgnutlsxx.la +CXX_LDADD = ../../lib/libgnutlsxx.la \ + $(LDADD) noinst_PROGRAMS = ex-client-resume ex-client-dtls noinst_PROGRAMS += ex-cert-select ex-client-x509 |