6b0b9bc8e7
Copy from Base:System/autoconf based on submit request 32803 from user coolo OBS-URL: https://build.opensuse.org/request/show/32803 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/autoconf?expand=0&rev=12
21 lines
919 B
Diff
21 lines
919 B
Diff
--- bin/autoreconf.in.orig 2009-11-21 14:35:37.000000000 +0100
|
|
+++ bin/autoreconf.in 2010-02-15 15:43:03.296546495 +0100
|
|
@@ -461,6 +461,8 @@
|
|
'AC_CONFIG_AUX_DIR',
|
|
'AC_CONFIG_HEADERS',
|
|
'AC_CONFIG_SUBDIRS',
|
|
+ 'AC_LIBLTDL_CONVENIENCE',
|
|
+ 'AC_LIBLTDL_INSTALLABLE',
|
|
'AC_INIT',
|
|
'AC_PROG_LIBTOOL',
|
|
'LT_INIT',
|
|
@@ -479,6 +481,8 @@
|
|
$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])
|