strongswan.org
Wiki/Project Management
Downloads
Gitweb
projects
/
strongswan.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
f8ef0d1
)
found libraries are not appended to LIBS anymore
author
Andreas Steffen
<andreas.steffen@strongswan.org>
Fri, 6 Oct 2006 07:22:38 +0000
(07:22 -0000)
committer
Andreas Steffen
<andreas.steffen@strongswan.org>
Fri, 6 Oct 2006 07:22:38 +0000
(07:22 -0000)
configure.in
patch
|
blob
|
history
diff --git
a/configure.in
b/configure.in
index
8dbc2d2
..
31d7d83
100644
(file)
--- a/
configure.in
+++ b/
configure.in
@@
-96,13
+96,13
@@
dnl ==========================
dnl check required libraries
dnl ==========================
dnl check required libraries
dnl ==========================
-AC_HAVE_LIBRARY([gmp],
,[AC_MSG_ERROR([GNU Multi Precision library gmp not found])])
+AC_HAVE_LIBRARY([gmp],
[LIBS="$LIBS"],[AC_MSG_ERROR([GNU Multi Precision library gmp not found])])
if test "$ldap" = "true"; then
if test "$ldap" = "true"; then
- AC_HAVE_LIBRARY([ldap],,[AC_MSG_ERROR([LDAP enabled, but library ldap not found])])
- AC_HAVE_LIBRARY([lber],,[AC_MSG_ERROR([LDAP enabled, but library lber not found])])
+ AC_HAVE_LIBRARY([ldap],
[LIBS="$LIBS"]
,[AC_MSG_ERROR([LDAP enabled, but library ldap not found])])
+ AC_HAVE_LIBRARY([lber],
[LIBS="$LIBS"]
,[AC_MSG_ERROR([LDAP enabled, but library lber not found])])
fi
if test "$http" = "true"; then
fi
if test "$http" = "true"; then
- AC_HAVE_LIBRARY([curl],,[AC_MSG_ERROR([HTTP enabled, but library curl not found])])
+ AC_HAVE_LIBRARY([curl],
[LIBS="$LIBS"]
,[AC_MSG_ERROR([HTTP enabled, but library curl not found])])
fi
fi