From: Alan T. DeKok Date: Tue, 16 Nov 2010 17:25:03 +0000 (+0100) Subject: Fixes for autoconf2.67 X-Git-Tag: release_2_1_11~208 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fbb42e4a34c041ba97c2e428e6d04a829c1ae463;p=thirdparty%2Ffreeradius-server.git Fixes for autoconf2.67 The symptom of not including this is strange; with autoconf 2.67, some of the libtool variables in config.status are incorrectly quoted and configure crashes. --- diff --git a/configure.in b/configure.in index f9cf3a89427..3514d805382 100644 --- a/configure.in +++ b/configure.in @@ -94,7 +94,8 @@ AC_SUBST(LTDL_SUBDIRS) dnl use system-wide libtool, if it exists AC_ARG_WITH(system-libtool, [ --with-system-libtool Use the libtool installed in your system (default=use our own)], -[ AC_PATH_PROG(LIBTOOL, libtool,,$PATH:/usr/local/bin) ], +[ AC_PATH_PROG(LIBTOOL, libtool,,$PATH:/usr/local/bin) AC_LIBTOOL_DLOPEN + AC_PROG_LIBTOOL], [ LIBTOOL="`pwd`/libtool" AC_SUBST(LIBTOOL)