Hello community,

here is the log from the commit of package autoconf-archive for openSUSE:Factory
checked in at Mon Mar 28 11:08:16 CEST 2011.



--------
--- autoconf-archive/autoconf-archive.changes   2011-03-23 16:25:05.000000000 
+0100
+++ /mounts/work_src_done/STABLE/autoconf-archive/autoconf-archive.changes      
2011-03-25 14:19:50.000000000 +0100
@@ -1,0 +2,6 @@
+Fri Mar 25 14:17:05 CET 2011 - [email protected]
+
+- Libraries come last, not first in call to linker. Otherwise
+  linking fails when as-needed is in effect.
+
+-------------------------------------------------------------------

calling whatdependson for head-i586


Old:
----
  autoconf-archiv-no_semicolon.patch

New:
----
  autoconf-archive-AX_HAVE_QT_use_AS_HELP_STRING.patch
  autoconf-archive-ax_have_qt_fix_library_order.patch
  autoconf-archive-no_semicolon.patch

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

Other differences:
------------------
++++++ autoconf-archive.spec ++++++
--- /var/tmp/diff_new_pack.q5eua5/_old  2011-03-28 11:07:30.000000000 +0200
+++ /var/tmp/diff_new_pack.q5eua5/_new  2011-03-28 11:07:30.000000000 +0200
@@ -21,13 +21,15 @@
 Name:           autoconf-archive
 Summary:        A Collection of macros for GNU autoconf
 Version:        2010.10.26
-Release:        1
+Release:        3
 License:        GPL
 Group:          Development/Tools/Building
 Source0:        %{name}-%{version}.tar.xz
 Patch0:         autoconf-archive-boost_lib64.patch
-Patch1:         autoconf-archive-fix_AX_HAVE_QT.patch
-Patch2:         autoconf-archiv-no_semicolon.patch
+Patch1:         autoconf-archive-AX_HAVE_QT_use_AS_HELP_STRING.patch
+Patch2:         autoconf-archive-fix_AX_HAVE_QT.patch
+Patch3:         autoconf-archive-no_semicolon.patch
+Patch4:         autoconf-archive-ax_have_qt_fix_library_order.patch
 Url:            http://savannah.gnu.org/projects/autoconf-archive
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  xz
@@ -55,6 +57,8 @@
 %patch0
 %patch1
 %patch2
+%patch3
+%patch4
 
 %build
 %configure


++++++ autoconf-archive-AX_HAVE_QT_use_AS_HELP_STRING.patch ++++++
--- m4/ax_have_qt.m4.orig       2010-10-26 00:00:00.000000000 +0200
+++ m4/ax_have_qt.m4    2011-03-23 14:53:45.959051749 +0100
@@ -101,20 +101,24 @@ AC_DEFUN([AX_HAVE_QT],
   AC_MSG_CHECKING(for Qt)
 
   AC_ARG_WITH([Qt-dir],
-    [  --with-Qt-dir=DIR       DIR is equal to $QTDIR if you have followed the
-                          installation instructions of Trolltech. Header
-                          files are in DIR/include, binary utilities are
-                          in DIR/bin. The library is in DIR/lib, unless
-                         --with-Qt-lib-dir is also set.])
+              AS_HELP_STRING([--with-Qt-dir=DIR],
+                             [DIR is equal to $QTDIR if you have followed the
+                              installation instructions of Trolltech. Header
+                              files are in DIR/include, binary utilities are
+                              in DIR/bin. The library is in DIR/lib, unless
+                              --with-Qt-lib-dir is also set.]))
   AC_ARG_WITH([Qt-include-dir],
-    [  --with-Qt-include-dir=DIR
-                          Qt header files are in DIR])
+              AS_HELP_STRING([--with-Qt-include-dir=DIR],
+                             [Qt header files are in DIR]))
   AC_ARG_WITH([Qt-bin-dir],
-    [  --with-Qt-bin-dir=DIR   Qt utilities such as moc and uic are in DIR])
+              AS_HELP_STRING([--with-Qt-bin-dir=DIR],
+                             [Qt utilities such as moc and uic are in DIR]))
   AC_ARG_WITH([Qt-lib-dir],
-    [  --with-Qt-lib-dir=DIR   The Qt library is in DIR])
+              AS_HELP_STRING([--with-Qt-lib-dir=DIR],
+                             [The Qt library is in DIR]))
   AC_ARG_WITH([Qt-lib],
-    [  --with-Qt-lib=LIB       Use -lLIB to link with the Qt library])
+              AS_HELP_STRING([--with-Qt-lib=LIB],
+                             [Use -lLIB to link with the Qt library]))
   if test x"$with_Qt_dir" = x"no" ||
      test x"$with_Qt_include-dir" = x"no" ||
      test x"$with_Qt_bin_dir" = x"no" ||
