From f3ec11875b67bebbbc9ed85267b23453cedcb83a Mon Sep 17 00:00:00 2001 From: Stefan Saraev Date: Sat, 12 Jan 2013 16:02:05 +0200 Subject: [PATCH 01/67] oscam: disable ssl, disable libcrypto, disable debug --- packages/addons/service/softcam/oscam/build | 4 +++- packages/addons/service/softcam/oscam/meta | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/packages/addons/service/softcam/oscam/build b/packages/addons/service/softcam/oscam/build index e07361f5d2..0699faffd5 100755 --- a/packages/addons/service/softcam/oscam/build +++ b/packages/addons/service/softcam/oscam/build @@ -29,10 +29,12 @@ mkdir -p build && cd build cmake -DCMAKE_TOOLCHAIN_FILE=$CMAKE_CONF \ -DCMAKE_INSTALL_PREFIX=/usr \ -DLIBUSBDIR=$SYSROOT_PREFIX/usr \ - -DWITH_SSL=1 \ + -DWITH_SSL=0 \ + -DHAVE_LIBCRYPTO=0 \ -DHAVE_DVBAPI=1 -DWITH_STAPI=0 \ -DMODULE_CAMD33=1 \ -DWEBIF=1 \ + -DWITH_DEBUG=0 \ -DOPTIONAL_INCLUDE_DIR=$SYSROOT_PREFIX/usr/include \ .. diff --git a/packages/addons/service/softcam/oscam/meta b/packages/addons/service/softcam/oscam/meta index d7ba589cac..cbb693b04f 100644 --- a/packages/addons/service/softcam/oscam/meta +++ b/packages/addons/service/softcam/oscam/meta @@ -26,8 +26,8 @@ PKG_ARCH="any" PKG_LICENSE="GPL" PKG_SITE="http://www.streamboard.tv/oscam/wiki" PKG_URL="$DISTRO_SRC/$PKG_NAME-$PKG_VERSION.tar.bz2" -PKG_DEPENDS="openssl" -PKG_BUILD_DEPENDS="toolchain openssl pcsc-lite" +PKG_DEPENDS="" +PKG_BUILD_DEPENDS="toolchain pcsc-lite" PKG_PRIORITY="optional" PKG_SECTION="service/softcam" PKG_SHORTDESC="oscam: OSCam is Open Source Conditional Access Modul." From 773abc0adfad2469d567a024ce2f64926944ff25 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:47:53 +0100 Subject: [PATCH 02/67] automake: update to automake-1.13.1 Signed-off-by: Stephan Raue --- packages/toolchain/devel/autotools/automake/build | 1 + packages/toolchain/devel/autotools/automake/meta | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/toolchain/devel/autotools/automake/build b/packages/toolchain/devel/autotools/automake/build index c042abb9e3..c59aaae725 100755 --- a/packages/toolchain/devel/autotools/automake/build +++ b/packages/toolchain/devel/autotools/automake/build @@ -29,6 +29,7 @@ cd $PKG_BUILD --build=$HOST_NAME \ --target=$TARGET_NAME \ --prefix=$ROOT/$TOOLCHAIN \ + --disable-silent-rules make make install diff --git a/packages/toolchain/devel/autotools/automake/meta b/packages/toolchain/devel/autotools/automake/meta index ab46d9b232..8647a27d9e 100644 --- a/packages/toolchain/devel/autotools/automake/meta +++ b/packages/toolchain/devel/autotools/automake/meta @@ -19,7 +19,7 @@ ################################################################################ PKG_NAME="automake" -PKG_VERSION="1.12.6" +PKG_VERSION="1.13.1" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="GPL" From 55a1b7069b9160921b469c95351bba194db9d6a4 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:48:41 +0100 Subject: [PATCH 03/67] evtest: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../evtest/patches/evtest-1.30-automake_1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/addons/debugging/tools/evtest/patches/evtest-1.30-automake_1.13.patch diff --git a/packages/addons/debugging/tools/evtest/patches/evtest-1.30-automake_1.13.patch b/packages/addons/debugging/tools/evtest/patches/evtest-1.30-automake_1.13.patch new file mode 100644 index 0000000000..1a7a7de03b --- /dev/null +++ b/packages/addons/debugging/tools/evtest/patches/evtest-1.30-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur evtest-1.30-old/configure.ac evtest-1.30-new/configure.ac +--- evtest-1.30-old/configure.ac 2012-04-26 15:15:32.000000000 -0700 ++++ evtest-1.30-new/configure.ac 2013-01-03 17:00:38.000000000 -0800 +@@ -2,7 +2,7 @@ + AC_INIT(evtest,[1.30], [https://bugzilla.freedesktop.org/enter_bug.cgi?product=evtest], evtest) + AM_INIT_AUTOMAKE([foreign dist-bzip2]) + +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + AC_PROG_CC + AC_PROG_INSTALL + From 0464ae40afa0f75a13c6ff01a1d64d9643aa2d6a Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:49:05 +0100 Subject: [PATCH 04/67] alsa-lib: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../patches/alsa-lib-1.0.26-automake_1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/audio/alsa-lib/patches/alsa-lib-1.0.26-automake_1.13.patch diff --git a/packages/audio/alsa-lib/patches/alsa-lib-1.0.26-automake_1.13.patch b/packages/audio/alsa-lib/patches/alsa-lib-1.0.26-automake_1.13.patch new file mode 100644 index 0000000000..7ee685e18f --- /dev/null +++ b/packages/audio/alsa-lib/patches/alsa-lib-1.0.26-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur alsa-lib-1.0.26-old/configure.in alsa-lib-1.0.26-new/configure.in +--- alsa-lib-1.0.26-old/configure.in 2012-09-06 01:55:14.000000000 -0700 ++++ alsa-lib-1.0.26-new/configure.in 2012-12-29 06:07:44.000000000 -0800 +@@ -53,7 +53,7 @@ + + dnl Checks for header files. + AC_HEADER_STDC +-AM_CONFIG_HEADER(include/config.h) ++AC_CONFIG_HEADERS(include/config.h) + + dnl Checks for typedefs, structures, and compiler characteristics. + AC_C_CONST From 7bd736578d210a5b503b889a05e639d316cec85c Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:49:12 +0100 Subject: [PATCH 05/67] alsa-utils: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../patches/alsa-utils-1.0.26-automake_1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/audio/alsa-utils/patches/alsa-utils-1.0.26-automake_1.13.patch diff --git a/packages/audio/alsa-utils/patches/alsa-utils-1.0.26-automake_1.13.patch b/packages/audio/alsa-utils/patches/alsa-utils-1.0.26-automake_1.13.patch new file mode 100644 index 0000000000..4f7c99358c --- /dev/null +++ b/packages/audio/alsa-utils/patches/alsa-utils-1.0.26-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur alsa-utils-1.0.26-old/configure.in alsa-utils-1.0.26-new/configure.in +--- alsa-utils-1.0.26-old/configure.in 2012-09-06 01:45:44.000000000 -0700 ++++ alsa-utils-1.0.26-new/configure.in 2012-12-29 08:01:59.000000000 -0800 +@@ -290,7 +290,7 @@ + TESTSOUND="$dir/test.wav") + AC_SUBST(TESTSOUND) + +-AM_CONFIG_HEADER(include/aconfig.h) ++AC_CONFIG_HEADERS(include/aconfig.h) + + dnl Checks for typedefs, structures, and compiler characteristics. + AC_C_CONST From c1f14f9453534a5f4656fe5fd5ec7198041bfda4 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:49:34 +0100 Subject: [PATCH 06/67] faad2: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../faad2/patches/faad2-2.7-automake_1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/audio/faad2/patches/faad2-2.7-automake_1.13.patch diff --git a/packages/audio/faad2/patches/faad2-2.7-automake_1.13.patch b/packages/audio/faad2/patches/faad2-2.7-automake_1.13.patch new file mode 100644 index 0000000000..56724f3f14 --- /dev/null +++ b/packages/audio/faad2/patches/faad2-2.7-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur faad2-2.7-old/configure.in faad2-2.7-new/configure.in +--- faad2-2.7-old/configure.in 2009-02-04 16:51:03.000000000 -0800 ++++ faad2-2.7-new/configure.in 2012-12-30 14:58:33.000000000 -0800 +@@ -25,7 +25,7 @@ + AC_PROG_MAKE_SET + AC_CHECK_PROGS(RPMBUILD, rpmbuild, rpm) + +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + + AC_ARG_WITH(xmms,[ --with-xmms compile XMMS-1 plugin], + WITHXMMS=$withval, WITHXMMS=no) From 2a6eaca95a06bfa0721d4340a4551f79036f0e89 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:49:51 +0100 Subject: [PATCH 07/67] flac: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../flac/patches/flac-1.2.1-automake_1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/audio/flac/patches/flac-1.2.1-automake_1.13.patch diff --git a/packages/audio/flac/patches/flac-1.2.1-automake_1.13.patch b/packages/audio/flac/patches/flac-1.2.1-automake_1.13.patch new file mode 100644 index 0000000000..e71f3b4006 --- /dev/null +++ b/packages/audio/flac/patches/flac-1.2.1-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur flac-1.2.1-old/configure.in flac-1.2.1-new/configure.in +--- flac-1.2.1-old/configure.in 2007-09-13 08:48:42.000000000 -0700 ++++ flac-1.2.1-new/configure.in 2013-01-03 19:54:10.000000000 -0800 +@@ -44,7 +44,7 @@ + AC_CHECK_SIZEOF(void*,0) + + #@@@ new name is AC_CONFIG_HEADERS +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + + AC_C_BIGENDIAN + From 8ae5ae2237b5c145a5aab68b631a5c258aae8616 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:51:14 +0100 Subject: [PATCH 08/67] libcdio: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../libcdio/patches/libcdio-0.90-automake_1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/audio/libcdio/patches/libcdio-0.90-automake_1.13.patch diff --git a/packages/audio/libcdio/patches/libcdio-0.90-automake_1.13.patch b/packages/audio/libcdio/patches/libcdio-0.90-automake_1.13.patch new file mode 100644 index 0000000000..e16a400282 --- /dev/null +++ b/packages/audio/libcdio/patches/libcdio-0.90-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur libcdio-0.90-old/configure.ac libcdio-0.90-new/configure.ac +--- libcdio-0.90-old/configure.ac 2012-10-27 08:07:45.000000000 -0700 ++++ libcdio-0.90-new/configure.ac 2012-12-30 14:12:26.000000000 -0800 +@@ -26,7 +26,7 @@ + AM_INIT_AUTOMAKE([foreign]) + + AC_CANONICAL_HOST +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + AC_CONFIG_MACRO_DIR([m4]) + + # Enable silent build rules by default (Automake v1.11 or later). From 5867a1a85fd2d27aeea552b37e782002d7813acf Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:51:14 +0100 Subject: [PATCH 09/67] libmad: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../patches/libmad-0.15.1b-automake_1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/audio/libmad/patches/libmad-0.15.1b-automake_1.13.patch diff --git a/packages/audio/libmad/patches/libmad-0.15.1b-automake_1.13.patch b/packages/audio/libmad/patches/libmad-0.15.1b-automake_1.13.patch new file mode 100644 index 0000000000..270ff8156b --- /dev/null +++ b/packages/audio/libmad/patches/libmad-0.15.1b-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur libmad-0.15.1b-old/configure.ac libmad-0.15.1b-new/configure.ac +--- libmad-0.15.1b-old/configure.ac 2004-01-23 01:41:32.000000000 -0800 ++++ libmad-0.15.1b-new/configure.ac 2012-12-30 15:14:37.000000000 -0800 +@@ -28,7 +28,7 @@ + + AM_INIT_AUTOMAKE + +-AM_CONFIG_HEADER([config.h]) ++AC_CONFIG_HEADERS([config.h]) + + dnl System type. + From a55a25fac3d688fde60e5105e1f3bdf76b35144a Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:51:14 +0100 Subject: [PATCH 10/67] libogg: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../libogg/patches/libogg-1.3.0-automake_1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/audio/libogg/patches/libogg-1.3.0-automake_1.13.patch diff --git a/packages/audio/libogg/patches/libogg-1.3.0-automake_1.13.patch b/packages/audio/libogg/patches/libogg-1.3.0-automake_1.13.patch new file mode 100644 index 0000000000..d7f724ab74 --- /dev/null +++ b/packages/audio/libogg/patches/libogg-1.3.0-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur libogg-1.3.0-old/configure.in libogg-1.3.0-new/configure.in +--- libogg-1.3.0-old/configure.in 2011-08-04 10:11:08.000000000 -0700 ++++ libogg-1.3.0-new/configure.in 2013-01-03 19:50:49.000000000 -0800 +@@ -19,7 +19,7 @@ + AM_PROG_CC_C_O + + dnl config.h +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + + dnl Set some options based on environment + From 8b3f5c7f79e332ad866741d24078dd8654f9d7b3 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:51:14 +0100 Subject: [PATCH 11/67] libvorbis: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../libvorbis-1.3.3-automake_1.13.patch | 12 ++++++++++ .../patches/libvorbis-1.3.3-configure.patch | 22 +++++++++---------- 2 files changed, 23 insertions(+), 11 deletions(-) create mode 100644 packages/audio/libvorbis/patches/libvorbis-1.3.3-automake_1.13.patch diff --git a/packages/audio/libvorbis/patches/libvorbis-1.3.3-automake_1.13.patch b/packages/audio/libvorbis/patches/libvorbis-1.3.3-automake_1.13.patch new file mode 100644 index 0000000000..ba227feb23 --- /dev/null +++ b/packages/audio/libvorbis/patches/libvorbis-1.3.3-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur libvorbis-1.3.3-old/configure.ac libvorbis-1.3.3-new/configure.ac +--- libvorbis-1.3.3-old/configure.ac 2012-02-03 14:00:34.000000000 -0800 ++++ libvorbis-1.3.3-new/configure.ac 2013-01-03 20:10:21.000000000 -0800 +@@ -13,7 +13,7 @@ + + AM_INIT_AUTOMAKE($PACKAGE_NAME,$PACKAGE_VERSION) + AM_MAINTAINER_MODE +-AM_CONFIG_HEADER([config.h]) ++AC_CONFIG_HEADERS([config.h]) + + dnl Add parameters for aclocal + AC_SUBST(ACLOCAL_AMFLAGS, "-I m4") diff --git a/packages/audio/libvorbis/patches/libvorbis-1.3.3-configure.patch b/packages/audio/libvorbis/patches/libvorbis-1.3.3-configure.patch index 5a4eb52857..1265714d8b 100644 --- a/packages/audio/libvorbis/patches/libvorbis-1.3.3-configure.patch +++ b/packages/audio/libvorbis/patches/libvorbis-1.3.3-configure.patch @@ -1,8 +1,8 @@ -diff -Naur libvorbis-1.3.2-old/configure.ac libvorbis-1.3.2-new/configure.ac ---- libvorbis-1.3.2-old/configure.ac 2010-11-01 12:27:12.000000000 -0700 -+++ libvorbis-1.3.2-new/configure.ac 2010-11-01 14:50:03.000000000 -0700 +diff -Naur libvorbis-1.3.3-old/configure.ac libvorbis-1.3.3-new/configure.ac +--- libvorbis-1.3.3-old/configure.ac 2012-02-03 14:00:34.000000000 -0800 ++++ libvorbis-1.3.3-new/configure.ac 2012-02-09 12:56:02.000000000 -0800 @@ -8,6 +8,7 @@ - AC_INIT([libvorbis],[1.3.2],[vorbis-dev@xiph.org]) + AC_INIT([libvorbis],[1.3.3],[vorbis-dev@xiph.org]) AC_CONFIG_SRCDIR([lib/mdct.c]) +AC_CONFIG_MACRO_DIR([m4]) @@ -10,19 +10,19 @@ diff -Naur libvorbis-1.3.2-old/configure.ac libvorbis-1.3.2-new/configure.ac AC_CANONICAL_TARGET([]) @@ -16,7 +17,6 @@ - AM_CONFIG_HEADER([config.h]) + AC_CONFIG_HEADERS([config.h]) dnl Add parameters for aclocal -AC_SUBST(ACLOCAL_AMFLAGS, "-I m4") dnl Library versioning dnl - library source changed -> increment REVISION -diff -Naur libvorbis-1.3.2-old/Makefile.am libvorbis-1.3.2-new/Makefile.am ---- libvorbis-1.3.2-old/Makefile.am 2010-03-25 18:56:25.000000000 -0700 -+++ libvorbis-1.3.2-new/Makefile.am 2010-11-01 14:50:03.000000000 -0700 -@@ -2,6 +2,8 @@ - - AUTOMAKE_OPTIONS = 1.7 foreign dist-zip dist-bzip2 +diff -Naur libvorbis-1.3.3-old/Makefile.am libvorbis-1.3.3-new/Makefile.am +--- libvorbis-1.3.3-old/Makefile.am 2010-12-21 00:46:03.000000000 -0800 ++++ libvorbis-1.3.3-new/Makefile.am 2012-02-09 12:56:02.000000000 -0800 +@@ -3,6 +3,8 @@ + #AUTOMAKE_OPTIONS = 1.7 foreign dist-zip dist-bzip2 + AUTOMAKE_OPTIONS = foreign 1.11 dist-zip dist-xz +ACLOCAL_AMFLAGS = -I m4 + From cf092e35d4bea86ff38c6dc30f2a0610c8158478 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:52:05 +0100 Subject: [PATCH 12/67] mysql: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../mysql/patches/mysql-5.1.67-automake_1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/databases/mysql/patches/mysql-5.1.67-automake_1.13.patch diff --git a/packages/databases/mysql/patches/mysql-5.1.67-automake_1.13.patch b/packages/databases/mysql/patches/mysql-5.1.67-automake_1.13.patch new file mode 100644 index 0000000000..36329ef973 --- /dev/null +++ b/packages/databases/mysql/patches/mysql-5.1.67-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur mysql-5.1.67-old/configure.in mysql-5.1.67-new/configure.in +--- mysql-5.1.67-old/configure.in 2012-12-13 02:05:51.000000000 -0800 ++++ mysql-5.1.67-new/configure.in 2012-12-30 08:39:00.000000000 -0800 +@@ -22,7 +22,7 @@ + AM_INIT_AUTOMAKE([1.9 tar-ustar]) + AC_PROG_LIBTOOL + +-AM_CONFIG_HEADER([include/config.h]) ++AC_CONFIG_HEADERS([include/config.h]) + + # Request support for automake silent-rules if available. + # Default to verbose output. One can use the configure-time From 9f250c2e660608b7f202f51c4ac51614b9f8c68f Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:52:25 +0100 Subject: [PATCH 13/67] mrxvt: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../mrxvt/patches/mrxvt-0.5.4-automake-1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/debug/mrxvt/patches/mrxvt-0.5.4-automake-1.13.patch diff --git a/packages/debug/mrxvt/patches/mrxvt-0.5.4-automake-1.13.patch b/packages/debug/mrxvt/patches/mrxvt-0.5.4-automake-1.13.patch new file mode 100644 index 0000000000..b29c058183 --- /dev/null +++ b/packages/debug/mrxvt/patches/mrxvt-0.5.4-automake-1.13.patch @@ -0,0 +1,12 @@ +diff -Naur mrxvt-0.5.4/configure.ac mrxvt-0.5.4.patch/configure.ac +--- mrxvt-0.5.4/configure.ac 2008-05-12 19:21:56.000000000 +0200 ++++ mrxvt-0.5.4.patch/configure.ac 2013-01-12 01:54:55.819541351 +0100 +@@ -28,7 +28,7 @@ + AC_INIT(mrxvt, 0.5.4, [jimmyzhou@users.sourceforge.net]) + AM_INIT_AUTOMAKE(mrxvt, 0.5.4) + +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + AC_CONFIG_SRCDIR([src/main.c]) + + From 05228a6d2f29f60be8ad8aa61f9c84fba0266f06 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:52:41 +0100 Subject: [PATCH 14/67] strace: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../strace/patches/strace-4.7-automake_1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/debug/strace/patches/strace-4.7-automake_1.13.patch diff --git a/packages/debug/strace/patches/strace-4.7-automake_1.13.patch b/packages/debug/strace/patches/strace-4.7-automake_1.13.patch new file mode 100644 index 0000000000..7c42624ffd --- /dev/null +++ b/packages/debug/strace/patches/strace-4.7-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur strace-4.7-old/configure.ac strace-4.7-new/configure.ac +--- strace-4.7-old/configure.ac 2012-05-02 05:34:56.000000000 -0700 ++++ strace-4.7-new/configure.ac 2013-01-03 21:01:04.000000000 -0800 +@@ -3,7 +3,7 @@ + AC_INIT([strace],[4.7]) + AC_CONFIG_SRCDIR([strace.c]) + AC_CONFIG_AUX_DIR([.]) +-AM_CONFIG_HEADER([config.h]) ++AC_CONFIG_HEADERS([config.h]) + AM_INIT_AUTOMAKE([foreign check-news dist-xz no-dist-gzip silent-rules]) + AM_MAINTAINER_MODE + AC_CANONICAL_HOST From 1612e8215346681099e696d5e844829d70a1ebd3 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:53:11 +0100 Subject: [PATCH 15/67] dbus-glib: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../patches/dbus-glib-0.100-automake_1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/devel/dbus-glib/patches/dbus-glib-0.100-automake_1.13.patch diff --git a/packages/devel/dbus-glib/patches/dbus-glib-0.100-automake_1.13.patch b/packages/devel/dbus-glib/patches/dbus-glib-0.100-automake_1.13.patch new file mode 100644 index 0000000000..3914dc39c2 --- /dev/null +++ b/packages/devel/dbus-glib/patches/dbus-glib-0.100-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur dbus-glib-0.100-old/configure.ac dbus-glib-0.100-new/configure.ac +--- dbus-glib-0.100-old/configure.ac 2012-06-25 09:26:39.000000000 -0700 ++++ dbus-glib-0.100-new/configure.ac 2012-12-29 08:54:04.000000000 -0800 +@@ -8,7 +8,7 @@ + + AM_INIT_AUTOMAKE([1.9]) + +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + + # Honor aclocal flags + ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS" From 59858446e6ae44b5219c1539c4374c84a21d347f Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:53:26 +0100 Subject: [PATCH 16/67] eggdbus: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../patches/eggdbus-0.6-automake-1.13.patch | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 packages/devel/eggdbus/patches/eggdbus-0.6-automake-1.13.patch diff --git a/packages/devel/eggdbus/patches/eggdbus-0.6-automake-1.13.patch b/packages/devel/eggdbus/patches/eggdbus-0.6-automake-1.13.patch new file mode 100644 index 0000000000..48118a5558 --- /dev/null +++ b/packages/devel/eggdbus/patches/eggdbus-0.6-automake-1.13.patch @@ -0,0 +1,17 @@ +diff -Naur eggdbus-0.6/configure.ac eggdbus-0.6.patch/configure.ac +--- eggdbus-0.6/configure.ac 2009-06-19 23:39:32.000000000 +0200 ++++ eggdbus-0.6.patch/configure.ac 2013-01-12 09:34:09.276789441 +0100 +@@ -3,12 +3,11 @@ + AC_PREREQ(2.59c) + AC_INIT(eggdbus, 0.6, davidz@redhat.com) + AM_INIT_AUTOMAKE(eggdbus, 0.6) +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + AM_MAINTAINER_MODE + + AC_ISC_POSIX + AC_PROG_CC +-AM_PROG_CC_STDC + AC_HEADER_STDC + AM_PROG_LIBTOOL + AC_PROG_MAKE_SET From 791d00895b610f4834b6a559c3b9162a6ae9dfc0 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:54:34 +0100 Subject: [PATCH 17/67] file: update to file-5.12 Signed-off-by: Stephan Raue --- packages/devel/file/meta | 2 +- .../file/patches/{file-5.10-zip.patch => file-5.12-zip.patch} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename packages/devel/file/patches/{file-5.10-zip.patch => file-5.12-zip.patch} (100%) diff --git a/packages/devel/file/meta b/packages/devel/file/meta index 4c807b0020..139a2abc14 100644 --- a/packages/devel/file/meta +++ b/packages/devel/file/meta @@ -19,7 +19,7 @@ ################################################################################ PKG_NAME="file" -PKG_VERSION="5.11" +PKG_VERSION="5.12" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="BSD" diff --git a/packages/devel/file/patches/file-5.10-zip.patch b/packages/devel/file/patches/file-5.12-zip.patch similarity index 100% rename from packages/devel/file/patches/file-5.10-zip.patch rename to packages/devel/file/patches/file-5.12-zip.patch From e77d7ce03c60471c8e8dc1242a49d33d56d0887f Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:55:01 +0100 Subject: [PATCH 18/67] file-host: add support for automake-1.13 Signed-off-by: Stephan Raue --- packages/devel/file-host/build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/devel/file-host/build b/packages/devel/file-host/build index 2332be9ffb..a4de82eaf0 100755 --- a/packages/devel/file-host/build +++ b/packages/devel/file-host/build @@ -36,5 +36,5 @@ mkdir -p .build-host && cd .build-host --disable-static \ --enable-fsect-man5 \ -make -make install +make -C src +make -C src install From 5e49a69ee1bcd9d6a0d5642d1b76a961cd59d9a7 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:55:29 +0100 Subject: [PATCH 19/67] glib: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../glib/patches/glib-2.34.3-automake_1.13.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 packages/devel/glib/patches/glib-2.34.3-automake_1.13.patch diff --git a/packages/devel/glib/patches/glib-2.34.3-automake_1.13.patch b/packages/devel/glib/patches/glib-2.34.3-automake_1.13.patch new file mode 100644 index 0000000000..b33c391459 --- /dev/null +++ b/packages/devel/glib/patches/glib-2.34.3-automake_1.13.patch @@ -0,0 +1,11 @@ +diff -Naur glib-2.34.3-old/configure.ac glib-2.34.3-new/configure.ac +--- glib-2.34.3-old/configure.ac 2012-12-29 06:22:04.000000000 -0800 ++++ glib-2.34.3-new/configure.ac 2012-12-29 06:22:28.000000000 -0800 +@@ -293,7 +293,6 @@ + + AC_HEADER_STDC + +-AM_PROG_CC_STDC + AM_PROG_CC_C_O + AC_PROG_INSTALL + From 2e2e2e2f9a5567a9c5bf0de76770126e5dfb1210 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:55:44 +0100 Subject: [PATCH 20/67] gmp: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- ....5-automake.patch => gmp-5.0.5-automake-1.13.patch} | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) rename packages/devel/gmp/patches/{gmp-5.0.5-automake.patch => gmp-5.0.5-automake-1.13.patch} (81%) diff --git a/packages/devel/gmp/patches/gmp-5.0.5-automake.patch b/packages/devel/gmp/patches/gmp-5.0.5-automake-1.13.patch similarity index 81% rename from packages/devel/gmp/patches/gmp-5.0.5-automake.patch rename to packages/devel/gmp/patches/gmp-5.0.5-automake-1.13.patch index 2d97204360..be209fb025 100644 --- a/packages/devel/gmp/patches/gmp-5.0.5-automake.patch +++ b/packages/devel/gmp/patches/gmp-5.0.5-automake-1.13.patch @@ -1,15 +1,17 @@ diff -Naur gmp-5.0.5/configure.in gmp-5.0.5.patch/configure.in --- gmp-5.0.5/configure.in 2012-05-06 13:19:49.000000000 +0200 -+++ gmp-5.0.5.patch/configure.in 2012-06-13 21:12:33.434790721 +0200 -@@ -65,7 +65,7 @@ ++++ gmp-5.0.5.patch/configure.in 2013-01-12 02:25:31.897257189 +0100 +@@ -65,8 +65,8 @@ dnl Note that there's a copy of these options in the top-level Makefile.am, dnl so update there too if changing anything. dnl -AM_INIT_AUTOMAKE([1.8 gnu no-dependencies $(top_builddir)/ansi2knr]) +-AM_CONFIG_HEADER(config.h:config.in) +AM_INIT_AUTOMAKE([1.8 gnu no-dependencies]) - AM_CONFIG_HEADER(config.h:config.in) ++AC_CONFIG_HEADERS(config.h:config.in) AM_MAINTAINER_MODE + @@ -2228,9 +2228,6 @@ echo " MPN_PATH=\"$path\"" @@ -22,7 +24,7 @@ diff -Naur gmp-5.0.5/configure.in gmp-5.0.5.patch/configure.in GMP_PROG_AR diff -Naur gmp-5.0.5/Makefile.am gmp-5.0.5.patch/Makefile.am --- gmp-5.0.5/Makefile.am 2012-05-06 13:19:49.000000000 +0200 -+++ gmp-5.0.5.patch/Makefile.am 2012-06-13 21:12:57.038224241 +0200 ++++ gmp-5.0.5.patch/Makefile.am 2013-01-12 02:25:09.603364249 +0100 @@ -25,7 +25,7 @@ # Makefiles in subdirectories, but here we must omit it so automake gives # the actual ansi2knr build rule, not "cd $(top_builddir) && make ansi2knr". From 84746981c58b19ad1613abcf68dcee2d707a8436 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:56:05 +0100 Subject: [PATCH 21/67] libftdi: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../libftdi/patches/libftdi-0.20-automake_1.13.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 packages/devel/libftdi/patches/libftdi-0.20-automake_1.13.patch diff --git a/packages/devel/libftdi/patches/libftdi-0.20-automake_1.13.patch b/packages/devel/libftdi/patches/libftdi-0.20-automake_1.13.patch new file mode 100644 index 0000000000..78baa5e4ce --- /dev/null +++ b/packages/devel/libftdi/patches/libftdi-0.20-automake_1.13.patch @@ -0,0 +1,11 @@ +diff -Naur libftdi-0.20-old/configure.in libftdi-0.20-new/configure.in +--- libftdi-0.20-old/configure.in 2012-03-19 04:20:56.000000000 -0700 ++++ libftdi-0.20-new/configure.in 2012-12-31 04:49:04.000000000 -0800 +@@ -1,6 +1,6 @@ + AC_INIT(libftdi, 0.20) + AM_INIT_AUTOMAKE +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + + AC_LANG_C + AC_PROG_CC From e8f72865e8e2be99892f26aea3bd1adbefba5109 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:57:00 +0100 Subject: [PATCH 22/67] lockdev: fix build to support automake-1.13 Signed-off-by: Stephan Raue --- packages/devel/lockdev/build | 1 + packages/devel/lockdev/meta | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/devel/lockdev/build b/packages/devel/lockdev/build index ae4137cbc6..a23fc51545 100755 --- a/packages/devel/lockdev/build +++ b/packages/devel/lockdev/build @@ -23,6 +23,7 @@ . config/options $1 cd $PKG_BUILD +mkdir -p m4 && do_autoreconf ./configure --host=$TARGET_NAME \ --build=$HOST_NAME \ --prefix=/usr \ diff --git a/packages/devel/lockdev/meta b/packages/devel/lockdev/meta index 0699ff560e..d88dc7a330 100644 --- a/packages/devel/lockdev/meta +++ b/packages/devel/lockdev/meta @@ -33,4 +33,4 @@ PKG_SHORTDESC="lockdev: Manage character and block device lockfiles." PKG_LONGDESC="lockdev manages character and block device lockfiles." PKG_IS_ADDON="no" -PKG_AUTORECONF="yes" +PKG_AUTORECONF="no" From 425dd196587f651d3546755872dd98d1bb9bf92c Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:57:30 +0100 Subject: [PATCH 23/67] libpng: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../libpng/patches/libpng-1.5.13-automake_1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/graphics/libpng/patches/libpng-1.5.13-automake_1.13.patch diff --git a/packages/graphics/libpng/patches/libpng-1.5.13-automake_1.13.patch b/packages/graphics/libpng/patches/libpng-1.5.13-automake_1.13.patch new file mode 100644 index 0000000000..cd2193692e --- /dev/null +++ b/packages/graphics/libpng/patches/libpng-1.5.13-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur libpng-1.5.13-old/configure.ac libpng-1.5.13-new/configure.ac +--- libpng-1.5.13-old/configure.ac 2012-09-27 04:21:22.000000000 -0700 ++++ libpng-1.5.13-new/configure.ac 2012-12-30 09:53:28.000000000 -0800 +@@ -31,7 +31,7 @@ + dnl End of version number stuff + + AC_CONFIG_SRCDIR([pngget.c]) +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + + # Checks for programs. + AC_LANG([C]) From 21aa0e1f0aabfc3f0313865a8e47dc185ad4b347 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:57:52 +0100 Subject: [PATCH 24/67] xbmc: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../xbmc-f70eb43-301-automake-1.13.patch | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 packages/mediacenter/xbmc/patches/xbmc-f70eb43-301-automake-1.13.patch diff --git a/packages/mediacenter/xbmc/patches/xbmc-f70eb43-301-automake-1.13.patch b/packages/mediacenter/xbmc/patches/xbmc-f70eb43-301-automake-1.13.patch new file mode 100644 index 0000000000..29df211931 --- /dev/null +++ b/packages/mediacenter/xbmc/patches/xbmc-f70eb43-301-automake-1.13.patch @@ -0,0 +1,32 @@ +diff -Naur xbmc-f70eb43/lib/enca/configure.ac xbmc-f70eb43.patch/lib/enca/configure.ac +--- xbmc-f70eb43/lib/enca/configure.ac 2013-01-11 17:06:57.000000000 +0100 ++++ xbmc-f70eb43.patch/lib/enca/configure.ac 2013-01-12 08:44:23.957554815 +0100 +@@ -24,7 +24,7 @@ + test/Makefile \ + tools/Makefile) + +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + AM_INIT_AUTOMAKE([1.8 gnits check-news dist-bzip2]) + AM_ACLOCAL_INCLUDE(m4) + AM_MAINTAINER_MODE +@@ -40,7 +40,6 @@ + AC_AIX + AC_ISC_POSIX + AC_PROG_LIBTOOL +-AM_PROG_CC_STDC + AM_PROG_CC_C_O + AC_PROG_INSTALL + AC_PROG_LN_S +diff -Naur xbmc-f70eb43/lib/libdvd/libdvdcss/configure.ac xbmc-f70eb43.patch/lib/libdvd/libdvdcss/configure.ac +--- xbmc-f70eb43/lib/libdvd/libdvdcss/configure.ac 2013-01-11 17:06:58.000000000 +0100 ++++ xbmc-f70eb43.patch/lib/libdvd/libdvdcss/configure.ac 2013-01-12 08:45:45.361975774 +0100 +@@ -5,7 +5,7 @@ + AC_CANONICAL_SYSTEM + + AM_INIT_AUTOMAKE(libdvdcss, 1.2.10) +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + + AC_PROG_CC + AC_STDC_HEADERS From a904b052c647f95121b680042038349ca1aa6947 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:58:09 +0100 Subject: [PATCH 25/67] libaacs: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../patches/libaacs-0.5.0-automake_1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/multimedia/libaacs/patches/libaacs-0.5.0-automake_1.13.patch diff --git a/packages/multimedia/libaacs/patches/libaacs-0.5.0-automake_1.13.patch b/packages/multimedia/libaacs/patches/libaacs-0.5.0-automake_1.13.patch new file mode 100644 index 0000000000..2434fb0e79 --- /dev/null +++ b/packages/multimedia/libaacs/patches/libaacs-0.5.0-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur libaacs-0.5.0-old/configure.ac libaacs-0.5.0-new/configure.ac +--- libaacs-0.5.0-old/configure.ac 2012-08-17 04:28:42.000000000 -0700 ++++ libaacs-0.5.0-new/configure.ac 2013-01-03 21:08:26.000000000 -0800 +@@ -24,7 +24,7 @@ + AC_CONFIG_MACRO_DIR([m4]) + AC_CANONICAL_SYSTEM + AM_INIT_AUTOMAKE([foreign]) +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + AM_MAINTAINER_MODE + + SET_FEATURES="-D_ISOC99_SOURCE -D_POSIX_C_SOURCE=200112L" From 0b08227b1b19a2669742598f9399f4e55da39bf1 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:58:23 +0100 Subject: [PATCH 26/67] libbluray: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../patches/libbluray-0.2.3-automake_1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/multimedia/libbluray/patches/libbluray-0.2.3-automake_1.13.patch diff --git a/packages/multimedia/libbluray/patches/libbluray-0.2.3-automake_1.13.patch b/packages/multimedia/libbluray/patches/libbluray-0.2.3-automake_1.13.patch new file mode 100644 index 0000000000..ac8bdb47c4 --- /dev/null +++ b/packages/multimedia/libbluray/patches/libbluray-0.2.3-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur libbluray-0.2.3-old/configure.ac libbluray-0.2.3-new/configure.ac +--- libbluray-0.2.3-old/configure.ac 2012-08-17 04:27:32.000000000 -0700 ++++ libbluray-0.2.3-new/configure.ac 2012-12-30 15:02:51.000000000 -0800 +@@ -22,7 +22,7 @@ + AC_CONFIG_MACRO_DIR([m4]) + AC_CANONICAL_SYSTEM + AM_INIT_AUTOMAKE([foreign tar-ustar]) +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + + case "${host_os}" in + "") From 27956b74cd21a0aa856cdaafb3cbfd13ed002a3e Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:58:45 +0100 Subject: [PATCH 27/67] libva-driver-intel: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../libva-driver-intel-1.0.19-automake_1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/multimedia/libva-driver-intel/patches.upstream/libva-driver-intel-1.0.19-automake_1.13.patch diff --git a/packages/multimedia/libva-driver-intel/patches.upstream/libva-driver-intel-1.0.19-automake_1.13.patch b/packages/multimedia/libva-driver-intel/patches.upstream/libva-driver-intel-1.0.19-automake_1.13.patch new file mode 100644 index 0000000000..9d2f4e09ff --- /dev/null +++ b/packages/multimedia/libva-driver-intel/patches.upstream/libva-driver-intel-1.0.19-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur intel-driver-1.0.19-old/configure.ac intel-driver-1.0.19-new/configure.ac +--- intel-driver-1.0.19-old/configure.ac 2012-11-08 17:43:34.000000000 -0800 ++++ intel-driver-1.0.19-new/configure.ac 2013-01-03 17:19:13.000000000 -0800 +@@ -22,7 +22,7 @@ + AC_CONFIG_SRCDIR([Makefile.am]) + AM_INIT_AUTOMAKE([1.9 tar-ustar]) + +-AM_CONFIG_HEADER([src/config.h]) ++AC_CONFIG_HEADERS([src/config.h]) + + INTEL_DRIVER_MAJOR_VERSION=intel_driver_major_version + INTEL_DRIVER_MINOR_VERSION=intel_driver_minor_version From 262bce8fedddb7e57aa045d125d8182bf817e5a1 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:58:54 +0100 Subject: [PATCH 28/67] libva: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../libva/patches/libva-1.1.0-automake_1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/multimedia/libva/patches/libva-1.1.0-automake_1.13.patch diff --git a/packages/multimedia/libva/patches/libva-1.1.0-automake_1.13.patch b/packages/multimedia/libva/patches/libva-1.1.0-automake_1.13.patch new file mode 100644 index 0000000000..1024bb328b --- /dev/null +++ b/packages/multimedia/libva/patches/libva-1.1.0-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur libva-1.1.0-old/configure.ac libva-1.1.0-new/configure.ac +--- libva-1.1.0-old/configure.ac 2012-10-04 06:30:51.000000000 -0700 ++++ libva-1.1.0-new/configure.ac 2012-12-30 15:06:37.000000000 -0800 +@@ -86,7 +86,7 @@ + AC_CONFIG_MACRO_DIR([m4]) + AM_INIT_AUTOMAKE([dist-bzip2]) + +-AM_CONFIG_HEADER([config.h]) ++AC_CONFIG_HEADERS([config.h]) + m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) + + TODAY="`LC_ALL=C date +'%a, %d %b %Y %X %z'`" From 216f0e51dd721596a8e3c668cd7ae171ebc50dbb Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:59:10 +0100 Subject: [PATCH 29/67] libvdpau: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../patches/libvdpau-0.5-automake_1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/multimedia/libvdpau/patches/libvdpau-0.5-automake_1.13.patch diff --git a/packages/multimedia/libvdpau/patches/libvdpau-0.5-automake_1.13.patch b/packages/multimedia/libvdpau/patches/libvdpau-0.5-automake_1.13.patch new file mode 100644 index 0000000000..796cc6ff9d --- /dev/null +++ b/packages/multimedia/libvdpau/patches/libvdpau-0.5-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur libvdpau-0.5-old/configure.ac libvdpau-0.5-new/configure.ac +--- libvdpau-0.5-old/configure.ac 2012-09-04 10:26:33.000000000 -0700 ++++ libvdpau-0.5-new/configure.ac 2012-12-29 05:04:20.000000000 -0800 +@@ -4,7 +4,7 @@ + AM_INIT_AUTOMAKE([dist-bzip2 foreign]) + AM_MAINTAINER_MODE + +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + + # Disable static libraries by default. Use --enable-static if you really want + # them. From 138bfc5ef0830de6712dcb9917fd60c88f13efe9 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:59:33 +0100 Subject: [PATCH 30/67] bluez: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../bluez/patches/bluez-4.99-automake_1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/network/bluez/patches/bluez-4.99-automake_1.13.patch diff --git a/packages/network/bluez/patches/bluez-4.99-automake_1.13.patch b/packages/network/bluez/patches/bluez-4.99-automake_1.13.patch new file mode 100644 index 0000000000..68b48872d4 --- /dev/null +++ b/packages/network/bluez/patches/bluez-4.99-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur bluez-4.101-old/configure.ac bluez-4.101-new/configure.ac +--- bluez-4.101-old/configure.ac 2012-06-22 09:36:49.000000000 -0700 ++++ bluez-4.101-new/configure.ac 2012-12-29 08:49:05.000000000 -0800 +@@ -2,7 +2,7 @@ + AC_INIT(bluez, 4.101) + + AM_INIT_AUTOMAKE([foreign subdir-objects color-tests]) +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + + m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) + From fbf0fef514cf43ef823cbc5cfae5aec63e17d670 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:59:48 +0100 Subject: [PATCH 31/67] connman: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../connman/patches/connman-1.10-automake-1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/network/connman/patches/connman-1.10-automake-1.13.patch diff --git a/packages/network/connman/patches/connman-1.10-automake-1.13.patch b/packages/network/connman/patches/connman-1.10-automake-1.13.patch new file mode 100644 index 0000000000..d1fe520c9b --- /dev/null +++ b/packages/network/connman/patches/connman-1.10-automake-1.13.patch @@ -0,0 +1,12 @@ +diff -Naur connman-1.10/configure.ac connman-1.10.patch/configure.ac +--- connman-1.10/configure.ac 2012-12-22 22:52:47.000000000 +0100 ++++ connman-1.10.patch/configure.ac 2013-01-12 00:54:04.975043201 +0100 +@@ -2,7 +2,7 @@ + AC_INIT(connman, 1.10) + + AM_INIT_AUTOMAKE([foreign subdir-objects color-tests]) +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + + m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) + From fe0ff63322a96affc259e45fbce8a8bc404806f4 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 17:59:59 +0100 Subject: [PATCH 32/67] libtirpc: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../patches/libtirpc-0.2.2-automake_1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/network/libtirpc/patches/libtirpc-0.2.2-automake_1.13.patch diff --git a/packages/network/libtirpc/patches/libtirpc-0.2.2-automake_1.13.patch b/packages/network/libtirpc/patches/libtirpc-0.2.2-automake_1.13.patch new file mode 100644 index 0000000000..27f990810b --- /dev/null +++ b/packages/network/libtirpc/patches/libtirpc-0.2.2-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur libtirpc-0.2.2-old/configure.ac libtirpc-0.2.2-new/configure.ac +--- libtirpc-0.2.2-old/configure.ac 2011-05-02 05:10:40.000000000 -0700 ++++ libtirpc-0.2.2-new/configure.ac 2013-01-03 18:59:03.000000000 -0800 +@@ -17,7 +17,7 @@ + fi + + AC_PROG_CC +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + AC_PROG_LIBTOOL + AC_HEADER_DIRENT + AC_PREFIX_DEFAULT(/usr) From 56c0d210a38869cb40afd3157be1c4f4a8e85ddb Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:00:17 +0100 Subject: [PATCH 33/67] ntp: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../ntp/patches/ntp-4.2.6p5-automake_1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/network/ntp/patches/ntp-4.2.6p5-automake_1.13.patch diff --git a/packages/network/ntp/patches/ntp-4.2.6p5-automake_1.13.patch b/packages/network/ntp/patches/ntp-4.2.6p5-automake_1.13.patch new file mode 100644 index 0000000000..4ec300922a --- /dev/null +++ b/packages/network/ntp/patches/ntp-4.2.6p5-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur ntp-4.2.6p5-old/configure.ac ntp-4.2.6p5-new/configure.ac +--- ntp-4.2.6p5-old/configure.ac 2011-09-22 20:17:25.000000000 -0700 ++++ ntp-4.2.6p5-new/configure.ac 2013-01-03 19:05:39.000000000 -0800 +@@ -40,7 +40,7 @@ + dnl the 'host' machine is where the resulting stuff runs. + AC_DEFINE_UNQUOTED([STR_SYSTEM], ["$host"], + [canonical system (cpu-vendor-os) of where we should run]) +-AM_CONFIG_HEADER([config.h]) ++AC_CONFIG_HEADERS([config.h]) + dnl AC_ARG_PROGRAM + + ntp_atom_ok=${ntp_atom_ok=no} From 991876d2197717479199b0e6250f1f245ff7bd9b Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:00:27 +0100 Subject: [PATCH 34/67] openvpn: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../patches/openvpn-2.2.2-automake-1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/network/openvpn/patches/openvpn-2.2.2-automake-1.13.patch diff --git a/packages/network/openvpn/patches/openvpn-2.2.2-automake-1.13.patch b/packages/network/openvpn/patches/openvpn-2.2.2-automake-1.13.patch new file mode 100644 index 0000000000..f693197228 --- /dev/null +++ b/packages/network/openvpn/patches/openvpn-2.2.2-automake-1.13.patch @@ -0,0 +1,12 @@ +diff -Naur openvpn-2.2.2/configure.ac openvpn-2.2.2.patch/configure.ac +--- openvpn-2.2.2/configure.ac 2011-12-13 17:58:56.000000000 +0100 ++++ openvpn-2.2.2.patch/configure.ac 2013-01-12 00:50:12.273055490 +0100 +@@ -27,7 +27,7 @@ + + m4_include(version.m4) + AC_INIT([OpenVPN], [PRODUCT_VERSION], [openvpn-users@lists.sourceforge.net], [openvpn]) +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + AC_CONFIG_SRCDIR(syshead.h) + + dnl Guess host type. From d32b90032bd0a67dd9aed411650ecd70b60ea312 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:00:43 +0100 Subject: [PATCH 35/67] enca: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../patches/enca-1.14-automake-1.13.patch | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 packages/other/enca/patches/enca-1.14-automake-1.13.patch diff --git a/packages/other/enca/patches/enca-1.14-automake-1.13.patch b/packages/other/enca/patches/enca-1.14-automake-1.13.patch new file mode 100644 index 0000000000..9fbceb1fb2 --- /dev/null +++ b/packages/other/enca/patches/enca-1.14-automake-1.13.patch @@ -0,0 +1,31 @@ +diff -Naur enca-1.14/configure.ac enca-1.14.patch/configure.ac +--- enca-1.14/configure.ac 2012-09-11 11:11:11.000000000 +0200 ++++ enca-1.14.patch/configure.ac 2013-01-12 02:11:57.334033091 +0100 +@@ -24,7 +24,7 @@ + test/Makefile \ + tools/Makefile) + +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + AM_INIT_AUTOMAKE([1.8 gnits check-news dist-bzip2]) + AM_ACLOCAL_INCLUDE(m4) + AM_MAINTAINER_MODE +@@ -40,7 +40,6 @@ + AC_AIX + AC_ISC_POSIX + AC_PROG_LIBTOOL +-AM_PROG_CC_STDC + AM_PROG_CC_C_O + AC_PROG_INSTALL + AC_PROG_LN_S +diff -Naur enca-1.14/m4/typevar.m4 enca-1.14.patch/m4/typevar.m4 +--- enca-1.14/m4/typevar.m4 2009-08-25 10:33:34.000000000 +0200 ++++ enca-1.14.patch/m4/typevar.m4 2013-01-12 02:16:24.590820559 +0100 +@@ -6,7 +6,6 @@ + ## defined in errno.h + AC_DEFUN([ye_CHECK_VAR_PROGRAM_INVOCATION_SHORT_NAME], + [AC_REQUIRE([AC_PROG_CC])dnl +-AC_REQUIRE([AM_PROG_CC_STDC])dnl + dnl + + dnl Check for program_invocation_short_name (present on GNU systems only?) From 81ac680eac330729752e1b19ba44e12e4202e19a Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:01:28 +0100 Subject: [PATCH 36/67] pygobject: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../pygobject-2.28.6-automake-1.13.patch | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 packages/python/devel/pygobject/patches/pygobject-2.28.6-automake-1.13.patch diff --git a/packages/python/devel/pygobject/patches/pygobject-2.28.6-automake-1.13.patch b/packages/python/devel/pygobject/patches/pygobject-2.28.6-automake-1.13.patch new file mode 100644 index 0000000000..5eb12e66e0 --- /dev/null +++ b/packages/python/devel/pygobject/patches/pygobject-2.28.6-automake-1.13.patch @@ -0,0 +1,20 @@ +diff -Naur pygobject-2.28.6/configure.ac pygobject-2.28.6.patch/configure.ac +--- pygobject-2.28.6/configure.ac 2011-06-13 18:33:56.000000000 +0200 ++++ pygobject-2.28.6.patch/configure.ac 2013-01-12 01:03:44.085557166 +0100 +@@ -35,7 +35,7 @@ + AC_DEFINE(PYGOBJECT_MICRO_VERSION, pygobject_micro_version, [pygobject micro version]) + AC_SUBST(PYGOBJECT_MICRO_VERSION, pygobject_micro_version) + +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES(yes)]) + AM_INIT_AUTOMAKE(foreign) + AM_MAINTAINER_MODE +@@ -82,7 +82,6 @@ + m4_ifdef([LT_OUTPUT], [LT_OUTPUT]) + AC_ISC_POSIX + AC_PROG_CC +-AM_PROG_CC_STDC + AM_PROG_CC_C_O + + # check that we have the minimum version of python necisary to build From 08476335bf9b32943a2bdcc292f493db88db6886 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:01:57 +0100 Subject: [PATCH 37/67] dbus-python: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../patches/dbus-python-1.1.1-automake-1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/python/system/dbus-python/patches/dbus-python-1.1.1-automake-1.13.patch diff --git a/packages/python/system/dbus-python/patches/dbus-python-1.1.1-automake-1.13.patch b/packages/python/system/dbus-python/patches/dbus-python-1.1.1-automake-1.13.patch new file mode 100644 index 0000000000..2ad113e46f --- /dev/null +++ b/packages/python/system/dbus-python/patches/dbus-python-1.1.1-automake-1.13.patch @@ -0,0 +1,12 @@ +diff -Naur dbus-python-1.1.1/configure.ac dbus-python-1.1.1.patch/configure.ac +--- dbus-python-1.1.1/configure.ac 2012-06-25 18:02:12.000000000 +0200 ++++ dbus-python-1.1.1.patch/configure.ac 2013-01-12 01:09:51.235915152 +0100 +@@ -29,7 +29,7 @@ + AC_SUBST(DBUS_PYTHON_MICRO_VERSION, dbus_python_micro_version) + + AC_CONFIG_SRCDIR([_dbus_bindings/module.c]) +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + + AM_INIT_AUTOMAKE([1.9 -Wno-portability]) + From fc428e25903d78569d5503fe969eeb4646e2495b Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:03:15 +0100 Subject: [PATCH 38/67] gnutls: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../gnutls/patches/gnutls-3.0.25-automake-1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/security/gnutls/patches/gnutls-3.0.25-automake-1.13.patch diff --git a/packages/security/gnutls/patches/gnutls-3.0.25-automake-1.13.patch b/packages/security/gnutls/patches/gnutls-3.0.25-automake-1.13.patch new file mode 100644 index 0000000000..adee8bbb49 --- /dev/null +++ b/packages/security/gnutls/patches/gnutls-3.0.25-automake-1.13.patch @@ -0,0 +1,12 @@ +diff -Naur gnutls-3.0.25/configure.ac gnutls-3.0.25.patch/configure.ac +--- gnutls-3.0.25/configure.ac 2012-10-12 17:08:55.000000000 +0200 ++++ gnutls-3.0.25.patch/configure.ac 2013-01-12 02:31:30.475591948 +0100 +@@ -27,7 +27,7 @@ + + AM_INIT_AUTOMAKE([1.11 no-dist-gzip dist-xz dist-lzip -Wall -Werror -Wno-override]) + m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + + AC_MSG_RESULT([*** + *** Checking for compilation programs... From babd9deabfbac95ad08027c6f1c4245608325533 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:03:15 +0100 Subject: [PATCH 39/67] libgcrypt: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../patches/libgcrypt-1.5.0-automake_1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/security/libgcrypt/patches/libgcrypt-1.5.0-automake_1.13.patch diff --git a/packages/security/libgcrypt/patches/libgcrypt-1.5.0-automake_1.13.patch b/packages/security/libgcrypt/patches/libgcrypt-1.5.0-automake_1.13.patch new file mode 100644 index 0000000000..6a2dc90136 --- /dev/null +++ b/packages/security/libgcrypt/patches/libgcrypt-1.5.0-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur libgcrypt-1.5.0-old/configure.ac libgcrypt-1.5.0-new/configure.ac +--- libgcrypt-1.5.0-old/configure.ac 2011-06-29 01:53:22.000000000 -0700 ++++ libgcrypt-1.5.0-new/configure.ac 2013-01-03 21:04:51.000000000 -0800 +@@ -59,7 +59,7 @@ + + AC_CONFIG_SRCDIR([src/libgcrypt.vers]) + AM_INIT_AUTOMAKE([]) +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + AC_CONFIG_MACRO_DIR([m4]) + AC_CONFIG_LIBOBJ_DIR([compat]) + AC_CANONICAL_HOST From 1848de6e0da5abda372524bb2344af241bb7442e Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:03:15 +0100 Subject: [PATCH 40/67] polkit: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../patches/polkit-0.104-automake-1.13.patch | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 packages/security/polkit/patches/polkit-0.104-automake-1.13.patch diff --git a/packages/security/polkit/patches/polkit-0.104-automake-1.13.patch b/packages/security/polkit/patches/polkit-0.104-automake-1.13.patch new file mode 100644 index 0000000000..c95e3859a9 --- /dev/null +++ b/packages/security/polkit/patches/polkit-0.104-automake-1.13.patch @@ -0,0 +1,20 @@ +diff -Naur polkit-0.104/configure.ac polkit-0.104.patch/configure.ac +--- polkit-0.104/configure.ac 2012-01-03 17:25:49.000000000 +0100 ++++ polkit-0.104.patch/configure.ac 2013-01-12 09:45:00.437875775 +0100 +@@ -3,7 +3,7 @@ + AC_PREREQ(2.59c) + AC_INIT(polkit, 0.104, http://lists.freedesktop.org/mailman/listinfo/polkit-devel) + AM_INIT_AUTOMAKE(polkit, 0.104) +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + AM_MAINTAINER_MODE + + m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) +@@ -24,7 +24,6 @@ + + AC_ISC_POSIX + AC_PROG_CC +-AM_PROG_CC_STDC + AC_HEADER_STDC + AM_PROG_LIBTOOL + AC_PROG_MAKE_SET From 910e59ca9eb00f4375d083be2932752145ab35aa Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:03:15 +0100 Subject: [PATCH 41/67] sshguard: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../patches/sshguard-1.5-automake-1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/security/sshguard/patches/sshguard-1.5-automake-1.13.patch diff --git a/packages/security/sshguard/patches/sshguard-1.5-automake-1.13.patch b/packages/security/sshguard/patches/sshguard-1.5-automake-1.13.patch new file mode 100644 index 0000000000..bcf8073342 --- /dev/null +++ b/packages/security/sshguard/patches/sshguard-1.5-automake-1.13.patch @@ -0,0 +1,12 @@ +diff -Naur sshguard-1.5/configure.ac sshguard-1.5.patch/configure.ac +--- sshguard-1.5/configure.ac 2011-02-09 13:01:47.000000000 +0100 ++++ sshguard-1.5.patch/configure.ac 2013-01-12 01:13:22.735102536 +0100 +@@ -5,7 +5,7 @@ + AC_INIT(sshguard, 1.5, mij@sshguard.net) + AM_INIT_AUTOMAKE + AC_CONFIG_SRCDIR([src/simclist.c]) +-AM_CONFIG_HEADER([src/config.h]) ++AC_CONFIG_HEADERS([src/config.h]) + # test if we are on Solaris, which requires outstanding practices + AC_CANONICAL_BUILD + AS_CASE([$build_os], From f5e49af0c7886605887058a79cbc7ecaf5b1f81f Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:04:38 +0100 Subject: [PATCH 42/67] fuse: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../fuse/patches/fuse-2.9.2-automake-1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/sysutils/fuse/patches/fuse-2.9.2-automake-1.13.patch diff --git a/packages/sysutils/fuse/patches/fuse-2.9.2-automake-1.13.patch b/packages/sysutils/fuse/patches/fuse-2.9.2-automake-1.13.patch new file mode 100644 index 0000000000..80f3527a17 --- /dev/null +++ b/packages/sysutils/fuse/patches/fuse-2.9.2-automake-1.13.patch @@ -0,0 +1,12 @@ +diff -Naur fuse-2.9.2/configure.in fuse-2.9.2.patch/configure.in +--- fuse-2.9.2/configure.in 2012-10-01 17:58:00.000000000 +0200 ++++ fuse-2.9.2.patch/configure.in 2013-01-12 16:56:37.469681997 +0100 +@@ -4,7 +4,7 @@ + AC_CANONICAL_TARGET + AM_INIT_AUTOMAKE + m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES(yes)]) +-AM_CONFIG_HEADER(include/config.h) ++AC_CONFIG_HEADERS(include/config.h) + + AC_PROG_LIBTOOL + AC_PROG_CC From 3eacaa69f0b8c6a7473e2b3c8a02ccf4649c487b Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:04:38 +0100 Subject: [PATCH 43/67] libhid: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../libhid/patches/libhid-0.2.16-automake-1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/sysutils/libhid/patches/libhid-0.2.16-automake-1.13.patch diff --git a/packages/sysutils/libhid/patches/libhid-0.2.16-automake-1.13.patch b/packages/sysutils/libhid/patches/libhid-0.2.16-automake-1.13.patch new file mode 100644 index 0000000000..eb2b2245c0 --- /dev/null +++ b/packages/sysutils/libhid/patches/libhid-0.2.16-automake-1.13.patch @@ -0,0 +1,12 @@ +diff -Naur libhid-0.2.16/configure.ac libhid-0.2.16.patch/configure.ac +--- libhid-0.2.16/configure.ac 2007-04-01 22:32:10.000000000 +0200 ++++ libhid-0.2.16.patch/configure.ac 2013-01-12 17:23:25.129691249 +0100 +@@ -21,7 +21,7 @@ + + AC_INIT(MD_INIT_NAME, MD_INIT_VERSION, MD_INIT_ADDRESS) + +-AM_CONFIG_HEADER([config.h]) ++AC_CONFIG_HEADERS([config.h]) + AC_CONFIG_SRCDIR([include/hid.h]) + AC_CONFIG_AUX_DIR([.]) + From 98fd39b9e8db618cc9f401efd1d6d39fdac6cfb1 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:04:38 +0100 Subject: [PATCH 44/67] libusb-compat: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../patches/libusb-compat-0.1.4-automake_1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/sysutils/libusb-compat/patches/libusb-compat-0.1.4-automake_1.13.patch diff --git a/packages/sysutils/libusb-compat/patches/libusb-compat-0.1.4-automake_1.13.patch b/packages/sysutils/libusb-compat/patches/libusb-compat-0.1.4-automake_1.13.patch new file mode 100644 index 0000000000..fd3023e88d --- /dev/null +++ b/packages/sysutils/libusb-compat/patches/libusb-compat-0.1.4-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur libusb-compat-0.1.4-old/configure.ac libusb-compat-0.1.4-new/configure.ac +--- libusb-compat-0.1.4-old/configure.ac 2012-04-23 22:45:46.000000000 -0700 ++++ libusb-compat-0.1.4-new/configure.ac 2012-12-29 08:44:33.000000000 -0800 +@@ -1,7 +1,7 @@ + AC_INIT([libusb-compat], [0.1.4]) + AM_INIT_AUTOMAKE + AC_CONFIG_SRCDIR([libusb/core.c]) +-AM_CONFIG_HEADER([config.h]) ++AC_CONFIG_HEADERS([config.h]) + AC_CONFIG_MACRO_DIR([m4]) + + AC_PREREQ([2.50]) From 36adf16fa10fcc73e4cf31cb692406d9a46450f7 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:04:38 +0100 Subject: [PATCH 45/67] libusb: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../libusb/patches/libusb-1.0.9-automake_1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/sysutils/libusb/patches/libusb-1.0.9-automake_1.13.patch diff --git a/packages/sysutils/libusb/patches/libusb-1.0.9-automake_1.13.patch b/packages/sysutils/libusb/patches/libusb-1.0.9-automake_1.13.patch new file mode 100644 index 0000000000..5772604d7d --- /dev/null +++ b/packages/sysutils/libusb/patches/libusb-1.0.9-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur libusb-1.0.9-old/configure.ac libusb-1.0.9-new/configure.ac +--- libusb-1.0.9-old/configure.ac 2012-04-19 23:44:27.000000000 -0700 ++++ libusb-1.0.9-new/configure.ac 2012-12-29 06:46:36.000000000 -0800 +@@ -31,7 +31,7 @@ + + AC_CONFIG_SRCDIR([libusb/core.c]) + AC_CONFIG_MACRO_DIR([m4]) +-AM_CONFIG_HEADER([config.h]) ++AC_CONFIG_HEADERS([config.h]) + m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) + + AC_PREREQ([2.50]) From 58e4b02ad945c05dec79b74a8e2a62ad7559cd6c Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:04:38 +0100 Subject: [PATCH 46/67] pm-utils: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../patches/pm-utils-1.4.1-automake-1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/sysutils/pm-utils/patches/pm-utils-1.4.1-automake-1.13.patch diff --git a/packages/sysutils/pm-utils/patches/pm-utils-1.4.1-automake-1.13.patch b/packages/sysutils/pm-utils/patches/pm-utils-1.4.1-automake-1.13.patch new file mode 100644 index 0000000000..3d2e1b407e --- /dev/null +++ b/packages/sysutils/pm-utils/patches/pm-utils-1.4.1-automake-1.13.patch @@ -0,0 +1,12 @@ +diff -Naur pm-utils-1.4.1/configure.ac pm-utils-1.4.1.patch/configure.ac +--- pm-utils-1.4.1/configure.ac 2010-07-04 16:50:59.000000000 +0200 ++++ pm-utils-1.4.1.patch/configure.ac 2013-01-12 16:48:21.954203172 +0100 +@@ -2,7 +2,7 @@ + AC_INIT(pm-utils, 1.4.1) + AC_CONFIG_SRCDIR(src) + AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION) +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + + AC_PROG_CC + AC_PROG_LN_S From 5515fc9418dd752723d68643beb42dc88bb31c56 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:04:38 +0100 Subject: [PATCH 47/67] sg3_utils: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../sg3_utils/patches/sg3_utils-1.34-automake.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/sysutils/sg3_utils/patches/sg3_utils-1.34-automake.patch diff --git a/packages/sysutils/sg3_utils/patches/sg3_utils-1.34-automake.patch b/packages/sysutils/sg3_utils/patches/sg3_utils-1.34-automake.patch new file mode 100644 index 0000000000..2347eb044b --- /dev/null +++ b/packages/sysutils/sg3_utils/patches/sg3_utils-1.34-automake.patch @@ -0,0 +1,12 @@ +diff -Naur sg3_utils-1.34/configure.ac sg3_utils-1.34.patch/configure.ac +--- sg3_utils-1.34/configure.ac 2012-03-12 18:03:41.000000000 +0100 ++++ sg3_utils-1.34.patch/configure.ac 2013-01-12 09:29:35.482005702 +0100 +@@ -2,7 +2,7 @@ + + AM_INIT_AUTOMAKE + AM_MAINTAINER_MODE +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + + AC_PROG_CC + # AC_PROG_CXX From 681b67ab426e603d6063984421c645ddc7b9a2d2 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:04:39 +0100 Subject: [PATCH 48/67] udisks: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../patches/udisks-1.0.4-automake-1.13.patch | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 packages/sysutils/udisks/patches/udisks-1.0.4-automake-1.13.patch diff --git a/packages/sysutils/udisks/patches/udisks-1.0.4-automake-1.13.patch b/packages/sysutils/udisks/patches/udisks-1.0.4-automake-1.13.patch new file mode 100644 index 0000000000..406bf50dcd --- /dev/null +++ b/packages/sysutils/udisks/patches/udisks-1.0.4-automake-1.13.patch @@ -0,0 +1,17 @@ +diff -Naur udisks-1.0.4/configure.ac udisks-1.0.4.patch/configure.ac +--- udisks-1.0.4/configure.ac 2011-08-26 17:08:35.000000000 +0200 ++++ udisks-1.0.4.patch/configure.ac 2013-01-12 16:43:38.483117569 +0100 +@@ -3,12 +3,11 @@ + AC_PREREQ(2.59c) + AC_INIT(udisks, 1.0.4, http://bugs.freedesktop.org/enter_bug.cgi?product=udisks) + AM_INIT_AUTOMAKE(udisks, 1.0.4) +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + AM_MAINTAINER_MODE + + AC_ISC_POSIX + AC_PROG_CC +-AM_PROG_CC_STDC + AC_HEADER_STDC + AM_PROG_LIBTOOL + AC_PROG_MAKE_SET From 0f2130575a11f9dc6eba71a5f747857991647b15 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:05:12 +0100 Subject: [PATCH 49/67] lirc: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- packages/sysutils/remote/lirc/build | 1 + packages/sysutils/remote/lirc/meta | 2 +- .../lirc/patches/lirc-0.9.0-automake_1.13.patch | 12 ++++++++++++ 3 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 packages/sysutils/remote/lirc/patches/lirc-0.9.0-automake_1.13.patch diff --git a/packages/sysutils/remote/lirc/build b/packages/sysutils/remote/lirc/build index c0672587e9..b1b9713a41 100755 --- a/packages/sysutils/remote/lirc/build +++ b/packages/sysutils/remote/lirc/build @@ -34,6 +34,7 @@ export ac_cv_lib_util_forkpty=no export MAKEFLAGS=-j1 cd $PKG_BUILD +mkdir -p m4 && do_autoreconf ./configure --host=$TARGET_NAME \ --build=$HOST_NAME \ --prefix=/usr \ diff --git a/packages/sysutils/remote/lirc/meta b/packages/sysutils/remote/lirc/meta index 240d4370cd..60bc022467 100644 --- a/packages/sysutils/remote/lirc/meta +++ b/packages/sysutils/remote/lirc/meta @@ -33,4 +33,4 @@ PKG_SHORTDESC="lirc: Linux Infrared Remote Control" PKG_LONGDESC="LIRC is a package that allows you to decode and send infra-red signals of many (but not all) commonly used remote controls." PKG_IS_ADDON="no" -PKG_AUTORECONF="yes" +PKG_AUTORECONF="no" diff --git a/packages/sysutils/remote/lirc/patches/lirc-0.9.0-automake_1.13.patch b/packages/sysutils/remote/lirc/patches/lirc-0.9.0-automake_1.13.patch new file mode 100644 index 0000000000..3c8bc3076f --- /dev/null +++ b/packages/sysutils/remote/lirc/patches/lirc-0.9.0-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur lirc-0.9.0-old/configure.ac lirc-0.9.0-new/configure.ac +--- lirc-0.9.0-old/configure.ac 2011-03-25 15:28:18.000000000 -0700 ++++ lirc-0.9.0-new/configure.ac 2012-12-31 05:01:51.000000000 -0800 +@@ -8,7 +8,7 @@ + AC_CONFIG_MACRO_DIR([m4]) + + AM_INIT_AUTOMAKE(lirc, 0.9.1-git) +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + + CFLAGS="${CFLAGS--O2 -g -Wall}" + From 6b40a895f36db291458dc8b6b772e885f00c1564 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:05:50 +0100 Subject: [PATCH 50/67] cloog: update to cloog-0.18.0 Signed-off-by: Stephan Raue --- packages/toolchain/math/cloog/meta | 4 ++-- ...loog-0.17.0-automake.patch => cloog-0.18.0-automake.patch} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename packages/toolchain/math/cloog/patches/{cloog-0.17.0-automake.patch => cloog-0.18.0-automake.patch} (100%) diff --git a/packages/toolchain/math/cloog/meta b/packages/toolchain/math/cloog/meta index bffd2ac013..d20dc209e8 100644 --- a/packages/toolchain/math/cloog/meta +++ b/packages/toolchain/math/cloog/meta @@ -19,7 +19,7 @@ ################################################################################ PKG_NAME="cloog" -PKG_VERSION="0.17.0" +PKG_VERSION="0.18.0" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="LGPL" @@ -33,4 +33,4 @@ PKG_SHORTDESC="cloog: a free software and library to generate code for scanning PKG_LONGDESC="CLooG is a library to generate code for scanning Z-polyhedra. In other words, it finds code that reaches each integral point of one or more parameterized polyhedra. GCC links with this library in order to enable the new loop generation code known as Graphite." PKG_IS_ADDON="no" -PKG_AUTORECONF="yes" +PKG_AUTORECONF="no" #TODO: automake 1.13 support must be fixed diff --git a/packages/toolchain/math/cloog/patches/cloog-0.17.0-automake.patch b/packages/toolchain/math/cloog/patches/cloog-0.18.0-automake.patch similarity index 100% rename from packages/toolchain/math/cloog/patches/cloog-0.17.0-automake.patch rename to packages/toolchain/math/cloog/patches/cloog-0.18.0-automake.patch From 71c10f0670c789fe10846b88dea34a4a592f20e8 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:06:18 +0100 Subject: [PATCH 51/67] binutils: add cloog-0.18 support Signed-off-by: Stephan Raue --- .../devel/binutils/patches/binutils-2.23.1-cloog-0.17.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/toolchain/devel/binutils/patches/binutils-2.23.1-cloog-0.17.patch b/packages/toolchain/devel/binutils/patches/binutils-2.23.1-cloog-0.17.patch index add707113e..b98cb98816 100644 --- a/packages/toolchain/devel/binutils/patches/binutils-2.23.1-cloog-0.17.patch +++ b/packages/toolchain/devel/binutils/patches/binutils-2.23.1-cloog-0.17.patch @@ -7,7 +7,7 @@ diff -Naur binutils-2.22/configure binutils-2.22.patch/configure #if CLOOG_VERSION_MAJOR != 0 \ - || CLOOG_VERSION_MINOR != 16 \ - || CLOOG_VERSION_REVISION < 1 -+ || CLOOG_VERSION_MINOR != 17 ++ || CLOOG_VERSION_MINOR != 18 choke me #endif ; @@ -19,7 +19,7 @@ diff -Naur binutils-2.22/configure.ac binutils-2.22.patch/configure.ac dnl If we use CLooG-Legacy, the provided version information is dnl ignored. - CLOOG_CHECK_VERSION(0,16,1) -+ CLOOG_CHECK_VERSION(0,17,0) ++ CLOOG_CHECK_VERSION(0,18,0) dnl Only execute fail-action, if CLooG has been requested. CLOOG_IF_FAILED([ From 854fee4321f161788bcb3856b5d454f614f962df Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:06:54 +0100 Subject: [PATCH 52/67] gcc: add cloog-0.18 support Signed-off-by: Stephan Raue --- .../toolchain/lang/gcc/patches/gcc-4.7.2-cloog-0.17.patch | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/toolchain/lang/gcc/patches/gcc-4.7.2-cloog-0.17.patch b/packages/toolchain/lang/gcc/patches/gcc-4.7.2-cloog-0.17.patch index 4b851aaaeb..49d43f1a0e 100644 --- a/packages/toolchain/lang/gcc/patches/gcc-4.7.2-cloog-0.17.patch +++ b/packages/toolchain/lang/gcc/patches/gcc-4.7.2-cloog-0.17.patch @@ -7,8 +7,8 @@ diff -Naur gcc-4.6-20120120-orig/configure gcc-4.6-20120120/configure if test "${cloog_org}" = yes ; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for version 0.16.1 of CLooG" >&5 -$as_echo_n "checking for version 0.16.1 of CLooG... " >&6; } -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for version 0.17 of CLooG" >&5 -+$as_echo_n "checking for version 0.17 of CLooG... " >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for version 0.18 of CLooG" >&5 ++$as_echo_n "checking for version 0.18 of CLooG... " >&6; } if test "${gcc_cv_cloog_ct_0_14_0+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -18,7 +18,7 @@ diff -Naur gcc-4.6-20120120-orig/configure gcc-4.6-20120120/configure #if CLOOG_VERSION_MAJOR != 0 \ - || CLOOG_VERSION_MINOR != 16 \ - || CLOOG_VERSION_REVISION < 1 -+ || CLOOG_VERSION_MINOR != 17 ++ || CLOOG_VERSION_MINOR != 18 choke me #endif ; From b75fb782b093eb8b2eac1c387f237998910be590 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:07:44 +0100 Subject: [PATCH 53/67] curl: add patch to support automake-1.13, remove unneeded patches Signed-off-by: Stephan Raue --- ...l-7.28.0-04_workaround_as_needed_bug.patch | 38 ------------------- ...nutls-put_reset_code_into_else_block.patch | 33 ---------------- .../patches/curl-7.28.1-automake_1.13.patch | 12 ++++++ .../web/curl/patches/curl-7.28.1-m4.patch | 17 +++++++++ 4 files changed, 29 insertions(+), 71 deletions(-) delete mode 100644 packages/web/curl/patches/curl-7.28.0-04_workaround_as_needed_bug.patch delete mode 100644 packages/web/curl/patches/curl-7.28.0-99_gnutls-put_reset_code_into_else_block.patch create mode 100644 packages/web/curl/patches/curl-7.28.1-automake_1.13.patch create mode 100644 packages/web/curl/patches/curl-7.28.1-m4.patch diff --git a/packages/web/curl/patches/curl-7.28.0-04_workaround_as_needed_bug.patch b/packages/web/curl/patches/curl-7.28.0-04_workaround_as_needed_bug.patch deleted file mode 100644 index 46a397668f..0000000000 --- a/packages/web/curl/patches/curl-7.28.0-04_workaround_as_needed_bug.patch +++ /dev/null @@ -1,38 +0,0 @@ -Description: Work around libtool --as-needed reordering bug -Origin: vendor -Bug-Debian: http://bugs.debian.org/347650 -Forwarded: not-needed -Author: Alessandro Ghedini -Reviewed-by: Alessandro Ghedini -Last-Update: 2013-03-22 - ---- a/ltmain.sh -+++ b/ltmain.sh -@@ -5800,6 +5800,11 @@ - arg=$func_stripname_result - ;; - -+ -Wl,--as-needed|-Wl,--no-as-needed) -+ deplibs="$deplibs $arg" -+ continue -+ ;; -+ - -Wl,*) - func_stripname '-Wl,' '' "$arg" - args=$func_stripname_result -@@ -6163,6 +6168,15 @@ - lib= - found=no - case $deplib in -+ -Wl,--as-needed|-Wl,--no-as-needed) -+ if test "$linkmode,$pass" = "prog,link"; then -+ compile_deplibs="$deplib $compile_deplibs" -+ finalize_deplibs="$deplib $finalize_deplibs" -+ else -+ deplibs="$deplib $deplibs" -+ fi -+ continue -+ ;; - -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ - |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) - if test "$linkmode,$pass" = "prog,link"; then diff --git a/packages/web/curl/patches/curl-7.28.0-99_gnutls-put_reset_code_into_else_block.patch b/packages/web/curl/patches/curl-7.28.0-99_gnutls-put_reset_code_into_else_block.patch deleted file mode 100644 index e023471c00..0000000000 --- a/packages/web/curl/patches/curl-7.28.0-99_gnutls-put_reset_code_into_else_block.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 1a02e84589efb3f8717d50bdc78d3f369b799198 Mon Sep 17 00:00:00 2001 -From: Alessandro Ghedini -Date: Mon, 15 Oct 2012 16:06:54 +0200 -Subject: [PATCH] gnutls: put reset code into else block - -Bug: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=690551 ---- - lib/gtls.c | 9 +++++---- - 1 file changed, 5 insertions(+), 4 deletions(-) - -diff --git a/lib/gtls.c b/lib/gtls.c -index 3b4dc40..f5f95ae 100644 ---- a/lib/gtls.c -+++ b/lib/gtls.c -@@ -309,10 +309,11 @@ static CURLcode handshake(struct connectdata *conn, - failf(data, "gnutls_handshake() failed: %s", gnutls_strerror(rc)); - return CURLE_SSL_CONNECT_ERROR; - } -- -- /* Reset our connect state machine */ -- connssl->connecting_state = ssl_connect_1; -- return CURLE_OK; -+ else { -+ /* Reset our connect state machine */ -+ connssl->connecting_state = ssl_connect_1; -+ return CURLE_OK; -+ } - } - } - --- -1.7.10 - diff --git a/packages/web/curl/patches/curl-7.28.1-automake_1.13.patch b/packages/web/curl/patches/curl-7.28.1-automake_1.13.patch new file mode 100644 index 0000000000..e09b6376ee --- /dev/null +++ b/packages/web/curl/patches/curl-7.28.1-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur curl-7.28.1-old/configure.ac curl-7.28.1-new/configure.ac +--- curl-7.28.1-old/configure.ac 2012-09-08 13:39:18.000000000 -0700 ++++ curl-7.28.1-new/configure.ac 2012-12-29 10:47:09.000000000 -0800 +@@ -35,7 +35,7 @@ + terms of the curl license; see COPYING for more details]) + + AC_CONFIG_SRCDIR([lib/urldata.h]) +-AM_CONFIG_HEADER(lib/curl_config.h include/curl/curlbuild.h) ++AC_CONFIG_HEADERS(lib/curl_config.h include/curl/curlbuild.h) + AC_CONFIG_MACRO_DIR([m4]) + AM_MAINTAINER_MODE + diff --git a/packages/web/curl/patches/curl-7.28.1-m4.patch b/packages/web/curl/patches/curl-7.28.1-m4.patch new file mode 100644 index 0000000000..ef81cb3182 --- /dev/null +++ b/packages/web/curl/patches/curl-7.28.1-m4.patch @@ -0,0 +1,17 @@ +diff -Naur curl-7.28.1/m4/curl-override.m4 curl-7.28.1.patch/m4/curl-override.m4 +--- curl-7.28.1/m4/curl-override.m4 2012-03-08 20:35:25.000000000 +0100 ++++ curl-7.28.1.patch/m4/curl-override.m4 2013-01-12 02:57:05.467821530 +0100 +@@ -88,13 +88,3 @@ + m4_defun([_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR], + [CURL_CHECK_PATH_SEPARATOR + m4_define([$0],[])]) +- +-dnl Override Autoconf's AC_CONFIG_MACRO_DIR (DIR) +-dnl ------------------------------------------------- +-dnl This is an emulation of Autoconf's 2.61 macro. +-dnl This is done to use fixed macro across Autoconf +-dnl versions, and avoid warnings from modern libtool +-dnl which traces usage of this macro. +- +-AC_DEFUN([AC_CONFIG_MACRO_DIR],[:]) +- From 73164b62dcf5acdc1c7975b38b579d0ef9b7ef3b Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:08:14 +0100 Subject: [PATCH 54/67] libmicrohttpd: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../patches/libmicrohttpd-0.9.24-automake-1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/web/libmicrohttpd/patches/libmicrohttpd-0.9.24-automake-1.13.patch diff --git a/packages/web/libmicrohttpd/patches/libmicrohttpd-0.9.24-automake-1.13.patch b/packages/web/libmicrohttpd/patches/libmicrohttpd-0.9.24-automake-1.13.patch new file mode 100644 index 0000000000..1efdac0203 --- /dev/null +++ b/packages/web/libmicrohttpd/patches/libmicrohttpd-0.9.24-automake-1.13.patch @@ -0,0 +1,12 @@ +diff -Naur libmicrohttpd-0.9.24/configure.ac libmicrohttpd-0.9.24.patch/configure.ac +--- libmicrohttpd-0.9.24/configure.ac 2012-12-25 19:36:51.000000000 +0100 ++++ libmicrohttpd-0.9.24.patch/configure.ac 2013-01-12 03:26:44.632253887 +0100 +@@ -23,7 +23,7 @@ + AC_PREREQ(2.57) + AC_INIT([libmicrohttpd], [0.9.24],[libmicrohttpd@gnu.org]) + AM_INIT_AUTOMAKE([silent-rules]) +-AM_CONFIG_HEADER([MHD_config.h]) ++AC_CONFIG_HEADERS([MHD_config.h]) + AC_CONFIG_MACRO_DIR([m4]) + AH_TOP([#define _GNU_SOURCE 1]) + From 914dc1c8298e41b73dfa15a79a6a601fbac724fc Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:08:47 +0100 Subject: [PATCH 55/67] libX11: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../libX11-1.5.0-disable_nls_tests.patch | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 packages/x11/lib/libX11/patches/libX11-1.5.0-disable_nls_tests.patch diff --git a/packages/x11/lib/libX11/patches/libX11-1.5.0-disable_nls_tests.patch b/packages/x11/lib/libX11/patches/libX11-1.5.0-disable_nls_tests.patch new file mode 100644 index 0000000000..a3217eed44 --- /dev/null +++ b/packages/x11/lib/libX11/patches/libX11-1.5.0-disable_nls_tests.patch @@ -0,0 +1,18 @@ +diff -Naur libX11-1.5.0-old/nls/Makefile.am libX11-1.5.0-new/nls/Makefile.am +--- libX11-1.5.0-old/nls/Makefile.am 2012-06-01 23:37:18.000000000 -0700 ++++ libX11-1.5.0-new/nls/Makefile.am 2012-12-29 04:47:12.000000000 -0800 +@@ -36,10 +36,10 @@ + < locale.dir.l1 > locale.dir.l2 + cat locale.dir.l2 locale.dir.l1 > locale.dir + +-if HAVE_PERL +-TESTS_ENVIRONMENT = $(PERL) +-TESTS = $(srcdir)/compose-check.pl +-endif HAVE_PERL ++# if HAVE_PERL ++# TESTS_ENVIRONMENT = $(PERL) ++# TESTS = $(srcdir)/compose-check.pl ++# endif HAVE_PERL + + + # Per-locale data files From b36c5ef28a4fdeafb6fbc6b0777cce02c5f6fa32 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:09:06 +0100 Subject: [PATCH 56/67] pixman: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../pixman/patches/pixman-0.28.2-automake_1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/x11/lib/pixman/patches/pixman-0.28.2-automake_1.13.patch diff --git a/packages/x11/lib/pixman/patches/pixman-0.28.2-automake_1.13.patch b/packages/x11/lib/pixman/patches/pixman-0.28.2-automake_1.13.patch new file mode 100644 index 0000000000..5c903575fc --- /dev/null +++ b/packages/x11/lib/pixman/patches/pixman-0.28.2-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur pixman-0.28.2-old/configure.ac pixman-0.28.2-new/configure.ac +--- pixman-0.28.2-old/configure.ac 2012-12-10 03:46:36.000000000 -0800 ++++ pixman-0.28.2-new/configure.ac 2012-12-29 05:30:54.000000000 -0800 +@@ -64,7 +64,7 @@ + # Suppress verbose compile lines + m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) + +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + + AC_CANONICAL_HOST + From 77163f36e64bbaa56e732733b4c8e6d77ffbacaf Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:09:30 +0100 Subject: [PATCH 57/67] ratpoison: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../patches/ratpoison-1.4.5-automake_1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/x11/other/ratpoison/patches/ratpoison-1.4.5-automake_1.13.patch diff --git a/packages/x11/other/ratpoison/patches/ratpoison-1.4.5-automake_1.13.patch b/packages/x11/other/ratpoison/patches/ratpoison-1.4.5-automake_1.13.patch new file mode 100644 index 0000000000..2b59f458bd --- /dev/null +++ b/packages/x11/other/ratpoison/patches/ratpoison-1.4.5-automake_1.13.patch @@ -0,0 +1,12 @@ +diff -Naur ratpoison-1.4.5-old/configure.in ratpoison-1.4.5-new/configure.in +--- ratpoison-1.4.5-old/configure.in 2009-07-12 14:01:04.000000000 -0700 ++++ ratpoison-1.4.5-new/configure.in 2013-01-03 19:26:12.000000000 -0800 +@@ -24,7 +24,7 @@ + + AM_MAINTAINER_MODE + +-AM_CONFIG_HEADER(src/config.h) ++AC_CONFIG_HEADERS(src/config.h) + + dnl by default turn off debugging + AC_MSG_CHECKING(whether to enable debugging) From 6c26257d69bc7fb183e0551c31ec4481859930d5 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:10:00 +0100 Subject: [PATCH 58/67] bash: update upstream patches Signed-off-by: Stephan Raue --- .../bash/patches.upstream/bash42-040.patch | 56 ++++++++++++++++++ .../bash/patches.upstream/bash42-041.patch | 47 +++++++++++++++ .../bash/patches.upstream/bash42-042.patch | 57 +++++++++++++++++++ 3 files changed, 160 insertions(+) create mode 100644 packages/sysutils/bash/patches.upstream/bash42-040.patch create mode 100644 packages/sysutils/bash/patches.upstream/bash42-041.patch create mode 100644 packages/sysutils/bash/patches.upstream/bash42-042.patch diff --git a/packages/sysutils/bash/patches.upstream/bash42-040.patch b/packages/sysutils/bash/patches.upstream/bash42-040.patch new file mode 100644 index 0000000000..1de0fe370b --- /dev/null +++ b/packages/sysutils/bash/patches.upstream/bash42-040.patch @@ -0,0 +1,56 @@ + BASH PATCH REPORT + ================= + +Bash-Release: 4.2 +Patch-ID: bash42-040 + +Bug-Reported-by: Andrey Zaitsev +Bug-Reference-ID: +Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2012-04/msg00144.html + +Bug-Description: + +Output redirection applied to builtin commands missed I/O errors if +they happened when the file descriptor was closed, rather than on write +(e.g., like with an out-of-space error on a remote NFS file system). + +Patch (apply with `patch -p0'): + +*** ../bash-4.2-patched/redir.c 2011-01-02 16:00:31.000000000 -0500 +--- redir.c 2012-04-24 20:42:12.000000000 -0400 +*************** +*** 1092,1099 **** + #if defined (BUFFERED_INPUT) + check_bash_input (redirector); +! close_buffered_fd (redirector); + #else /* !BUFFERED_INPUT */ +! close (redirector); + #endif /* !BUFFERED_INPUT */ + } + break; +--- 1092,1101 ---- + #if defined (BUFFERED_INPUT) + check_bash_input (redirector); +! r = close_buffered_fd (redirector); + #else /* !BUFFERED_INPUT */ +! r = close (redirector); + #endif /* !BUFFERED_INPUT */ ++ if (r < 0 && (flags & RX_INTERNAL) && (errno == EIO || errno == ENOSPC)) ++ REDIRECTION_ERROR (r, errno, -1); + } + break; +*** ../bash-4.2-patched/patchlevel.h Sat Jun 12 20:14:48 2010 +--- patchlevel.h Thu Feb 24 21:41:34 2011 +*************** +*** 26,30 **** + looks for to find the patch level (for the sccs version string). */ + +! #define PATCHLEVEL 39 + + #endif /* _PATCHLEVEL_H_ */ +--- 26,30 ---- + looks for to find the patch level (for the sccs version string). */ + +! #define PATCHLEVEL 40 + + #endif /* _PATCHLEVEL_H_ */ diff --git a/packages/sysutils/bash/patches.upstream/bash42-041.patch b/packages/sysutils/bash/patches.upstream/bash42-041.patch new file mode 100644 index 0000000000..37d4ac7043 --- /dev/null +++ b/packages/sysutils/bash/patches.upstream/bash42-041.patch @@ -0,0 +1,47 @@ + BASH PATCH REPORT + ================= + +Bash-Release: 4.2 +Patch-ID: bash42-041 + +Bug-Reported-by: Andrey Borzenkov +Bug-Reference-ID: <20121202205200.2134478e@opensuse.site> +Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2012-12/msg00008.html + +Bug-Description: + +Process substitution incorrectly inherited a flag that inhibited using the +(local) temporary environment for variable lookups if it was providing +the filename to a redirection. The intent the flag is to enforce the +Posix command expansion ordering rules. + +Patch (apply with `patch -p0'): + +*** ../bash-4.2-patched/subst.c 2012-07-14 15:53:20.000000000 -0400 +--- subst.c 2012-12-02 22:26:54.000000000 -0500 +*************** +*** 5125,5128 **** +--- 5129,5136 ---- + #endif /* HAVE_DEV_FD */ + ++ /* subshells shouldn't have this flag, which controls using the temporary ++ environment for variable lookups. */ ++ expanding_redir = 0; ++ + result = parse_and_execute (string, "process substitution", (SEVAL_NONINT|SEVAL_NOHIST)); + +*** ../bash-4.2-patched/patchlevel.h Sat Jun 12 20:14:48 2010 +--- patchlevel.h Thu Feb 24 21:41:34 2011 +*************** +*** 26,30 **** + looks for to find the patch level (for the sccs version string). */ + +! #define PATCHLEVEL 40 + + #endif /* _PATCHLEVEL_H_ */ +--- 26,30 ---- + looks for to find the patch level (for the sccs version string). */ + +! #define PATCHLEVEL 41 + + #endif /* _PATCHLEVEL_H_ */ diff --git a/packages/sysutils/bash/patches.upstream/bash42-042.patch b/packages/sysutils/bash/patches.upstream/bash42-042.patch new file mode 100644 index 0000000000..1ce0cae30d --- /dev/null +++ b/packages/sysutils/bash/patches.upstream/bash42-042.patch @@ -0,0 +1,57 @@ + BASH PATCH REPORT + ================= + +Bash-Release: 4.2 +Patch-ID: bash42-042 + +Bug-Reported-by: Adam Pippin +Bug-Reference-ID: +Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2012-11/msg00087.html + +Bug-Description: + +Compilation failed after specifying the `--enable-minimal-config' option to +configure (more specifically, specifying `--disable-alias'). + +Patch (apply with `patch -p0'): + +*** ../bash-4.2-patched/parse.y 2012-07-08 21:53:33.000000000 -0400 +--- parse.y 2012-10-14 20:20:34.000000000 -0400 +*************** +*** 2394,2397 **** +--- 2392,2396 ---- + to consume the quoted newline and move to the next character in + the expansion. */ ++ #if defined (ALIAS) + if (expanding_alias () && shell_input_line[shell_input_line_index+1] == '\0') + { +*************** +*** 2404,2408 **** + goto next_alias_char; /* and get next character */ + } +! else + goto restart_read; + } +--- 2403,2408 ---- + goto next_alias_char; /* and get next character */ + } +! else +! #endif + goto restart_read; + } + +*** ../bash-4.2-patched/patchlevel.h Sat Jun 12 20:14:48 2010 +--- patchlevel.h Thu Feb 24 21:41:34 2011 +*************** +*** 26,30 **** + looks for to find the patch level (for the sccs version string). */ + +! #define PATCHLEVEL 41 + + #endif /* _PATCHLEVEL_H_ */ +--- 26,30 ---- + looks for to find the patch level (for the sccs version string). */ + +! #define PATCHLEVEL 42 + + #endif /* _PATCHLEVEL_H_ */ From 6b52405a3ab5165a5b18decee344de77e79eb912 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:10:30 +0100 Subject: [PATCH 59/67] bc: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../tools/bc/patches/bc-1.06-automake-1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/tools/bc/patches/bc-1.06-automake-1.13.patch diff --git a/packages/tools/bc/patches/bc-1.06-automake-1.13.patch b/packages/tools/bc/patches/bc-1.06-automake-1.13.patch new file mode 100644 index 0000000000..a6eeba8d09 --- /dev/null +++ b/packages/tools/bc/patches/bc-1.06-automake-1.13.patch @@ -0,0 +1,12 @@ +diff -Naur bc-1.06/configure.in bc-1.06.patch/configure.in +--- bc-1.06/configure.in 2000-07-08 01:34:09.000000000 +0200 ++++ bc-1.06.patch/configure.in 2013-01-12 09:17:40.085444318 +0100 +@@ -1,7 +1,7 @@ + dnl Process this file with autoconf to produce a configure script. + AC_INIT(doc/bc.1) + AM_INIT_AUTOMAKE("bc", "1.06") +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + + AC_DEFINE(DC_VERSION,"1.3") + AC_DEFINE_UNQUOTED(BC_COPYRIGHT, dnl From 95bf6ec8129d1782570c4df748e630a0a9368931 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:11:18 +0100 Subject: [PATCH 60/67] harfbuzz: update to harfbuzz-0.9.10 Signed-off-by: Stephan Raue --- packages/x11/toolkits/harfbuzz/meta | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/x11/toolkits/harfbuzz/meta b/packages/x11/toolkits/harfbuzz/meta index 37e0d25467..5c03ddcb89 100644 --- a/packages/x11/toolkits/harfbuzz/meta +++ b/packages/x11/toolkits/harfbuzz/meta @@ -19,7 +19,7 @@ ################################################################################ PKG_NAME="harfbuzz" -PKG_VERSION="0.9.9" +PKG_VERSION="0.9.10" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="GPL" From 8393b6ba54763ebdf2d5b08851bfc25363c9faa5 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:11:40 +0100 Subject: [PATCH 61/67] libXdamage: update to libXdamage-1.1.4 Signed-off-by: Stephan Raue --- packages/x11/lib/libXdamage/meta | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/x11/lib/libXdamage/meta b/packages/x11/lib/libXdamage/meta index c9fc50e1b7..1414a96c6a 100644 --- a/packages/x11/lib/libXdamage/meta +++ b/packages/x11/lib/libXdamage/meta @@ -19,7 +19,7 @@ ################################################################################ PKG_NAME="libXdamage" -PKG_VERSION="1.1.3" +PKG_VERSION="1.1.4" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="OSS" From 4920d42095e80e7f9af8ab7b2e5a64c3aba3f295 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:12:02 +0100 Subject: [PATCH 62/67] libXcomposite: update to libXcomposite-0.4.4 Signed-off-by: Stephan Raue --- packages/x11/lib/libXcomposite/meta | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/x11/lib/libXcomposite/meta b/packages/x11/lib/libXcomposite/meta index 5f830df415..6fc6fe5b34 100644 --- a/packages/x11/lib/libXcomposite/meta +++ b/packages/x11/lib/libXcomposite/meta @@ -19,7 +19,7 @@ ################################################################################ PKG_NAME="libXcomposite" -PKG_VERSION="0.4.3" +PKG_VERSION="0.4.4" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="OSS" From 6589fcef49d85ca20ec136a2c9475c80713df41b Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:12:36 +0100 Subject: [PATCH 63/67] distribute: update to distribute-0.6.34 Signed-off-by: Stephan Raue --- packages/python/devel/distribute/meta | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/python/devel/distribute/meta b/packages/python/devel/distribute/meta index 221a34440d..217c0bfda6 100644 --- a/packages/python/devel/distribute/meta +++ b/packages/python/devel/distribute/meta @@ -19,7 +19,7 @@ ################################################################################ PKG_NAME="distribute" -PKG_VERSION="0.6.32" +PKG_VERSION="0.6.34" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="OSS" From e7ba6aa09426d0398c98c2ad37c6e1da4193b98a Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:13:14 +0100 Subject: [PATCH 64/67] mpfr: fix autoreconf Signed-off-by: Stephan Raue --- packages/toolchain/math/mpfr/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/toolchain/math/mpfr/build b/packages/toolchain/math/mpfr/build index 4c7ffe673f..f8ea708a47 100755 --- a/packages/toolchain/math/mpfr/build +++ b/packages/toolchain/math/mpfr/build @@ -27,7 +27,7 @@ setup_toolchain host cd $PKG_BUILD libtoolize -autoreconf +autoreconf -vif mkdir -p objdir cd objdir From 3972f4b915129e705d32d1b7dda3f298f6bad67f Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:40:02 +0100 Subject: [PATCH 65/67] pango: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../pango/patches/pango-1.32.5-automake-1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/x11/toolkits/pango/patches/pango-1.32.5-automake-1.13.patch diff --git a/packages/x11/toolkits/pango/patches/pango-1.32.5-automake-1.13.patch b/packages/x11/toolkits/pango/patches/pango-1.32.5-automake-1.13.patch new file mode 100644 index 0000000000..49db1eba0f --- /dev/null +++ b/packages/x11/toolkits/pango/patches/pango-1.32.5-automake-1.13.patch @@ -0,0 +1,12 @@ +diff -Naur pango-1.32.5/configure.ac pango-1.32.5.patch/configure.ac +--- pango-1.32.5/configure.ac 2012-12-07 03:43:25.000000000 +0100 ++++ pango-1.32.5.patch/configure.ac 2013-01-12 18:24:57.601881568 +0100 +@@ -54,7 +54,7 @@ + dnl usage of GNU Make specific features. + AM_INIT_AUTOMAKE(1.9 gnits dist-xz no-dist-gzip -Wno-portability) + m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) +-AM_CONFIG_HEADER([config.h]) ++AC_CONFIG_HEADERS([config.h]) + + + PANGO_VERSION_MAJOR=pango_version_major() From 626a9865e42b5d55b3ecd00655dbc097ab9726c7 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 18:40:19 +0100 Subject: [PATCH 66/67] gtk+: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../patches/gtk+-2.24.14-automake-1.13.patch | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 packages/x11/toolkits/gtk+/patches/gtk+-2.24.14-automake-1.13.patch diff --git a/packages/x11/toolkits/gtk+/patches/gtk+-2.24.14-automake-1.13.patch b/packages/x11/toolkits/gtk+/patches/gtk+-2.24.14-automake-1.13.patch new file mode 100644 index 0000000000..fe4d42a610 --- /dev/null +++ b/packages/x11/toolkits/gtk+/patches/gtk+-2.24.14-automake-1.13.patch @@ -0,0 +1,20 @@ +diff -Naur gtk+-2.24.14/configure.in gtk+-2.24.14.patch/configure.in +--- gtk+-2.24.14/configure.in 2012-12-06 04:46:07.000000000 +0100 ++++ gtk+-2.24.14.patch/configure.in 2013-01-12 18:32:33.863798129 +0100 +@@ -51,7 +51,7 @@ + cflags_set=${CFLAGS+set} + + AM_INIT_AUTOMAKE([no-define -Wno-portability dist-bzip2]) +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + + # Support silent build rules, requires at least automake-1.11. Enable + # by either passing --enable-silent-rules to configure or passing V=0 +@@ -300,7 +300,6 @@ + + # Checks for programs. + AC_ISC_POSIX +-AM_PROG_CC_STDC + AM_PROG_CC_C_O + AC_PROG_INSTALL + AC_PROG_MAKE_SET From 5e38d0bcb652a50741baa12863281550f031ff8e Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 12 Jan 2013 19:12:33 +0100 Subject: [PATCH 67/67] par2cmdline: add patch to support automake-1.13 Signed-off-by: Stephan Raue --- .../patches/par2cmdline-0.4-automake-1.13.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/sysutils/par2cmdline/patches/par2cmdline-0.4-automake-1.13.patch diff --git a/packages/sysutils/par2cmdline/patches/par2cmdline-0.4-automake-1.13.patch b/packages/sysutils/par2cmdline/patches/par2cmdline-0.4-automake-1.13.patch new file mode 100644 index 0000000000..f0dafb7da3 --- /dev/null +++ b/packages/sysutils/par2cmdline/patches/par2cmdline-0.4-automake-1.13.patch @@ -0,0 +1,12 @@ +diff -Naur par2cmdline-0.4/configure.ac par2cmdline-0.4.patch/configure.ac +--- par2cmdline-0.4/configure.ac 2004-04-12 18:42:39.000000000 +0200 ++++ par2cmdline-0.4.patch/configure.ac 2013-01-12 19:09:03.358940253 +0100 +@@ -25,7 +25,7 @@ + + AC_CANONICAL_HOST + +-AM_CONFIG_HEADER([config.h]) ++AC_CONFIG_HEADERS([config.h]) + AM_INIT_AUTOMAKE + +