Hello community,

here is the log from the commit of package libtool for openSUSE:11.4
checked in at Tue Mar 1 12:51:17 CET 2011.



--------
--- old-versions/11.4/all/libtool/libtool.changes       2010-10-31 
19:03:53.000000000 +0100
+++ /mounts/work_src_done/11.4/libtool/libtool.changes  2011-02-28 
22:01:49.000000000 +0100
@@ -1,0 +2,5 @@
+Mon Feb 28 22:00:49 CET 2011 - [email protected]
+
+- Fix AC_LANG_PROGRAM warnings (bnc#675573)
+
+-------------------------------------------------------------------

calling whatdependson for 11.4-i586


New:
----
  fix-AC_LANG_PROGRAM-warnings.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libtool-testsuite.spec ++++++
--- /var/tmp/diff_new_pack.xg0e1z/_old  2011-03-01 12:50:57.000000000 +0100
+++ /var/tmp/diff_new_pack.xg0e1z/_new  2011-03-01 12:50:57.000000000 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package libtool-testsuite (Version 2.2.6b)
+# spec file for package libtool-testsuite
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
 Group:          Development/Tools/Building
 Summary:        A Tool to Build Shared Libraries
 Version:        2.2.6b
-Release:        10
+Release:        11.<RELEASE2>
 AutoReqProv:    on
 # bug437293
 %ifarch ppc64

++++++ libtool.spec ++++++
--- /var/tmp/diff_new_pack.xg0e1z/_old  2011-03-01 12:50:57.000000000 +0100
+++ /var/tmp/diff_new_pack.xg0e1z/_new  2011-03-01 12:50:57.000000000 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package libtool (Version 2.2.6b)
+# spec file for package libtool
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
 Group:          Development/Tools/Building
 Summary:        A Tool to Build Shared Libraries
 Version:        2.2.6b
-Release:        10
+Release:        13.<RELEASE2>
 AutoReqProv:    on
 # bug437293
 %ifarch ppc64
@@ -36,6 +36,7 @@
 Url:            http://www.gnu.org/software/libtool/
 Source:         ftp://ftp.gnu.org/pub/gnu/libtool/libtool-%{version}.tar.lzma
 Source2:        baselibs.conf
+Patch0:         fix-AC_LANG_PROGRAM-warnings.patch
 Patch1:         libtool-no-hostname.patch
 #Patch:          libtool-%{version}.diff
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
@@ -55,6 +56,7 @@
 
 %prep
 %setup -q -n libtool-%{version}
+%patch0 -p1
 %patch1 -p0
 #%patch -p1
 

++++++ fix-AC_LANG_PROGRAM-warnings.patch ++++++
>From 2680f79c22e6bb1f8b9c7b5428da728b7e028b0c Mon Sep 17 00:00:00 2001
From: Ralf Wildenhues <[email protected]>
Date: Sat, 28 Aug 2010 11:34:24 +0200
Subject: Fix AC_LANG_PROGRAM warnings from git Autoconf.
References: bnc#675573

* libltdl/m4/libtool.m4 (_LT_SYS_MODULE_PATH_AIX): Fix
underquoted AC_LANG_PROGRAM call.
(LT_PROG_AR): Use AC_LANG_PROGRAM.
(_LT_LINKER_SHLIBS) [irix, GCC]: Use the right source for the
given language.
* NEWS: Update.

Signed-off-by: Ralf Wildenhues <[email protected]>
---
 ChangeLog             |   10 ++++++++++
 libltdl/m4/libtool.m4 |   15 ++++++++++++---
 2 files changed, 22 insertions(+), 3 deletions(-)

--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2010-08-28  Ralf Wildenhues  <[email protected]>
+
+       Fix AC_LANG_PROGRAM warnings from git Autoconf.
+       * libltdl/m4/libtool.m4 (_LT_SYS_MODULE_PATH_AIX): Fix
+       underquoted AC_LANG_PROGRAM call.
+       (_LT_LINKER_SHLIBS) [irix, GCC]: Use the right source for the
+       given language.
+
 2009-11-16  Peter O'Gorman  <[email protected]>
 
        Really update libltdl version-info.
--- a/libltdl/m4/libtool.m4
+++ b/libltdl/m4/libtool.m4
@@ -1021,7 +1021,7 @@ m4_defun([_LT_DARWIN_LINKER_FEATURES],
 # to the aix ld manual.
 m4_defun([_LT_SYS_MODULE_PATH_AIX],
 [m4_require([_LT_DECL_SED])dnl
-AC_LINK_IFELSE(AC_LANG_PROGRAM,[
+AC_LINK_IFELSE([AC_LANG_PROGRAM],[
 lt_aix_libpath_sed='
     /Import File Strings/,/^$/ {
        /^0/ {
@@ -4826,9 +4826,18 @@ _LT_EOF
        # implicitly export all symbols.
         save_LDFLAGS="$LDFLAGS"
         LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo 
${wl}-update_registry ${wl}/dev/null"
-        AC_LINK_IFELSE(int foo(void) {},
+        AC_LINK_IFELSE(
+          [AC_LANG_SOURCE(
+            [AC_LANG_CASE([C], [[int foo (void) { return 0; }]],
+                          [C++], [[int foo (void) { return 0; }]],
+                          [Fortran 77], [[
+       subroutine foo
+       end]],
+                          [Fortran], [[
+       subroutine foo
+       end]])])], [
           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs 
$compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO 
"X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry 
${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o 
$lib'
-        )
+        ])
         LDFLAGS="$save_LDFLAGS"
       else
        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs 
$compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version 
$verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib'


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++



Remember to have fun...

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to