summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorFrancis Dupont <fdupont@isc.org>2016-10-06 16:15:35 +0200
committerFrancis Dupont <fdupont@isc.org>2016-10-06 16:15:35 +0200
commitd113bc2ca69a6f6a33139c3708a4ea6818605b69 (patch)
treeb9461aab0a1c8ceef996db075ec85b87fee42fc8 /configure
parent13e5cc6cbe83ac7cd9285a54e870e4f8ab16a604 (diff)
downloadisc-dhcp-d113bc2ca69a6f6a33139c3708a4ea6818605b69.tar.gz
Half fixed recovering (no space handling) (unfinished)
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure23
1 files changed, 15 insertions, 8 deletions
diff --git a/configure b/configure
index 8442d5e2..c3a7a24f 100755
--- a/configure
+++ b/configure
@@ -629,6 +629,7 @@ LDAP_CFLAGS
LDAP_LIBS
BINDLT
A
+DHLIBS
INSTALL_BIND_FALSE
INSTALL_BIND_TRUE
HAVE_BINDDIR_FALSE
@@ -7032,23 +7033,29 @@ if test "${enable_libtool+set}" = set; then :
enableval=$enable_libtool; want_libtool="$enableval"
fi
-if test "$want_libtool" = "yes"; then
+
+
if test "$want_libtool" = "yes"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: legacy configure is used but libtool is enabled. Trying to recover..." >&5
$as_echo "$as_me: WARNING: legacy configure is used but libtool is enabled. Trying to recover..." >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: legacy configure is used but libtool is enabled. Trying to recover..." >&5
-$as_echo "$as_me: WARNING: legacy configure is used but libtool is enabled. Trying to recover..." >&2;}
- cd $srcdir; exec ./re-conf $ac_configure_args
- cd $srcdir; exec ./re-conf $ac_configure_args
- as_fn_error $? "Recovering failed" "$LINENO" 5
+ # dequote $ac_configure_args
+ eval "set my_configure_args $ac_configure_args"
+ shift
+ re_configure_args=
+ for a; do
+ re_configure_args="$re_configure_args $a"
+ done
+ cd $srcdir; exec ./re-conf $re_configure_args
as_fn_error $? "Recovering failed" "$LINENO" 5
fi
-fi
-A=a
+
+DHLIBS=LIBRARIES
A=a
+
+
# OpenLDAP support.
# Check whether --with-ldap was given.