libtool-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Libtool branch, master, updated. v2.4.2-413-g404dbdf


From: Gary V. Vaughan
Subject: [SCM] GNU Libtool branch, master, updated. v2.4.2-413-g404dbdf
Date: Fri, 25 Oct 2013 23:38:28 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Libtool".

The branch, master has been updated
       via  404dbdf20245ae02e288284d1385297d0e7a546d (commit)
       via  d7d5228b536411ebf7432bb7a4d55991607e1b27 (commit)
       via  16bee7404b5dbcadfc0b2f22618bfe6310efdc7c (commit)
       via  fb38c688b3f89069f4f8470a0a873558d6e3ee7a (commit)
      from  12641bdc45d091fd1e014d242dcf271237f3c95c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 404dbdf20245ae02e288284d1385297d0e7a546d
Author: Gary V. Vaughan <address@hidden>
Date:   Sat Oct 26 12:20:18 2013 +1300

    libltdl: bump -version-info revision by 1.
    
    The only changes to libltdl sources since v2.4.2 have been
    cosmetic and stylistic.
    * libltdl/ltdl.mk (LTDL_VERSION_INFO): For a release with no
    interface changes C:R:A becomes C:R+1:A.
    
    Signed-off-by: Gary V. Vaughan <address@hidden>

commit d7d5228b536411ebf7432bb7a4d55991607e1b27
Author: Gary V. Vaughan <address@hidden>
Date:   Sat Oct 26 12:23:45 2013 +1300

    maint: Update README-release for Makefile.inc -> ltdl.mk rename.
    
    * gl/top/README-release.diff: s/Makefile.inc/ltdl.mk/g
    
    Signed-off-by: Gary V. Vaughan <address@hidden>

commit 16bee7404b5dbcadfc0b2f22618bfe6310efdc7c
Author: Gary V. Vaughan <address@hidden>
Date:   Sat Oct 26 12:03:59 2013 +1300

    maint: bump serials on m4 sources changed since v2.4.2.
    
    * m4/argz.m4: Bump serial to 6.
    * m4/libtool.m4: Bump serial to 58.
    * m4/ltdl.m4: Bump serial to 19.
    * m4/ltoptions.m4: Bump serial to 8.
    
    Signed-off-by: Gary V. Vaughan <address@hidden>

commit fb38c688b3f89069f4f8470a0a873558d6e3ee7a
Author: Gary V. Vaughan <address@hidden>
Date:   Sat Oct 26 12:35:41 2013 +1300

    maint: fix a syntax-check violation from commit 12641bd.
    
    * build-aux/ltmain.in (func_mode_link): Reverse test operands to
    forestall misinterpretation of contests of shell variable as
    operand 1.
    
    Signed-off-by: Gary V. Vaughan <address@hidden>

-----------------------------------------------------------------------

Summary of changes:
 build-aux/ltmain.in        |    2 +-
 gl/top/README-release.diff |    2 +-
 libltdl/ltdl.mk            |    2 +-
 m4/argz.m4                 |    2 +-
 m4/libtool.m4              |    2 +-
 m4/ltdl.m4                 |    2 +-
 m4/ltoptions.m4            |    2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/build-aux/ltmain.in b/build-aux/ltmain.in
index 58b443c..fba05c1 100644
--- a/build-aux/ltmain.in
+++ b/build-aux/ltmain.in
@@ -6984,7 +6984,7 @@ func_mode_link ()
        # Check to see if the archive will have undefined symbols.
        if test yes = "$allow_undefined"; then
          if test unsupported = "$allow_undefined_flag"; then
-           if test "$build_old_libs" = yes; then
+           if test yes = "$build_old_libs"; then
              func_warning "undefined symbols not allowed in $host shared 
libraries; building static only"
              build_libtool_libs=no
            else
diff --git a/gl/top/README-release.diff b/gl/top/README-release.diff
index f8fd462..963edf0 100644
--- a/gl/top/README-release.diff
+++ b/gl/top/README-release.diff
@@ -18,7 +18,7 @@
 +  forgotten since last release (they should be updated in git along with
 +  commits that require it so that users can work with git snapshots).
 +
-+* Update the LTDL_VERSION_INFO in libltdl/Makefile.inc for changes since
++* Update the LTDL_VERSION_INFO in libltdl/ltdl.mk for changes since
 +  the last release.
 +
 +* Run "./bootstrap && ./configure".
diff --git a/libltdl/ltdl.mk b/libltdl/ltdl.mk
index 6cafd87..7d9934d 100644
--- a/libltdl/ltdl.mk
+++ b/libltdl/ltdl.mk
@@ -37,7 +37,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 10:0:3
+LTDL_VERSION_INFO      = -version-info 10:1:3
 
 noinst_LTLIBRARIES     += $(LT_DLLOADERS)
 
diff --git a/m4/argz.m4 b/m4/argz.m4
index c58d91e..35de75d 100644
--- a/m4/argz.m4
+++ b/m4/argz.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 5 argz.m4
+# serial 6 argz.m4
 
 AC_DEFUN([gl_FUNC_ARGZ],
 [gl_PREREQ_ARGZ
diff --git a/m4/libtool.m4 b/m4/libtool.m4
index c0435a2..4bc6b22 100644
--- a/m4/libtool.m4
+++ b/m4/libtool.m4
@@ -37,7 +37,7 @@ m4_define([_LT_COPYING], [dnl
 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 ])
 
-# serial 57 LT_INIT
+# serial 58 LT_INIT
 
 
 # LT_PREREQ(VERSION)
diff --git a/m4/ltdl.m4 b/m4/ltdl.m4
index 1df7a41..dbc91d9 100644
--- a/m4/ltdl.m4
+++ b/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 18 LTDL_INIT
+# serial 19 LTDL_INIT
 
 # LT_CONFIG_LTDL_DIR(DIRECTORY, [LTDL-MODE])
 # ------------------------------------------
diff --git a/m4/ltoptions.m4 b/m4/ltoptions.m4
index 99d8868..50c7723 100644
--- a/m4/ltoptions.m4
+++ b/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 7 ltoptions.m4
+# serial 8 ltoptions.m4
 
 # This is to help aclocal find these macros, as it can't see m4_define.
 AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])


hooks/post-receive
-- 
GNU Libtool



reply via email to

[Prev in Thread] Current Thread [Next in Thread]