2012-04-26 15:17:50 +02:00
|
|
|
Index: bin/autoreconf.in
|
|
|
|
===================================================================
|
|
|
|
--- bin/autoreconf.in.orig 2012-04-25 00:00:28.000000000 +0200
|
|
|
|
+++ bin/autoreconf.in 2012-04-25 16:50:22.272144014 +0200
|
|
|
|
@@ -470,6 +470,8 @@ sub autoreconf_current_directory ()
|
2010-02-18 12:08:50 +01:00
|
|
|
'AC_CONFIG_AUX_DIR',
|
2007-08-24 23:14:56 +02:00
|
|
|
'AC_CONFIG_HEADERS',
|
2010-02-18 12:08:50 +01:00
|
|
|
'AC_CONFIG_SUBDIRS',
|
|
|
|
+ 'AC_LIBLTDL_CONVENIENCE',
|
|
|
|
+ 'AC_LIBLTDL_INSTALLABLE',
|
2007-08-24 23:14:56 +02:00
|
|
|
'AC_INIT',
|
|
|
|
'AC_PROG_LIBTOOL',
|
|
|
|
'LT_INIT',
|
2012-04-26 15:17:50 +02:00
|
|
|
@@ -488,6 +490,8 @@ sub autoreconf_current_directory ()
|
2010-02-18 12:08:50 +01:00
|
|
|
$uses_libtool = 1 if $macro eq "AC_PROG_LIBTOOL"
|
|
|
|
|| $macro eq "LT_INIT";
|
|
|
|
$uses_libltdl = 1 if $macro eq "LT_CONFIG_LTDL_DIR";
|
|
|
|
+ $uses_libltdl = 1 if $macro eq "AC_LIBLTDL_CONVENIENCE";
|
|
|
|
+ $uses_libltdl = 1 if $macro eq "AC_LIBLTDL_INSTALLABLE";
|
|
|
|
$uses_autoheader = 1 if $macro eq "AC_CONFIG_HEADERS";
|
|
|
|
$uses_automake = 1 if $macro eq "AM_INIT_AUTOMAKE";
|
|
|
|
push @subdir, split (' ', $args[0])
|