summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog14
-rw-r--r--HACKING9
-rw-r--r--NEWS2
-rw-r--r--configure.ac2
-rw-r--r--libltdl/Makefile.inc2
-rw-r--r--libltdl/configure.ac2
-rw-r--r--libltdl/m4/libtool.m42
-rw-r--r--libltdl/m4/ltdl.m42
-rw-r--r--libltdl/m4/ltoptions.m42
-rw-r--r--libltdl/m4/lt~obsolete.m42
10 files changed, 31 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index d8734bdd..ea31044e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,19 @@
2010-05-21 Gary V. Vaughan <gary@gnu.org>
+ Prepare for next release candidate.
+ * configure.ac, libltdl/configure.ac (AC_INIT): Bump version
+ number to 2.2.7b.
+ * libltdl/m4/libtool.m4, libltdl/m4/ltdl.m4,
+ libltdl/m4/ltoptions.m4, libltdl/m4/lt~obsolete.m4: These files
+ have been updated without a serial bump since the last release.
+ * libltdl/Makefile.inc (LTDL_VERSION_INFO): Bump Revision, to
+ account for bugfixes since the last release.
+ * libltdl/config/install-sh, libltdl/config/config.guess,
+ libltdl/config/config.sub, libltdl/config/texinfo.tex,
+ INSTALL: Updated from canonical source.
+ * NEWS: Update with missing entries from ChangeLog.
+ * HACKING: Note workaround for developer tool-path leakage bug.
+
Skip some tests in --disable-ltdl-install mode.
* tests/dlloader-api.at, tests/exceptions.at,
tests/lalib-syntax.at, tests/loadlibrary.at,
diff --git a/HACKING b/HACKING
index 08b6a612..cbd3cfd9 100644
--- a/HACKING
+++ b/HACKING
@@ -683,6 +683,15 @@ or obtained by writing to the Free Software Foundation, Inc.,
* Update NEWS, ChangeLog.
+* Until the bug that leaks developer tool paths into the release tarballs
+ from ./bootstrap is fixed, make sure the right tools are first in your
+ PATH and then:
+ export EGREP=egrep
+ export FGREP=fgrep
+ export GREP=grep
+ export MAKE=make
+ export SED=sed
+
* Run ./bootstrap.
* Run ./configure (or create a build directory first and run configure
diff --git a/NEWS b/NEWS
index ac5a40c5..864a6de1 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
NEWS - list of user-visible changes between releases of GNU Libtool
-New in 2.2.8 2010-??-??: git version 2.2.7a, Libtool team:
+New in 2.2.7b 2010-05-20: git version 2.2.7a, Libtool team:
* New features:
diff --git a/configure.ac b/configure.ac
index 56325f73..7770031b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -30,7 +30,7 @@ dnl Oldest automake required for bootstrap is below in AM_INIT_AUTOMAKE.
## ------------------------ ##
## Autoconf initialisation. ##
## ------------------------ ##
-AC_INIT([libtool], [2.2.7a], [bug-libtool@gnu.org])
+AC_INIT([libtool], [2.2.7b], [bug-libtool@gnu.org])
AC_CONFIG_HEADERS([config.h:config-h.in])
AC_CONFIG_SRCDIR([libtoolize.in])
LT_CONFIG_LTDL_DIR([libltdl], [nonrecursive])
diff --git a/libltdl/Makefile.inc b/libltdl/Makefile.inc
index f2108901..6b8db4e3 100644
--- a/libltdl/Makefile.inc
+++ b/libltdl/Makefile.inc
@@ -36,7 +36,7 @@ AM_CPPFLAGS += -DLT_CONFIG_H='<$(LT_CONFIG_H)>' \
-DLTDL -I. -I$(srcdir) -Ilibltdl \
-I$(srcdir)/libltdl -I$(srcdir)/libltdl/libltdl
AM_LDFLAGS += -no-undefined
-LTDL_VERSION_INFO = -version-info 9:1:2
+LTDL_VERSION_INFO = -version-info 9:2:2
noinst_LTLIBRARIES += $(LT_DLLOADERS)
diff --git a/libltdl/configure.ac b/libltdl/configure.ac
index 794f8b19..7522611f 100644
--- a/libltdl/configure.ac
+++ b/libltdl/configure.ac
@@ -40,7 +40,7 @@ AC_PREREQ(2.59)dnl We use AS_HELP_STRING
## ------------------------ ##
## Autoconf initialisation. ##
## ------------------------ ##
-AC_INIT([libltdl], [2.2.7a], [bug-libtool@gnu.org])
+AC_INIT([libltdl], [2.2.7b], [bug-libtool@gnu.org])
AC_CONFIG_HEADERS([config.h:config-h.in])
AC_CONFIG_SRCDIR([ltdl.c])
AC_CONFIG_AUX_DIR([config])
diff --git a/libltdl/m4/libtool.m4 b/libltdl/m4/libtool.m4
index 685ac0c5..22924a86 100644
--- a/libltdl/m4/libtool.m4
+++ b/libltdl/m4/libtool.m4
@@ -39,7 +39,7 @@ m4_define([_LT_COPYING], [dnl
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
])
-# serial 56 LT_INIT
+# serial 57 LT_INIT
# LT_PREREQ(VERSION)
diff --git a/libltdl/m4/ltdl.m4 b/libltdl/m4/ltdl.m4
index 111fac1e..93de12a1 100644
--- a/libltdl/m4/ltdl.m4
+++ b/libltdl/m4/ltdl.m4
@@ -7,7 +7,7 @@
# unlimited permission to copy and/or distribute it, with or without
# modifications, as long as this notice is preserved.
-# serial 17 LTDL_INIT
+# serial 18 LTDL_INIT
# LT_CONFIG_LTDL_DIR(DIRECTORY, [LTDL-MODE])
# ------------------------------------------
diff --git a/libltdl/m4/ltoptions.m4 b/libltdl/m4/ltoptions.m4
index 5ef12ced..17cfd51c 100644
--- a/libltdl/m4/ltoptions.m4
+++ b/libltdl/m4/ltoptions.m4
@@ -8,7 +8,7 @@
# unlimited permission to copy and/or distribute it, with or without
# modifications, as long as this notice is preserved.
-# serial 6 ltoptions.m4
+# serial 7 ltoptions.m4
# This is to help aclocal find these macros, as it can't see m4_define.
AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
diff --git a/libltdl/m4/lt~obsolete.m4 b/libltdl/m4/lt~obsolete.m4
index bf92b5e0..c573da90 100644
--- a/libltdl/m4/lt~obsolete.m4
+++ b/libltdl/m4/lt~obsolete.m4
@@ -7,7 +7,7 @@
# unlimited permission to copy and/or distribute it, with or without
# modifications, as long as this notice is preserved.
-# serial 4 lt~obsolete.m4
+# serial 5 lt~obsolete.m4
# These exist entirely to fool aclocal when bootstrapping libtool.
#