++++++ autoconf-archive-ax_have_qt_fix_library_order.patch ++++++
Index: m4/ax_have_qt.m4
===================================================================
--- m4/ax_have_qt.m4.orig       2011-03-23 17:27:33.000000000 +0100
+++ m4/ax_have_qt.m4    2011-03-23 17:29:07.105463016 +0100
@@ -313,7 +313,7 @@ EOF
             echo "configure: could not compile:" >&AC_FD_CC
             cat ax_qt_main.$ac_ext >&AC_FD_CC
           else
-            ax_try_4="$CXX $QT_LIBS $LIBS -o ax_qt_main ax_qt_main.o 
moc_ax_qt_test.o >/dev/null 2>/dev/null"
+            ax_try_4="$CXX -o ax_qt_main ax_qt_main.o moc_ax_qt_test.o 
$QT_LIBS $LIBS >/dev/null 2>/dev/null"
             AC_TRY_EVAL(ax_try_4)
             if test x"$ac_status" != x0; then
               echo "$ax_err_4" >&AC_FD_CC
++++++ autoconf-archive-fix_AX_HAVE_QT.patch ++++++
--- /var/tmp/diff_new_pack.q5eua5/_old  2011-03-28 11:07:30.000000000 +0200
+++ /var/tmp/diff_new_pack.q5eua5/_new  2011-03-28 11:07:30.000000000 +0200
@@ -6,44 +6,9 @@
 
 Index: m4/ax_have_qt.m4
 ===================================================================
---- m4/ax_have_qt.m4.orig      2010-10-26 00:00:00.000000000 +0200
-+++ m4/ax_have_qt.m4   2011-03-23 14:53:45.959051749 +0100
-@@ -101,20 +101,24 @@ AC_DEFUN([AX_HAVE_QT],
-   AC_MSG_CHECKING(for Qt)
- 
-   AC_ARG_WITH([Qt-dir],
--    [  --with-Qt-dir=DIR       DIR is equal to $QTDIR if you have followed the
--                          installation instructions of Trolltech. Header
--                          files are in DIR/include, binary utilities are
--                          in DIR/bin. The library is in DIR/lib, unless
--                        --with-Qt-lib-dir is also set.])
-+              AS_HELP_STRING([--with-Qt-dir=DIR],
-+                             [DIR is equal to $QTDIR if you have followed the
-+                              installation instructions of Trolltech. Header
-+                              files are in DIR/include, binary utilities are
-+                              in DIR/bin. The library is in DIR/lib, unless
-+                              --with-Qt-lib-dir is also set.]))
-   AC_ARG_WITH([Qt-include-dir],
--    [  --with-Qt-include-dir=DIR
--                          Qt header files are in DIR])
-+              AS_HELP_STRING([--with-Qt-include-dir=DIR],
-+                             [Qt header files are in DIR]))
-   AC_ARG_WITH([Qt-bin-dir],
--    [  --with-Qt-bin-dir=DIR   Qt utilities such as moc and uic are in DIR])
-+              AS_HELP_STRING([--with-Qt-bin-dir=DIR],
-+                             [Qt utilities such as moc and uic are in DIR]))
-   AC_ARG_WITH([Qt-lib-dir],
--    [  --with-Qt-lib-dir=DIR   The Qt library is in DIR])
-+              AS_HELP_STRING([--with-Qt-lib-dir=DIR],
-+                             [The Qt library is in DIR]))
-   AC_ARG_WITH([Qt-lib],
--    [  --with-Qt-lib=LIB       Use -lLIB to link with the Qt library])
-+              AS_HELP_STRING([--with-Qt-lib=LIB],
-+                             [Use -lLIB to link with the Qt library]))
-   if test x"$with_Qt_dir" = x"no" ||
-      test x"$with_Qt_include-dir" = x"no" ||
-      test x"$with_Qt_bin_dir" = x"no" ||
-@@ -494,7 +498,6 @@ AC_DEFUN([AX_PATH_QT_DIRECT],
+--- m4/ax_have_qt.m4.orig      2011-03-23 17:27:18.041890363 +0100
++++ m4/ax_have_qt.m4   2011-03-23 17:27:29.844575610 +0100
+@@ -498,7 +498,6 @@ AC_DEFUN([AX_PATH_QT_DIRECT],
                # We can link with no special library directory.
                ax_qt_lib_dir=
              ], [

++++++ autoconf-archive-no_semicolon.patch ++++++
Index: m4/ax_have_qt.m4
===================================================================
--- m4/ax_have_qt.m4.orig       2011-03-23 16:04:57.000000000 +0100
+++ m4/ax_have_qt.m4    2011-03-23 16:05:47.721475469 +0100
@@ -324,7 +324,7 @@ EOF
         fi
       fi
     ])dnl AC_CACHE_VAL ax_cv_qt_test_result
-    AC_MSG_RESULT([$ax_cv_qt_test_result]);
+    AC_MSG_RESULT([$ax_cv_qt_test_result])
     if test x"$ax_cv_qt_test_result" = "xfailure"; then
       AC_MSG_ERROR([Failed to find matching components of a complete
                   Qt installation. Try using more options,

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



Remember to have fun...

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

Reply via email to