5fb09a26fe
* Noteworthy changes in release 2.69 (2012-04-24) [stable] ** Autoconf now requires perl 5.6 or better (but generated configure scripts continue to run without perl). * Noteworthy changes in release 2.68b (2012-03-01) [beta] Released by Eric Blake, based on git versions 2.68.*. ** Autoconf-generated configure scripts now unconditionally re-execute themselves with $CONFIG_SHELL, if that's set in the environment. ** The texinfo documentation no longer specifies "front-cover" or "back-cover" texts, so that it may now be included in Debian's "main" section. ** Support for the Go programming language has been added. The new macro AC_LANG_GO sets variables GOC and GOFLAGS. ** AS_LITERAL_IF again treats '=' as a literal. Regression introduced in 2.66. ** The macro AS_EXECUTABLE_P, present since 2.50, is now documented. ** Macros - AC_PROG_LN_S and AS_LN_S now fall back on 'cp -pR' (not 'cp -p') if 'ln -s' does not work. This works better for symlinks to directories. - New macro AC_HEADER_CHECK_STDBOOL. - New and updated macros for Fortran support: AC_FC_CHECK_BOUNDS to enable array bounds checking AC_F77_IMPLICIT_NONE and AC_FC_IMPLICIT_NONE to disable implicit integer AC_FC_MODULE_EXTENSION to compute the Fortran 90 module name extension AC_FC_MODULE_FLAG for the Fortran 90 module search path flag AC_FC_MODULE_OUTPUT_FLAG for the Fortran 90 module output directory flag AC_FC_PP_SRCEXT for preprocessed Fortran source files extensions OBS-URL: https://build.opensuse.org/package/show/devel:tools:building/autoconf?expand=0&rev=23
23 lines
1.1 KiB
Diff
23 lines
1.1 KiB
Diff
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 ()
|
|
'AC_CONFIG_AUX_DIR',
|
|
'AC_CONFIG_HEADERS',
|
|
'AC_CONFIG_SUBDIRS',
|
|
+ 'AC_LIBLTDL_CONVENIENCE',
|
|
+ 'AC_LIBLTDL_INSTALLABLE',
|
|
'AC_INIT',
|
|
'AC_PROG_LIBTOOL',
|
|
'LT_INIT',
|
|
@@ -488,6 +490,8 @@ sub autoreconf_current_directory ()
|
|
$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])
|