diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2006-10-06 07:22:38 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2006-10-06 07:22:38 +0000 |
commit | c09d8959b79bdd2ea71ea1e1bdf7c6123d77a38e (patch) | |
tree | b5dcad083226e5370e3b7d464a07ee436c45150b /configure.in | |
parent | f8ef0d1a0c6f0e5e5d6273f1b23ba4fcb8341677 (diff) | |
download | strongswan-c09d8959b79bdd2ea71ea1e1bdf7c6123d77a38e.tar.bz2 strongswan-c09d8959b79bdd2ea71ea1e1bdf7c6123d77a38e.tar.xz |
found libraries are not appended to LIBS anymore
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in index 8dbc2d289..31d7d8330 100644 --- a/configure.in +++ b/configure.in @@ -96,13 +96,13 @@ 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 - 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 - 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 |