summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2007-05-26 19:02:01 +0000
committerSimon Josefsson <simon@josefsson.org>2007-05-26 19:02:01 +0000
commit6c3d97ad09ca58f6fb1d4c5326bf6b0de97fc732 (patch)
tree5b7d2dc4d370585ec768b72129d169030438759e
parent772a9453cd77ecdf7d79f5203beb8d56990885c0 (diff)
downloadgnutls-6c3d97ad09ca58f6fb1d4c5326bf6b0de97fc732.tar.gz
Workaround gcc/libtool bug causing tlsia to be linked to
$prefix/lib/libgnutls-extra.so rather than ../libextra/.libs/libgnutls-extra.so.
-rw-r--r--tests/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index e778907318..7e5ffd6f83 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -1,5 +1,5 @@
## Process this file with automake to produce Makefile.in
-# Copyright (C) 2004, 2005, 2006 Free Software Foundation
+# Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation
#
# Author: Simon Josefsson
#
@@ -34,7 +34,7 @@ ctests = simple openssl gc set_pkcs12_cred certder
openssl_LDADD = $(LDADD) ../libextra/libgnutls-openssl.la
if HAVE_FORK
ctests += anonself pskself dhepskself tlsia resume
-tlsia_LDADD = $(LDADD) ../libextra/libgnutls-extra.la @LTLIBREADLINE@
+tlsia_LDADD = ../libextra/libgnutls-extra.la $(LDADD) @LTLIBREADLINE@
endif
gc_LDADD = $(LDADD) $(LIBGCRYPT_LIBS)