* [PATCH 01/30] gmp: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 02/30] mpfr: " nitin.a.kamble
` (29 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../gmp/gmp/gmp_fix_for_automake-1.12.patch | 48 ++++++++++++++++++++
meta/recipes-support/gmp/gmp_5.0.4.bb | 6 ++-
2 files changed, 52 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-support/gmp/gmp/gmp_fix_for_automake-1.12.patch
diff --git a/meta/recipes-support/gmp/gmp/gmp_fix_for_automake-1.12.patch b/meta/recipes-support/gmp/gmp/gmp_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..8ff1bcf
--- /dev/null
+++ b/meta/recipes-support/gmp/gmp/gmp_fix_for_automake-1.12.patch
@@ -0,0 +1,48 @@
+Upstream-Status: Pending
+
+automake 1.12 has depricated automatic de-ANSI-fication support
+
+this patch avoids these kinds of errors:
+
+| configure.in:2240: error: automatic de-ANSI-fication support has been removed
+| Makefile.am:28: error: automatic de-ANSI-fication support has been removed
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/02
+
+Index: gmp-5.0.4/configure.in
+===================================================================
+--- gmp-5.0.4.orig/configure.in
++++ gmp-5.0.4/configure.in
+@@ -59,7 +59,7 @@ dnl
+ 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_INIT_AUTOMAKE([1.8 gnu no-dependencies])
+ AM_CONFIG_HEADER(config.h:config.in)
+ AM_MAINTAINER_MODE
+
+@@ -2236,9 +2236,6 @@ fi
+ echo " MPN_PATH=\"$path\""
+
+
+-# Automake ansi2knr support.
+-AM_C_PROTOTYPES
+-
+ CL_AS_NOEXECSTACK
+
+ GMP_PROG_AR
+Index: gmp-5.0.4/Makefile.am
+===================================================================
+--- gmp-5.0.4.orig/Makefile.am
++++ gmp-5.0.4/Makefile.am
+@@ -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".
+ #
+-AUTOMAKE_OPTIONS = 1.8 gnu no-dependencies ansi2knr
++AUTOMAKE_OPTIONS = 1.8 gnu no-dependencies
+
+
+ # Libtool -version-info for libgmp.la and libmp.la. See "Versioning" in the
diff --git a/meta/recipes-support/gmp/gmp_5.0.4.bb b/meta/recipes-support/gmp/gmp_5.0.4.bb
index 9adcc3f..cb2ca5b 100644
--- a/meta/recipes-support/gmp/gmp_5.0.4.bb
+++ b/meta/recipes-support/gmp/gmp_5.0.4.bb
@@ -2,10 +2,12 @@ require gmp.inc
LICENSE="LGPLv3&GPLv3"
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
file://version.c;endline=18;md5=d8c56b52b9092346b9f93b4da65ef790"
-PR = "r0"
+PR = "r1"
SRC_URI_append += "file://use-includedir.patch \
- file://gmp_fix_for_x32.patch"
+ file://gmp_fix_for_x32.patch \
+ file://gmp_fix_for_automake-1.12.patch \
+ "
export CC_FOR_BUILD = "${BUILD_CC}"
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 02/30] mpfr: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
2012-05-23 0:03 ` [PATCH 01/30] gmp: fix build with automake 1.12 nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 03/30] popt: " nitin.a.kamble
` (28 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../mpfr-3.1.0/mpfr_fix_for_automake-1.12.patch | 35 ++++++++++++++++++++
meta/recipes-support/mpfr/mpfr_3.1.0.bb | 7 ++--
2 files changed, 39 insertions(+), 3 deletions(-)
create mode 100644 meta/recipes-support/mpfr/mpfr-3.1.0/mpfr_fix_for_automake-1.12.patch
diff --git a/meta/recipes-support/mpfr/mpfr-3.1.0/mpfr_fix_for_automake-1.12.patch b/meta/recipes-support/mpfr/mpfr-3.1.0/mpfr_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..5b0a24a
--- /dev/null
+++ b/meta/recipes-support/mpfr/mpfr-3.1.0/mpfr_fix_for_automake-1.12.patch
@@ -0,0 +1,35 @@
+Upstream-Status: Pending
+
+this patch avoids these issues with automake 1.12
+
+| configure.ac:304: error: automatic de-ANSI-fication support has been removed
+| tests/Makefile.am:12: error: automatic de-ANSI-fication support has been removed
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@.intel.com>
+2012/05/02
+
+Index: mpfr-3.1.0/configure.ac
+===================================================================
+--- mpfr-3.1.0.orig/configure.ac
++++ mpfr-3.1.0/configure.ac
+@@ -301,7 +301,6 @@ if test "$test_CFLAGS" != set && test -n
+ fi
+
+ AM_PROG_CC_C_O
+-AM_C_PROTOTYPES
+
+ case $host in
+ *-apple-darwin*)
+Index: mpfr-3.1.0/tests/Makefile.am
+===================================================================
+--- mpfr-3.1.0.orig/tests/Makefile.am
++++ mpfr-3.1.0/tests/Makefile.am
+@@ -9,7 +9,7 @@
+ # PARTICULAR PURPOSE.
+
+
+-AUTOMAKE_OPTIONS = 1.6 gnu $(top_builddir)/ansi2knr
++AUTOMAKE_OPTIONS = 1.6 gnu
+
+ # tversion is run
+ # * at the beginning so that the user gets a possible version error
diff --git a/meta/recipes-support/mpfr/mpfr_3.1.0.bb b/meta/recipes-support/mpfr/mpfr_3.1.0.bb
index 102ec69..e7e20ce 100644
--- a/meta/recipes-support/mpfr/mpfr_3.1.0.bb
+++ b/meta/recipes-support/mpfr/mpfr_3.1.0.bb
@@ -3,11 +3,12 @@ LICENSE="GPLv3&LGPLv3"
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
file://COPYING.LESSER;md5=6a6a8e020838b23406c81b19c1d46df6"
DEPENDS = "gmp"
-PR = "r1"
+PR = "r2"
SRC_URI = "http://www.mpfr.org/mpfr-${PV}/mpfr-${PV}.tar.bz2 \
- file://long-long-thumb.patch \
-"
+ file://long-long-thumb.patch \
+ file://mpfr_fix_for_automake-1.12.patch \
+ "
SRC_URI[md5sum] = "238ae4a15cc3a5049b723daef5d17938"
SRC_URI[sha256sum] = "74a7bbbad168dd1cc414f1c9210b8fc16ccfc8e422d34b3371a8978e31eab680"
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 03/30] popt: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
2012-05-23 0:03 ` [PATCH 01/30] gmp: fix build with automake 1.12 nitin.a.kamble
2012-05-23 0:03 ` [PATCH 02/30] mpfr: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 04/30] rpm: " nitin.a.kamble
` (27 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../popt/popt/popt_fix_for_automake-1.12.patch | 21 ++++++++++++++++++++
meta/recipes-support/popt/popt_1.16.bb | 3 +-
2 files changed, 23 insertions(+), 1 deletions(-)
create mode 100644 meta/recipes-support/popt/popt/popt_fix_for_automake-1.12.patch
diff --git a/meta/recipes-support/popt/popt/popt_fix_for_automake-1.12.patch b/meta/recipes-support/popt/popt/popt_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..91bca96
--- /dev/null
+++ b/meta/recipes-support/popt/popt/popt_fix_for_automake-1.12.patch
@@ -0,0 +1,21 @@
+Upstream-Status: pending
+
+This patch avoids this error with automake 1.12:
+
+| configure.ac:49: error: automatic de-ANSI-fication support has been removed
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/02
+
+Index: popt-1.16/configure.ac
+===================================================================
+--- popt-1.16.orig/configure.ac
++++ popt-1.16/configure.ac
+@@ -46,7 +46,6 @@ AC_GCC_TRADITIONAL
+ AC_SYS_LARGEFILE
+
+ AC_ISC_POSIX
+-AM_C_PROTOTYPES
+
+ AC_CHECK_HEADERS(float.h fnmatch.h glob.h langinfo.h libintl.h mcheck.h unistd.h)
+
diff --git a/meta/recipes-support/popt/popt_1.16.bb b/meta/recipes-support/popt/popt_1.16.bb
index cd22e9a..91b0d60 100644
--- a/meta/recipes-support/popt/popt_1.16.bb
+++ b/meta/recipes-support/popt/popt_1.16.bb
@@ -4,10 +4,11 @@ SECTION = "libs"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://COPYING;md5=cb0613c30af2a8249b8dcc67d3edb06d"
-PR = "r1"
+PR = "r2"
SRC_URI = "http://rpm5.org/files/popt/popt-${PV}.tar.gz \
file://pkgconfig_fix.patch \
+ file://popt_fix_for_automake-1.12.patch \
"
SRC_URI[md5sum] = "3743beefa3dd6247a73f8f7a32c14c33"
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 04/30] rpm: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (2 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 03/30] popt: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 05/30] libxml2: " nitin.a.kamble
` (26 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../rpm/rpm/rpm_fix_for_automake-1.12.patch | 21 ++++++++++++++++++++
meta/recipes-devtools/rpm/rpm_5.4.0.bb | 3 +-
2 files changed, 23 insertions(+), 1 deletions(-)
create mode 100644 meta/recipes-devtools/rpm/rpm/rpm_fix_for_automake-1.12.patch
diff --git a/meta/recipes-devtools/rpm/rpm/rpm_fix_for_automake-1.12.patch b/meta/recipes-devtools/rpm/rpm/rpm_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..abbb15d
--- /dev/null
+++ b/meta/recipes-devtools/rpm/rpm/rpm_fix_for_automake-1.12.patch
@@ -0,0 +1,21 @@
+Upstream-Status: 2012/05/02
+
+automake 1.12 has depricated automatic de-ANSI-fication.
+
+fix this issue:
+| configure.ac:564: error: automatic de-ANSI-fication support has been removed
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/02
+Index: rpm-5.4.0/configure.ac
+===================================================================
+--- rpm-5.4.0.orig/configure.ac
++++ rpm-5.4.0/configure.ac
+@@ -561,7 +561,6 @@ dnl # platform specific checks
+ AC_SEARCH_LIBS([strerror],[cposix])
+
+ dnl # standard checks
+-AM_C_PROTOTYPES
+ AC_C_INLINE
+ AC_C_BIGENDIAN
+
diff --git a/meta/recipes-devtools/rpm/rpm_5.4.0.bb b/meta/recipes-devtools/rpm/rpm_5.4.0.bb
index 5ee6b47..3c259b2 100644
--- a/meta/recipes-devtools/rpm/rpm_5.4.0.bb
+++ b/meta/recipes-devtools/rpm/rpm_5.4.0.bb
@@ -45,7 +45,7 @@ LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1"
DEPENDS = "bzip2 zlib db openssl elfutils expat libpcre attr acl popt ${extrarpmdeps}"
extrarpmdeps = "python perl file"
extrarpmdeps_virtclass-native = "python-native file-native"
-PR = "r36"
+PR = "r37"
# rpm2cpio is a shell script, which is part of the rpm src.rpm. It is needed
# in order to extract the distribution SRPM into a format we can extract...
@@ -70,6 +70,7 @@ SRC_URI = "http://www.rpm5.org/files/rpm/rpm-5.4/rpm-5.4.0-0.20101229.src.rpm;ex
file://pythondeps.sh \
file://rpmdeps-oecore.patch \
file://rpm-resolvedep.patch \
+ file://rpm_fix_for_automake-1.12.patch \
"
# file://rpm-autoconf.patch \
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 05/30] libxml2: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (3 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 04/30] rpm: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 06/30] shadow shadow-native: " nitin.a.kamble
` (25 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../libxml2/libxml2_fix_for_automake_1.12.patch | 23 ++++++++++++++++++++
meta/recipes-core/libxml/libxml2_2.7.8.bb | 5 ++-
2 files changed, 26 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-core/libxml/libxml2/libxml2_fix_for_automake_1.12.patch
diff --git a/meta/recipes-core/libxml/libxml2/libxml2_fix_for_automake_1.12.patch b/meta/recipes-core/libxml/libxml2/libxml2_fix_for_automake_1.12.patch
new file mode 100644
index 0000000..5c25882
--- /dev/null
+++ b/meta/recipes-core/libxml/libxml2/libxml2_fix_for_automake_1.12.patch
@@ -0,0 +1,23 @@
+Upstream-Status: Pending
+
+automake 1.12 has decpricated automatic de-ANSI-fication support
+
+this patch fixes this build issue:
+
+| configure.in:67: error: automatic de-ANSI-fication support has been removed
+Signed-Off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/02
+
+Index: libxml2-2.7.8/configure.in
+===================================================================
+--- libxml2-2.7.8.orig/configure.in
++++ libxml2-2.7.8/configure.in
+@@ -63,8 +63,6 @@ AC_PATH_PROG(WGET, wget, /usr/bin/wget)
+ AC_PATH_PROG(XMLLINT, xmllint, /usr/bin/xmllint)
+ AC_PATH_PROG(XSLTPROC, xsltproc, /usr/bin/xsltproc)
+
+-dnl Make sure we have an ANSI compiler
+-AM_C_PROTOTYPES
+ test "x$U" != "x" && AC_MSG_ERROR(Compiler not ANSI compliant)
+
+ AC_LIBTOOL_WIN32_DLL
diff --git a/meta/recipes-core/libxml/libxml2_2.7.8.bb b/meta/recipes-core/libxml/libxml2_2.7.8.bb
index 1de73da..9111120 100644
--- a/meta/recipes-core/libxml/libxml2_2.7.8.bb
+++ b/meta/recipes-core/libxml/libxml2_2.7.8.bb
@@ -1,8 +1,9 @@
require libxml2.inc
-PR = "r7"
+PR = "r8"
-SRC_URI += "file://fix_version_info.patch"
+SRC_URI += "file://fix_version_info.patch \
+ file://libxml2_fix_for_automake_1.12.patch"
SRC_URI[md5sum] = "8127a65e8c3b08856093099b52599c86"
SRC_URI[sha256sum] = "cda23bc9ebd26474ca8f3d67e7d1c4a1f1e7106364b690d822e009fdc3c417ec"
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 06/30] shadow shadow-native: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (4 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 05/30] libxml2: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 07/30] jpeg: " nitin.a.kamble
` (24 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../files/shadow_fix_for_automake-1.12.patch | 23 ++++++++++++++++++++
.../shadow/shadow-native_4.1.4.3.bb | 6 +++-
meta/recipes-extended/shadow/shadow_4.1.4.3.bb | 6 +++-
3 files changed, 31 insertions(+), 4 deletions(-)
create mode 100644 meta/recipes-extended/shadow/files/shadow_fix_for_automake-1.12.patch
diff --git a/meta/recipes-extended/shadow/files/shadow_fix_for_automake-1.12.patch b/meta/recipes-extended/shadow/files/shadow_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..6a27ed3
--- /dev/null
+++ b/meta/recipes-extended/shadow/files/shadow_fix_for_automake-1.12.patch
@@ -0,0 +1,23 @@
+Upstream-Status: pending
+
+Automake 1.12 has deprecated automatic de-ANSI-fication support
+
+This patch avoids this issue with automake 1.12:
+
+| configure.in:22: error: automatic de-ANSI-fication support has been removed
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/02
+
+Index: shadow-4.1.4.3/configure.in
+===================================================================
+--- shadow-4.1.4.3.orig/configure.in
++++ shadow-4.1.4.3/configure.in
+@@ -19,7 +19,6 @@ AC_PROG_CC
+ AC_ISC_POSIX
+ AC_PROG_LN_S
+ AC_PROG_YACC
+-AM_C_PROTOTYPES
+ AM_PROG_LIBTOOL
+
+ dnl Checks for libraries.
diff --git a/meta/recipes-extended/shadow/shadow-native_4.1.4.3.bb b/meta/recipes-extended/shadow/shadow-native_4.1.4.3.bb
index 38bb922..61fccba 100644
--- a/meta/recipes-extended/shadow/shadow-native_4.1.4.3.bb
+++ b/meta/recipes-extended/shadow/shadow-native_4.1.4.3.bb
@@ -7,7 +7,7 @@ LICENSE = "BSD | Artistic-1.0"
LIC_FILES_CHKSUM = "file://COPYING;md5=08c553a87d4e51bbed50b20e0adcaede \
file://src/passwd.c;firstline=8;endline=30;md5=2899a045e90511d0e043b85a7db7e2fe"
-PR = "r4"
+PR = "r5"
SRC_URI = "http://pkg-shadow.alioth.debian.org/releases/${BPN}-${PV}.tar.bz2 \
file://shadow.automake-1.11.patch \
@@ -15,7 +15,9 @@ SRC_URI = "http://pkg-shadow.alioth.debian.org/releases/${BPN}-${PV}.tar.bz2 \
file://shadow-4.1.4.2-env-reset-keep-locale.patch \
file://add_root_cmd_options.patch \
file://disable-syslog.patch \
- file://useradd.patch"
+ file://useradd.patch \
+ file://shadow_fix_for_automake-1.12.patch \
+ "
SRC_URI[md5sum] = "b8608d8294ac88974f27b20f991c0e79"
SRC_URI[sha256sum] = "633f5bb4ea0c88c55f3642c97f9d25cbef74f82e0b4cf8d54e7ad6f9f9caa778"
diff --git a/meta/recipes-extended/shadow/shadow_4.1.4.3.bb b/meta/recipes-extended/shadow/shadow_4.1.4.3.bb
index 60fb78b..098b0b0 100644
--- a/meta/recipes-extended/shadow/shadow_4.1.4.3.bb
+++ b/meta/recipes-extended/shadow/shadow_4.1.4.3.bb
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=08c553a87d4e51bbed50b20e0adcaede \
DEPENDS = "${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}"
RDEPENDS_${PN} = "shadow-securetty ${@base_contains('DISTRO_FEATURES', 'pam', '${PAM_PLUGINS}', '', d)}"
-PR = "r9"
+PR = "r10"
SRC_URI = "http://pkg-shadow.alioth.debian.org/releases/${BPN}-${PV}.tar.bz2 \
file://login_defs_pam.sed \
@@ -19,7 +19,9 @@ SRC_URI = "http://pkg-shadow.alioth.debian.org/releases/${BPN}-${PV}.tar.bz2 \
file://shadow-4.1.4.2-env-reset-keep-locale.patch \
file://shadow-4.1.4.2-groupmod-pam-check.patch \
file://shadow-4.1.4.2-su_no_sanitize_env.patch \
- file://shadow-update-pam-conf.patch"
+ file://shadow-update-pam-conf.patch \
+ file://shadow_fix_for_automake-1.12.patch \
+ "
SRC_URI[md5sum] = "b8608d8294ac88974f27b20f991c0e79"
SRC_URI[sha256sum] = "633f5bb4ea0c88c55f3642c97f9d25cbef74f82e0b4cf8d54e7ad6f9f9caa778"
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 07/30] jpeg: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (5 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 06/30] shadow shadow-native: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 08/30] libtasn1: " nitin.a.kamble
` (23 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../jpeg/jpeg-8c/jpeg_fix_for_automake-1.12.patch | 41 ++++++++++++++++++++
meta/recipes-core/jpeg/jpeg_8c.bb | 6 ++-
2 files changed, 45 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-core/jpeg/jpeg-8c/jpeg_fix_for_automake-1.12.patch
diff --git a/meta/recipes-core/jpeg/jpeg-8c/jpeg_fix_for_automake-1.12.patch b/meta/recipes-core/jpeg/jpeg-8c/jpeg_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..e8a2f75
--- /dev/null
+++ b/meta/recipes-core/jpeg/jpeg-8c/jpeg_fix_for_automake-1.12.patch
@@ -0,0 +1,41 @@
+Upstream-Status: Pending
+
+automake 1.12 has deprecated automatic de-ANSI-fication support
+
+this patch avoids this error with automake 1.12
+
+| configure.ac:32: error: automatic de-ANSI-fication support has been removed
+...
+| automake: warnings are treated as errors
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: warning: 'libjpeg.la': linking libtool libraries using a non-POSIX
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'
+
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/02
+
+Index: jpeg-8c/configure.ac
+===================================================================
+--- jpeg-8c.orig/configure.ac
++++ jpeg-8c/configure.ac
+@@ -28,9 +28,6 @@ AM_INIT_AUTOMAKE([-Wall -Werror no-dist
+ # with --disable-silent-rules or use "make V=1".
+ AM_SILENT_RULES([yes])
+
+-# This is required when using the de-ANSI-fication feature.
+-AM_C_PROTOTYPES
+-
+ # Add configure option --enable-maintainer-mode which enables
+ # dependency checking and generation useful to package maintainers.
+ # This is made an option to avoid confusing end users.
+@@ -44,6 +41,10 @@ AC_PROG_INSTALL
+ AC_PROG_MAKE_SET
+ AC_PROG_LN_S
+
++# automake 1.12 seems to require this, but automake 1.11 doesn't recognize it
++m4_pattern_allow([AM_PROG_AR])
++AM_PROG_AR
++
+ # Check if LD supports linker scripts,
+ # and define automake conditional HAVE_LD_VERSION_SCRIPT if so.
+ AC_ARG_ENABLE([ld-version-script],
diff --git a/meta/recipes-core/jpeg/jpeg_8c.bb b/meta/recipes-core/jpeg/jpeg_8c.bb
index 6aeaeaa..c276a51 100644
--- a/meta/recipes-core/jpeg/jpeg_8c.bb
+++ b/meta/recipes-core/jpeg/jpeg_8c.bb
@@ -13,11 +13,13 @@ SECTION = "libs"
DEPENDS = "libtool-cross"
DEPENDS_virtclass-native = "libtool-native"
-PR = "r3"
+PR = "r4"
SRC_URI = "http://www.ijg.org/files/jpegsrc.v${PV}.tar.gz \
file://debian-libjpeg7_7-1.diff \
- file://fix_for_automake_1.11.2.patch"
+ file://fix_for_automake_1.11.2.patch \
+ file://jpeg_fix_for_automake-1.12.patch \
+ "
SRC_URI[md5sum] = "a2c10c04f396a9ce72894beb18b4e1f9"
SRC_URI[sha256sum] = "edfc0b3e004b2fe58ffeeec89f96e3a3c28972c46725ec127d01edf8a1cc7c9a"
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 08/30] libtasn1: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (6 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 07/30] jpeg: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 09/30] systemtap: " nitin.a.kamble
` (22 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../libtasn1/libtasn1_fix_for_automake_1.12.patch | 28 ++++++++++++++++++++
meta/recipes-support/gnutls/libtasn1_2.12.bb | 6 +++-
2 files changed, 32 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-support/gnutls/libtasn1/libtasn1_fix_for_automake_1.12.patch
diff --git a/meta/recipes-support/gnutls/libtasn1/libtasn1_fix_for_automake_1.12.patch b/meta/recipes-support/gnutls/libtasn1/libtasn1_fix_for_automake_1.12.patch
new file mode 100644
index 0000000..5540bef
--- /dev/null
+++ b/meta/recipes-support/gnutls/libtasn1/libtasn1_fix_for_automake_1.12.patch
@@ -0,0 +1,28 @@
+Upstream-Status: Pending
+
+This patch avoids following issues with automake 1.12:
+
+| automake: warnings are treated as errors
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: warning: 'libtasn1.la': linking libtool libraries using a non-POSIX
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/02
+
+
+Index: libtasn1-2.11/configure.ac
+===================================================================
+--- libtasn1-2.11.orig/configure.ac
++++ libtasn1-2.11/configure.ac
+@@ -38,6 +38,11 @@ lgl_EARLY
+ AC_PROG_YACC
+ AC_PROG_LN_S
+
++# automake 1.12 seems to require this, but automake 1.11 doesn't recognize it
++m4_pattern_allow([AM_PROG_AR])
++AM_PROG_AR
++
++
+ dnl Checks for programs.
+ AC_PROG_INSTALL
+ AM_MISSING_PROG(HELP2MAN, help2man, $missing_dir)
diff --git a/meta/recipes-support/gnutls/libtasn1_2.12.bb b/meta/recipes-support/gnutls/libtasn1_2.12.bb
index aae409e..d0b4191 100644
--- a/meta/recipes-support/gnutls/libtasn1_2.12.bb
+++ b/meta/recipes-support/gnutls/libtasn1_2.12.bb
@@ -8,9 +8,11 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c \
file://README;endline=8;md5=c3803a3e8ca5ab5eb1e5912faa405351"
-PR = "r0"
+PR = "r1"
-SRC_URI = "${GNU_MIRROR}/libtasn1/libtasn1-${PV}.tar.gz"
+SRC_URI = "${GNU_MIRROR}/libtasn1/libtasn1-${PV}.tar.gz \
+ file://libtasn1_fix_for_automake_1.12.patch \
+ "
SRC_URI[md5sum] = "4eba39fb962d6cf5a370267eae8ff52b"
SRC_URI[sha256sum] = "0e257a8a01c80e464f73262e13c226e04a15165c2ad087a340f53902281a1c5d"
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 09/30] systemtap: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (7 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 08/30] libtasn1: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 10/30] libmpc: " nitin.a.kamble
` (21 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../systemtap_fix_for_automake_1.12.patch | 23 ++++++++++++++++++++
meta/recipes-kernel/systemtap/systemtap_git.bb | 2 +-
meta/recipes-kernel/systemtap/systemtap_git.inc | 1 +
3 files changed, 25 insertions(+), 1 deletions(-)
create mode 100644 meta/recipes-kernel/systemtap/systemtap/systemtap_fix_for_automake_1.12.patch
diff --git a/meta/recipes-kernel/systemtap/systemtap/systemtap_fix_for_automake_1.12.patch b/meta/recipes-kernel/systemtap/systemtap/systemtap_fix_for_automake_1.12.patch
new file mode 100644
index 0000000..ef74a09
--- /dev/null
+++ b/meta/recipes-kernel/systemtap/systemtap/systemtap_fix_for_automake_1.12.patch
@@ -0,0 +1,23 @@
+Upstream-Status: Pending
+
+Automake 1.12 has deprecated automatic de-ANSI-fication support
+
+Fix this issue with automake 1.12:
+
+| configure.ac:23: error: automatic de-ANSI-fication support has been removed
+
+Signed-Off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/02
+
+Index: git/configure.ac
+===================================================================
+--- git.orig/configure.ac
++++ git/configure.ac
+@@ -20,7 +20,6 @@ AC_PROG_CXX
+ AC_PROG_CPP
+ AM_PROG_CC_STDC
+ AM_PROG_CC_C_O
+-AM_C_PROTOTYPES
+ AC_PROG_RANLIB
+ AC_OBJEXT
+ AC_EXEEXT
diff --git a/meta/recipes-kernel/systemtap/systemtap_git.bb b/meta/recipes-kernel/systemtap/systemtap_git.bb
index 91bccd1..4d340fc 100644
--- a/meta/recipes-kernel/systemtap/systemtap_git.bb
+++ b/meta/recipes-kernel/systemtap/systemtap_git.bb
@@ -6,7 +6,7 @@ DEPENDS = "elfutils sqlite3 systemtap-native"
DEPENDS_virtclass-native = "elfutils-native sqlite3-native gettext-native"
DEPENDS_virtclass-nativesdk = "elfutils-nativesdk sqlite3-nativesdk gettext-nativesdk"
-PR = "r3"
+PR = "r4"
export CC_FOR_BUILD = "${BUILD_CC}"
export CFLAGS_FOR_BUILD = "${BUILD_CFLAGS}"
diff --git a/meta/recipes-kernel/systemtap/systemtap_git.inc b/meta/recipes-kernel/systemtap/systemtap_git.inc
index 839cec3..9f4feee 100644
--- a/meta/recipes-kernel/systemtap/systemtap_git.inc
+++ b/meta/recipes-kernel/systemtap/systemtap_git.inc
@@ -6,6 +6,7 @@ PV = "1.7+git${SRCPV}"
SRC_URI = "git://sources.redhat.com/git/systemtap.git;protocol=git \
file://docproc-build-fix.patch \
+ file://systemtap_fix_for_automake_1.12.patch \
"
FILESPATH = "${FILE_DIRNAME}/systemtap"
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 10/30] libmpc: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (8 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 09/30] systemtap: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 11/30] libcheck: " nitin.a.kamble
` (20 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../libmpc/libmpc_fix_for_automake-1.12.patch | 26 ++++++++++++++++++++
meta/recipes-support/libmpc/libmpc_0.8.2.bb | 5 ++-
2 files changed, 29 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-support/libmpc/libmpc/libmpc_fix_for_automake-1.12.patch
diff --git a/meta/recipes-support/libmpc/libmpc/libmpc_fix_for_automake-1.12.patch b/meta/recipes-support/libmpc/libmpc/libmpc_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..75fa28e
--- /dev/null
+++ b/meta/recipes-support/libmpc/libmpc/libmpc_fix_for_automake-1.12.patch
@@ -0,0 +1,26 @@
+Upstream-Status: Pending
+
+this fix avoids this error with automake 1.12
+
+| automake: warnings are treated as errors
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: warning: 'libmpc.la': linking libtool libraries using a non-POSIX
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/02
+
+Index: mpc-0.8.2/configure.ac
+===================================================================
+--- mpc-0.8.2.orig/configure.ac
++++ mpc-0.8.2/configure.ac
+@@ -86,6 +86,10 @@ AC_PROG_EGREP
+ AC_PROG_SED
+ AC_LANG(C)
+
++# automake 1.12 seems to require this, but automake 1.11 doesn't recognize it
++m4_pattern_allow([AM_PROG_AR])
++AM_PROG_AR
++
+ dnl Check for GMP CFLAGS in gmp.h
+ if test -z "$user_redefine_cc" ; then
+ MPC_GMP_CC_CFLAGS
diff --git a/meta/recipes-support/libmpc/libmpc_0.8.2.bb b/meta/recipes-support/libmpc/libmpc_0.8.2.bb
index f991a8e..7a372ba 100644
--- a/meta/recipes-support/libmpc/libmpc_0.8.2.bb
+++ b/meta/recipes-support/libmpc/libmpc_0.8.2.bb
@@ -2,10 +2,11 @@ require libmpc.inc
DEPENDS = "gmp mpfr"
-PR = "r0"
+PR = "r1"
LICENSE="LGPLv2.1"
LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=7fbc338309ac38fefcd64b04bb903e34"
-SRC_URI = "http://www.multiprecision.org/mpc/download/mpc-${PV}.tar.gz"
+SRC_URI = "http://www.multiprecision.org/mpc/download/mpc-${PV}.tar.gz \
+ file://libmpc_fix_for_automake-1.12.patch"
SRC_URI[md5sum] = "e98267ebd5648a39f881d66797122fb6"
SRC_URI[sha256sum] = "ae79f8d41d8a86456b68607e9ca398d00f8b7342d1d83bcf4428178ac45380c7"
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 11/30] libcheck: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (9 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 10/30] libmpc: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 12/30] texinfo: " nitin.a.kamble
` (19 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../libcheck/libcheck_fix_for_automake-1.12.patch | 26 ++++++++++++++++++++
meta/recipes-support/libcheck/libcheck_0.9.8.bb | 6 +++-
2 files changed, 30 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-support/libcheck/libcheck/libcheck_fix_for_automake-1.12.patch
diff --git a/meta/recipes-support/libcheck/libcheck/libcheck_fix_for_automake-1.12.patch b/meta/recipes-support/libcheck/libcheck/libcheck_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..263f6d6
--- /dev/null
+++ b/meta/recipes-support/libcheck/libcheck/libcheck_fix_for_automake-1.12.patch
@@ -0,0 +1,26 @@
+Upstream-Status: Pending
+
+This patch fixes following issue with automake 1.12
+
+| automake: warnings are treated as errors
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: warning: 'libcompat.la': linking libtool libraries using a non-POSIX
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/03
+
+Index: check-0.9.8/configure.ac
+===================================================================
+--- check-0.9.8.orig/configure.ac
++++ check-0.9.8/configure.ac
+@@ -103,6 +103,10 @@ AC_PROG_INSTALL
+ AC_PROG_LN_S
+ AC_PROG_LIBTOOL
+
++# automake 1.12 seems to require this, but automake 1.11 doesn't recognize it
++m4_pattern_allow([AM_PROG_AR])
++AM_PROG_AR
++
+ # add these options to CFLAGS if the compiler supports them
+ AC_DEFUN([AX_CFLAGS_ADD],[AX_C_CHECK_FLAG($1, , , CFLAGS="$CFLAGS $1")])
+ AX_CFLAGS_WARN_ALL_ANSI
diff --git a/meta/recipes-support/libcheck/libcheck_0.9.8.bb b/meta/recipes-support/libcheck/libcheck_0.9.8.bb
index d5b9930..e988d47 100644
--- a/meta/recipes-support/libcheck/libcheck_0.9.8.bb
+++ b/meta/recipes-support/libcheck/libcheck_0.9.8.bb
@@ -5,9 +5,11 @@ SECTION = "devel"
LICENSE = "LGPLv2.1+"
LIC_FILES_CHKSUM = "file://COPYING.LESSER;md5=2d5025d4aa3495befef8f17206a5b0a1"
-PR = "r0"
+PR = "r1"
-SRC_URI = "${SOURCEFORGE_MIRROR}/check/check-${PV}.tar.gz"
+SRC_URI = "${SOURCEFORGE_MIRROR}/check/check-${PV}.tar.gz \
+ file://libcheck_fix_for_automake-1.12.patch \
+ "
SRC_URI[md5sum] = "5d75e9a6027cde79d2c339ef261e7470"
SRC_URI[sha256sum] = "82acf956bb07584ffea2bf04d5989fe939c3e74ecf93133a21037fd0f7996a7f"
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 12/30] texinfo: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (10 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 11/30] libcheck: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 13/30] libidn: " nitin.a.kamble
` (18 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../texinfo_fix_for_automake-1.12.patch | 24 ++++++++++++++++++++
meta/recipes-extended/texinfo/texinfo_4.13a.bb | 3 +-
2 files changed, 26 insertions(+), 1 deletions(-)
create mode 100644 meta/recipes-extended/texinfo/texinfo-4.13a/texinfo_fix_for_automake-1.12.patch
diff --git a/meta/recipes-extended/texinfo/texinfo-4.13a/texinfo_fix_for_automake-1.12.patch b/meta/recipes-extended/texinfo/texinfo-4.13a/texinfo_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..11d34b1
--- /dev/null
+++ b/meta/recipes-extended/texinfo/texinfo-4.13a/texinfo_fix_for_automake-1.12.patch
@@ -0,0 +1,24 @@
+Upstream-Status: pending
+
+automake 1.12 has deprecated support for lzma-compressed distribution archives
+this patch fixes following issue with automake 1.12
+
+| configure.ac:16: error: support for lzma-compressed distribution archives has been removed
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/03
+
+
+Index: texinfo-4.13/configure.ac
+===================================================================
+--- texinfo-4.13.orig/configure.ac
++++ texinfo-4.13/configure.ac
+@@ -13,7 +13,7 @@ AC_INIT([GNU Texinfo], [4.13], [bug-texi
+
+ dnl Must come before AM_INIT_AUTOMAKE.
+ AC_CONFIG_AUX_DIR([build-aux])
+-AM_INIT_AUTOMAKE([1.10.1 readme-alpha dist-lzma])
++AM_INIT_AUTOMAKE([1.10.1 readme-alpha])
+
+ # Minimum Autoconf version required.
+ AC_PREREQ(2.59)
diff --git a/meta/recipes-extended/texinfo/texinfo_4.13a.bb b/meta/recipes-extended/texinfo/texinfo_4.13a.bb
index f9e566b..50892ce 100644
--- a/meta/recipes-extended/texinfo/texinfo_4.13a.bb
+++ b/meta/recipes-extended/texinfo/texinfo_4.13a.bb
@@ -6,7 +6,7 @@ HOMEPAGE = "http://www.gnu.org/software/texinfo/"
SECTION = "console/utils"
LICENSE = "GPLv3+"
LIC_FILES_CHKSUM = "file://COPYING;md5=adefda309052235aa5d1e99ce7557010"
-PR = "r4"
+PR = "r5"
DEPENDS = "zlib ncurses texinfo-native"
DEPENDS_virtclass-native = "zlib-native ncurses-native"
@@ -23,6 +23,7 @@ SRC_URI = "${GNU_MIRROR}/texinfo/texinfo-${PV}.tar.gz \
file://disable-native-tools.patch \
file://link-zip.patch \
file://gettext-macros.patch \
+ file://texinfo_fix_for_automake-1.12.patch \
${TARGET_PATCH}"
SRC_URI[md5sum] = "71ba711519209b5fb583fed2b3d86fcb"
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 13/30] libidn: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (11 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 12/30] texinfo: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 14/30] glew: " nitin.a.kamble
` (17 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../libidn/libidn_fix_for_automake-1.12.patch | 26 ++++++++++++++++++++
meta/recipes-extended/libidn/libidn_1.24.bb | 5 ++-
2 files changed, 29 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-extended/libidn/libidn/libidn_fix_for_automake-1.12.patch
diff --git a/meta/recipes-extended/libidn/libidn/libidn_fix_for_automake-1.12.patch b/meta/recipes-extended/libidn/libidn/libidn_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..20afd25
--- /dev/null
+++ b/meta/recipes-extended/libidn/libidn/libidn_fix_for_automake-1.12.patch
@@ -0,0 +1,26 @@
+Upstream-Status: Pending
+
+This patch fixes following issue with automake 1.12
+
+| automake: warnings are treated as errors
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: warning: 'libidn.la': linking libtool libraries using a non-POSIX
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/03
+
+Index: libidn-1.24/configure.ac
+===================================================================
+--- libidn-1.24.orig/configure.ac
++++ libidn-1.24/configure.ac
+@@ -34,6 +34,10 @@ AC_SUBST(LT_CURRENT, 17)
+ AC_SUBST(LT_REVISION, 7)
+ AC_SUBST(LT_AGE, 6)
+
++# automake 1.12 seems to require this, but automake 1.11 doesn't recognize it
++m4_pattern_allow([AM_PROG_AR])
++AM_PROG_AR
++
+ AC_PROG_CC
+ gl_EARLY
+ lgl_EARLY
diff --git a/meta/recipes-extended/libidn/libidn_1.24.bb b/meta/recipes-extended/libidn/libidn_1.24.bb
index 018f118..c6ecea7 100644
--- a/meta/recipes-extended/libidn/libidn_1.24.bb
+++ b/meta/recipes-extended/libidn/libidn_1.24.bb
@@ -10,11 +10,12 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=9c9d9d207a3468a696a03368913d360b \
file://COPYINGv3;md5=d32239bcb673463ab874e80d47fae504 \
file://lib/idna.h;endline=21;md5=7364f6a250728ffe16170f5e3ab37512 \
file://src/idn.c;endline=20;md5=7d7235e7951ac87d9dfac42e1b69d9cb"
-PR = "r0"
+PR = "r1"
inherit pkgconfig autotools gettext
-SRC_URI = "${GNU_MIRROR}/libidn/${BPN}-${PV}.tar.gz"
+SRC_URI = "${GNU_MIRROR}/libidn/${BPN}-${PV}.tar.gz \
+ file://libidn_fix_for_automake-1.12.patch "
SRC_URI[md5sum] = "764d7258eeb273941680499fab2c7367"
SRC_URI[sha256sum] = "da1708c6063ecb7951a0908e67df3eacdfe128b18edaa6cf6867d7b73b5f35ff"
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 14/30] glew: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (12 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 13/30] libidn: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 15/30] findutils: " nitin.a.kamble
` (16 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../glew/files/glew_fix_for_automake-1.12.patch | 25 ++++++++++++++++++++
meta/recipes-graphics/glew/glew_1.7.0.bb | 3 +-
2 files changed, 27 insertions(+), 1 deletions(-)
create mode 100644 meta/recipes-graphics/glew/files/glew_fix_for_automake-1.12.patch
diff --git a/meta/recipes-graphics/glew/files/glew_fix_for_automake-1.12.patch b/meta/recipes-graphics/glew/files/glew_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..0707efb
--- /dev/null
+++ b/meta/recipes-graphics/glew/files/glew_fix_for_automake-1.12.patch
@@ -0,0 +1,25 @@
+Upstream-Status: Pending
+
+This patch fixes following issue with automake 1.12
+
+| automake: warnings are treated as errors
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: warning: 'libGLEW.la': linking libtool libraries using a non-POSIX
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/03
+
+Index: glew-1.7.0/configure.ac
+===================================================================
+--- glew-1.7.0.orig/configure.ac
++++ glew-1.7.0/configure.ac
+@@ -14,6 +14,9 @@ LT_INIT
+ AC_PROG_CC
+ AC_PROG_INSTALL
+ AC_PROG_LN_S
++# automake 1.12 seems to require this, but automake 1.11 doesn't recognize it
++m4_pattern_allow([AM_PROG_AR])
++AM_PROG_AR
+
+ # Checks for libraries.
+
diff --git a/meta/recipes-graphics/glew/glew_1.7.0.bb b/meta/recipes-graphics/glew/glew_1.7.0.bb
index e65663d..cdb778c 100644
--- a/meta/recipes-graphics/glew/glew_1.7.0.bb
+++ b/meta/recipes-graphics/glew/glew_1.7.0.bb
@@ -7,10 +7,11 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2ac251558de685c6b9478d89be3149c2"
DEPENDS = "virtual/libx11 virtual/libgl libxext libxi libxmu"
-PR = "r0"
+PR = "r1"
SRC_URI = "${SOURCEFORGE_MIRROR}/project/glew/glew/${PV}/glew-${PV}.tgz \
file://autotools.patch \
+ file://glew_fix_for_automake-1.12.patch \
"
SRC_URI[md5sum] = "fb7a8bb79187ac98a90b57f0f27a3e84"
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 15/30] findutils: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (13 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 14/30] glew: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 16/30] gawk: " nitin.a.kamble
` (15 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../findutils_fix_for_automake-1.12.patch | 22 ++++++++++++++++++++
meta/recipes-extended/findutils/findutils_4.4.2.bb | 6 +++-
2 files changed, 26 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-extended/findutils/findutils-4.4.2/findutils_fix_for_automake-1.12.patch
diff --git a/meta/recipes-extended/findutils/findutils-4.4.2/findutils_fix_for_automake-1.12.patch b/meta/recipes-extended/findutils/findutils-4.4.2/findutils_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..d4a7e95
--- /dev/null
+++ b/meta/recipes-extended/findutils/findutils-4.4.2/findutils_fix_for_automake-1.12.patch
@@ -0,0 +1,22 @@
+Upstream-Status: Pending
+
+This patch fixes following issue with automake 1.12
+
+| configure.ac:80: error: automatic de-ANSI-fication support has been removed
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/03
+
+Index: findutils-4.4.2/configure.ac
+===================================================================
+--- findutils-4.4.2.orig/configure.ac
++++ findutils-4.4.2/configure.ac
+@@ -77,8 +77,6 @@ AC_PROG_CPP
+ dnl for gnulib
+ gl_EARLY
+
+-AM_C_PROTOTYPES
+-
+ AC_PROG_INSTALL
+ AC_PROG_RANLIB
+ dnl AC_PROG_LIBTOOL
diff --git a/meta/recipes-extended/findutils/findutils_4.4.2.bb b/meta/recipes-extended/findutils/findutils_4.4.2.bb
index d80511c..127eb4b 100644
--- a/meta/recipes-extended/findutils/findutils_4.4.2.bb
+++ b/meta/recipes-extended/findutils/findutils_4.4.2.bb
@@ -1,11 +1,13 @@
require findutils.inc
-PR = "r3"
+PR = "r4"
SRC_URI += "file://01-27017.patch \
file://02-28824.patch \
file://03-28872.patch \
- file://findutils_fix_for_x32.patch "
+ file://findutils_fix_for_x32.patch \
+ file://findutils_fix_for_automake-1.12.patch \
+ "
SRC_URI[md5sum] = "351cc4adb07d54877fa15f75fb77d39f"
SRC_URI[sha256sum] = "434f32d171cbc0a5e72cfc5372c6fc4cb0e681f8dce566a0de5b6fccd702b62a"
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 16/30] gawk: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (14 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 15/30] findutils: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 17/30] lrzsz: " nitin.a.kamble
` (14 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../gawk/gawk/gawk_fix_for_automake-1.12.patch | 23 ++++++++++++++++++++
meta/recipes-extended/gawk/gawk_4.0.0.bb | 5 ++-
2 files changed, 26 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-extended/gawk/gawk/gawk_fix_for_automake-1.12.patch
diff --git a/meta/recipes-extended/gawk/gawk/gawk_fix_for_automake-1.12.patch b/meta/recipes-extended/gawk/gawk/gawk_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..a2458a8
--- /dev/null
+++ b/meta/recipes-extended/gawk/gawk/gawk_fix_for_automake-1.12.patch
@@ -0,0 +1,23 @@
+Upstream-Status: Pending
+
+This patch fixes following issue with automake 1.12
+
+| configure.ac:120: error: automatic de-ANSI-fication support has been removed
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/03
+
+Index: gawk-4.0.0/configure.ac
+===================================================================
+--- gawk-4.0.0.orig/configure.ac
++++ gawk-4.0.0/configure.ac
+@@ -116,9 +116,6 @@ dnl Set the programming language for che
+ dnl this only needs to be set once, since everything is in C.
+ AC_LANG([C])
+
+-dnl check for C compiler for automake. Needed for dfa.h.
+-AM_C_PROTOTYPES
+-
+ dnl Cygwin doesn't like to get libs with full paths
+ dnl since that overrides linking against DLLs.
+ case `(uname) 2> /dev/null` in
diff --git a/meta/recipes-extended/gawk/gawk_4.0.0.bb b/meta/recipes-extended/gawk/gawk_4.0.0.bb
index 977feb9..3587e85 100644
--- a/meta/recipes-extended/gawk/gawk_4.0.0.bb
+++ b/meta/recipes-extended/gawk/gawk_4.0.0.bb
@@ -11,9 +11,10 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
RDEPENDS_gawk += "gawk-common"
RDEPENDS_pgawk += "gawk-common"
-PR = "r1"
+PR = "r2"
-SRC_URI = "${GNU_MIRROR}/gawk/gawk-${PV}.tar.gz"
+SRC_URI = "${GNU_MIRROR}/gawk/gawk-${PV}.tar.gz \
+ file://gawk_fix_for_automake-1.12.patch"
SRC_URI[md5sum] = "51e417b71287629940051e6f652c6492"
SRC_URI[sha256sum] = "c3a7cf7d976e05c6a1d8a9b3f14fa55d4304707408ddafb1396212653ea00be5"
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 17/30] lrzsz: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (15 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 16/30] gawk: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 18/30] minicom: " nitin.a.kamble
` (13 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../lrzsz_fix_for_automake-1.12.patch | 49 ++++++++++++++++++++
meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb | 6 ++-
2 files changed, 53 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-bsp/lrzsz/lrzsz-0.12.20/lrzsz_fix_for_automake-1.12.patch
diff --git a/meta/recipes-bsp/lrzsz/lrzsz-0.12.20/lrzsz_fix_for_automake-1.12.patch b/meta/recipes-bsp/lrzsz/lrzsz-0.12.20/lrzsz_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..b4529f4
--- /dev/null
+++ b/meta/recipes-bsp/lrzsz/lrzsz-0.12.20/lrzsz_fix_for_automake-1.12.patch
@@ -0,0 +1,49 @@
+Upstream-Status: Pending
+
+This patch fixes following issue with automake 1.12
+
+| configure.in:95: error: automatic de-ANSI-fication support has been removed
+...
+| lib/Makefile.am:3: error: automatic de-ANSI-fication support has been removed
+| lib/Makefile.am: installing './depcomp'
+| src/Makefile.am:11: error: automatic de-ANSI-fication support has been removed
+
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/03
+
+Index: lrzsz-0.12.20/configure.in
+===================================================================
+--- lrzsz-0.12.20.orig/configure.in
++++ lrzsz-0.12.20/configure.in
+@@ -92,7 +92,6 @@ AC_PROG_RANLIB
+ AC_ISC_POSIX
+ AC_AIX
+ AC_MINIX
+-AM_C_PROTOTYPES
+ AC_C_CONST
+ AC_C_INLINE
+
+Index: lrzsz-0.12.20/lib/Makefile.am
+===================================================================
+--- lrzsz-0.12.20.orig/lib/Makefile.am
++++ lrzsz-0.12.20/lib/Makefile.am
+@@ -1,6 +1,5 @@
+ noinst_LIBRARIES=libzmodem.a
+ CFLAGS=@CFLAGS@
+-AUTOMAKE_OPTIONS=ansi2knr
+
+ EXTRA_DIST = alloca.c ansi2knr.1 ansi2knr.c \
+ getopt.c getopt1.c mkdir.c mktime.c \
+Index: lrzsz-0.12.20/src/Makefile.am
+===================================================================
+--- lrzsz-0.12.20.orig/src/Makefile.am
++++ lrzsz-0.12.20/src/Makefile.am
+@@ -8,7 +8,6 @@ CFLAGS=@CFLAGS@
+ DISTCLEAN_FILES=lrzszbug
+
+ LDADD = ../lib/libzmodem.a @LIBINTL@
+-AUTOMAKE_OPTIONS=ansi2knr
+ EXTRA_DIST = ansi2knr.1 ansi2knr.c lrzszbug.in
+ INCLUDES = -I.. -I$(srcdir) -I$(top_srcdir)/src -I../intl -I$(top_srcdir)/lib
+ #DEFS = -DLOCALEDIR=\"$(localedir)\" -DOS=\"@host_os@\" -DCPU=\"@host_cpu@\"
diff --git a/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb b/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb
index 7f86157..e76f36a 100644
--- a/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb
+++ b/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb
@@ -10,12 +10,14 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \
file://src/lrz.c;beginline=1;endline=10;md5=5276956373ff7d8758837f6399a1045f"
SECTION = "console/network"
DEPENDS = ""
-PR = "r4"
+PR = "r5"
SRC_URI = "http://www.ohse.de/uwe/releases/lrzsz-${PV}.tar.gz \
file://autotools.patch \
file://makefile.patch \
- file://gettext.patch"
+ file://gettext.patch \
+ file://lrzsz_fix_for_automake-1.12.patch \
+ "
SRC_URI[md5sum] = "b5ce6a74abc9b9eb2af94dffdfd372a4"
SRC_URI[sha256sum] = "c28b36b14bddb014d9e9c97c52459852f97bd405f89113f30bee45ed92728ff1"
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 18/30] minicom: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (16 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 17/30] lrzsz: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 19/30] lighttpd: " nitin.a.kamble
` (12 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../minicom_fix_for_automake-1.12.patch | 21 ++++++++++++++++++++
meta/recipes-extended/minicom/minicom_2.6.1.bb | 3 ++
2 files changed, 24 insertions(+), 0 deletions(-)
create mode 100644 meta/recipes-extended/minicom/minicom-2.6.1/minicom_fix_for_automake-1.12.patch
diff --git a/meta/recipes-extended/minicom/minicom-2.6.1/minicom_fix_for_automake-1.12.patch b/meta/recipes-extended/minicom/minicom-2.6.1/minicom_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..aba6298
--- /dev/null
+++ b/meta/recipes-extended/minicom/minicom-2.6.1/minicom_fix_for_automake-1.12.patch
@@ -0,0 +1,21 @@
+Upstream-Status: Pending
+
+This patch fixes following issue with automake 1.12
+
+| configure.in:193: error: automatic de-ANSI-fication support has been removed
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/03
+
+Index: minicom-2.6.1/configure.in
+===================================================================
+--- minicom-2.6.1.orig/configure.in
++++ minicom-2.6.1/configure.in
+@@ -190,7 +190,6 @@ AC_CHECK_HEADERS(stdarg.h varargs.h term
+
+ dnl Checks for typedefs, structures, and compiler characteristics.
+ AC_C_CONST
+-AM_C_PROTOTYPES
+ AC_TYPE_UID_T
+ AC_TYPE_MODE_T
+ AC_TYPE_PID_T
diff --git a/meta/recipes-extended/minicom/minicom_2.6.1.bb b/meta/recipes-extended/minicom/minicom_2.6.1.bb
index 3a9f934..b54853d 100644
--- a/meta/recipes-extended/minicom/minicom_2.6.1.bb
+++ b/meta/recipes-extended/minicom/minicom_2.6.1.bb
@@ -6,8 +6,11 @@ LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=420477abc567404debca0a2a1cb6b645 \
file://src/minicom.h;beginline=1;endline=12;md5=a58838cb709f0db517f4e42730c49e81"
+PR = "r1"
+
SRC_URI = "http://alioth.debian.org/frs/download.php/3700/minicom-${PV}.tar.gz \
file://rename-conflicting-functions.patch \
+ file://minicom_fix_for_automake-1.12.patch \
"
# file://gcc4-scope.patch
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 19/30] lighttpd: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (17 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 18/30] minicom: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 20/30] gnutls: " nitin.a.kamble
` (11 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../files/lighttpd_fix_for_automake-1.12.patch | 37 ++++++++++++++++++++
meta/recipes-extended/lighttpd/lighttpd_1.4.30.bb | 5 ++-
2 files changed, 40 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-extended/lighttpd/files/lighttpd_fix_for_automake-1.12.patch
diff --git a/meta/recipes-extended/lighttpd/files/lighttpd_fix_for_automake-1.12.patch b/meta/recipes-extended/lighttpd/files/lighttpd_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..42451b8
--- /dev/null
+++ b/meta/recipes-extended/lighttpd/files/lighttpd_fix_for_automake-1.12.patch
@@ -0,0 +1,37 @@
+Upstream-Status: Pending
+
+This patch fixes following issue with automake 1.12
+
+| configure.ac:42: error: automatic de-ANSI-fication support has been removed
+...
+| automake: warnings are treated as errors
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: warning: 'liblightcomp.la': linking libtool libraries using a non-POSIX
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/03
+
+Index: lighttpd-1.4.30/configure.ac
+===================================================================
+--- lighttpd-1.4.30.orig/configure.ac
++++ lighttpd-1.4.30/configure.ac
+@@ -24,6 +24,11 @@ dnl AC_PROG_CXX
+ AC_PROG_LN_S
+ AC_PROG_MAKE_SET
+
++# automake 1.12 seems to require this, but automake 1.11 doesn't recognize it
++m4_pattern_allow([AM_PROG_AR])
++AM_PROG_AR
++
++
+ dnl check environment
+ AC_AIX
+ AC_ISC_POSIX
+@@ -39,7 +44,6 @@ AM_CONDITIONAL(NO_RDYNAMIC, test x$NO_RD
+ AC_EXEEXT
+
+ dnl more automake stuff
+-AM_C_PROTOTYPES
+
+ dnl libtool
+ AC_DISABLE_STATIC
diff --git a/meta/recipes-extended/lighttpd/lighttpd_1.4.30.bb b/meta/recipes-extended/lighttpd/lighttpd_1.4.30.bb
index 3ae3867..161c0d9 100644
--- a/meta/recipes-extended/lighttpd/lighttpd_1.4.30.bb
+++ b/meta/recipes-extended/lighttpd/lighttpd_1.4.30.bb
@@ -16,13 +16,14 @@ RDEPENDS_${PN} += " \
lighttpd-module-staticfile \
"
-PR = "r0"
+PR = "r1"
SRC_URI = "http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${PV}.tar.bz2 \
file://index.html.lighttpd \
file://lighttpd.conf \
file://lighttpd \
-"
+ file://lighttpd_fix_for_automake-1.12.patch \
+ "
SRC_URI[md5sum] = "63f9df52dcae0ab5689a95c99c54e48a"
SRC_URI[sha256sum] = "0d795597e4666dbf6ffe44b4a42f388ddb44736ddfab0b1ac091e5bb35212c2d"
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 20/30] gnutls: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (18 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 19/30] lighttpd: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 21/30] libfm: " nitin.a.kamble
` (10 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../gnutls_fix_for_automake-1.12.patch | 53 ++++++++++++++++++++
meta/recipes-support/gnutls/gnutls_2.12.19.bb | 3 +-
2 files changed, 55 insertions(+), 1 deletions(-)
create mode 100644 meta/recipes-support/gnutls/gnutls-2.12.18/gnutls_fix_for_automake-1.12.patch
diff --git a/meta/recipes-support/gnutls/gnutls-2.12.18/gnutls_fix_for_automake-1.12.patch b/meta/recipes-support/gnutls/gnutls-2.12.18/gnutls_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..87603cb
--- /dev/null
+++ b/meta/recipes-support/gnutls/gnutls-2.12.18/gnutls_fix_for_automake-1.12.patch
@@ -0,0 +1,53 @@
+Upstream-Status: Pending
+
+This patch fixes following kind of issue with automake 1.12
+
+| automake: warnings are treated as errors
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: warning: 'libgnutls.la': linking libtool libraries using a non-POSIX
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/03
+
+Index: gnutls-2.12.18/configure.ac
+===================================================================
+--- gnutls-2.12.18.orig/configure.ac
++++ gnutls-2.12.18/configure.ac
+@@ -36,6 +36,9 @@ AC_MSG_RESULT([***
+
+ dnl Checks for programs.
+ AC_PROG_CC
++# automake 1.12 seems to require this, but automake 1.11 doesn't recognize it
++m4_pattern_allow([AM_PROG_AR])
++AM_PROG_AR
+ AC_PROG_LN_S
+ GTK_DOC_CHECK(1.1)
+ AC_PATH_PROG([GAA], [gaa])
+Index: gnutls-2.12.18/lib/configure.ac
+===================================================================
+--- gnutls-2.12.18.orig/lib/configure.ac
++++ gnutls-2.12.18/lib/configure.ac
+@@ -31,6 +31,9 @@ m4_ifdef([AM_SILENT_RULES], [AM_SILENT_R
+ AM_CONFIG_HEADER(config.h)
+
+ AC_PROG_CC
++# automake 1.12 seems to require this, but automake 1.11 doesn't recognize it
++m4_pattern_allow([AM_PROG_AR])
++AM_PROG_AR
+ lgl_EARLY
+
+ AC_LIBTOOL_WIN32_DLL
+Index: gnutls-2.12.18/libextra/configure.ac
+===================================================================
+--- gnutls-2.12.18.orig/libextra/configure.ac
++++ gnutls-2.12.18/libextra/configure.ac
+@@ -31,6 +31,9 @@ m4_ifdef([AM_SILENT_RULES], [AM_SILENT_R
+ AM_CONFIG_HEADER(config.h)
+
+ AC_PROG_CC
++# automake 1.12 seems to require this, but automake 1.11 doesn't recognize it
++m4_pattern_allow([AM_PROG_AR])
++AM_PROG_AR
+ xgl_EARLY
+
+ AC_LIBTOOL_WIN32_DLL
diff --git a/meta/recipes-support/gnutls/gnutls_2.12.19.bb b/meta/recipes-support/gnutls/gnutls_2.12.19.bb
index 7d76510..261668c 100644
--- a/meta/recipes-support/gnutls/gnutls_2.12.19.bb
+++ b/meta/recipes-support/gnutls/gnutls_2.12.19.bb
@@ -1,10 +1,11 @@
require gnutls.inc
-PR = "${INC_PR}.0"
+PR = "${INC_PR}.1"
SRC_URI += "file://gnutls-openssl.patch \
file://correct_rpl_gettimeofday_signature.patch \
file://configure-fix.patch \
+ file://gnutls_fix_for_automake-1.12.patch \
"
SRC_URI[md5sum] = "14228b34e3d8ed176a617df40693b441"
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 21/30] libfm: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (19 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 20/30] gnutls: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 22/30] libcroco: " nitin.a.kamble
` (9 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../libfm-0.1.17/libfm_fix_for_automake-1.12.patch | 48 ++++++++++++++++++++
meta/recipes-support/libfm/libfm_0.1.17.bb | 6 ++-
2 files changed, 52 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-support/libfm/libfm-0.1.17/libfm_fix_for_automake-1.12.patch
diff --git a/meta/recipes-support/libfm/libfm-0.1.17/libfm_fix_for_automake-1.12.patch b/meta/recipes-support/libfm/libfm-0.1.17/libfm_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..3efb4dd
--- /dev/null
+++ b/meta/recipes-support/libfm/libfm-0.1.17/libfm_fix_for_automake-1.12.patch
@@ -0,0 +1,48 @@
+Upstream-Status: Pending
+
+This patch fixes following kind of issues with automake 1.12
+| automake: warnings are treated as errors
+| data/ui/Makefile.am:21: warning: '%'-style pattern rules are a GNU make extension
+...
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: warning: 'libfm-gtk.la': linking libtool libraries using a non-POSIX
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'
+...
+| src/Makefile.am:21: warning: compiling 'glib-compat.c' with per-target flags requires 'AM_PROG_CC_C_O' in 'configure.ac'
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/03
+
+Index: libfm-0.1.17/configure.ac
+===================================================================
+--- libfm-0.1.17.orig/configure.ac
++++ libfm-0.1.17/configure.ac
+@@ -4,11 +4,17 @@
+ AC_PREREQ([2.63])
+ AC_INIT([libfm], [0.1.17], [http://pcmanfm.sorceforge.net/])
+ AM_INIT_AUTOMAKE([-Wall -Werror foreign])
++
++# automake 1.12 seems to require this, but automake 1.11 doesn't recognize it
++m4_pattern_allow([AM_PROG_AR])
++AM_PROG_AR
++
+ AC_CONFIG_MACRO_DIR(m4)
+ AC_CONFIG_HEADERS([config.h])
+
+ # Checks for programs.
+ AC_PROG_CC
++AM_PROG_CC_C_O
+ AM_PROG_LIBTOOL
+
+ # Checks for libraries.
+Index: libfm-0.1.17/data/ui/Makefile.am
+===================================================================
+--- libfm-0.1.17.orig/data/ui/Makefile.am
++++ libfm-0.1.17/data/ui/Makefile.am
+@@ -18,6 +18,6 @@ EXTRA_DIST = \
+ $(NULL)
+
+ # Purge GtkBuilder UI files
+-%.ui: %.glade
++.glade.ui:
+ cp $< $@
+ $(top_builddir)/src/xml-purge $@
diff --git a/meta/recipes-support/libfm/libfm_0.1.17.bb b/meta/recipes-support/libfm/libfm_0.1.17.bb
index e3fd2de..1bd8850 100644
--- a/meta/recipes-support/libfm/libfm_0.1.17.bb
+++ b/meta/recipes-support/libfm/libfm_0.1.17.bb
@@ -10,9 +10,11 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \
SECTION = "x11/libs"
DEPENDS = "glib-2.0 pango gtk+ menu-cache intltool-native"
-PR = "r3"
+PR = "r4"
-SRC_URI = "${SOURCEFORGE_MIRROR}/pcmanfm/libfm-${PV}.tar.gz"
+SRC_URI = "${SOURCEFORGE_MIRROR}/pcmanfm/libfm-${PV}.tar.gz \
+ file://libfm_fix_for_automake-1.12.patch \
+ "
SRC_URI[md5sum] = "a97e03d973e6ac727f28d0934d6c9ad5"
SRC_URI[sha256sum] = "1740681cff4cd4c5a2eaa9805d8898269cfb6a49a0bda0acb242def15bc7131b"
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 22/30] libcroco: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (20 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 21/30] libfm: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 23/30] gmp-4.2.1: " nitin.a.kamble
` (8 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../files/libcroco_fix_for_automake-1.12.patch | 22 ++++++++++++++++++++
meta/recipes-support/libcroco/libcroco_0.6.3.bb | 5 ++-
2 files changed, 25 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-support/libcroco/files/libcroco_fix_for_automake-1.12.patch
diff --git a/meta/recipes-support/libcroco/files/libcroco_fix_for_automake-1.12.patch b/meta/recipes-support/libcroco/files/libcroco_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..9dcf7b0
--- /dev/null
+++ b/meta/recipes-support/libcroco/files/libcroco_fix_for_automake-1.12.patch
@@ -0,0 +1,22 @@
+Upstream-Status: Pending
+
+This patch fixes following kind of issues with automake 1.12
+
+| configure.in:51: error: automatic de-ANSI-fication support has been removed
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/03
+
+Index: libcroco-0.6.3/configure.in
+===================================================================
+--- libcroco-0.6.3.orig/configure.in
++++ libcroco-0.6.3/configure.in
+@@ -47,8 +47,6 @@ AC_PROG_CC
+ AC_PROG_INSTALL
+ AC_PROG_CPP
+
+-dnl Make sure we have an ANSI compiler
+-AM_C_PROTOTYPES
+ test "x$U" != "x" && AC_MSG_ERROR(Compiler not ANSI compliant)
+
+ dnl Checks for libraries.
diff --git a/meta/recipes-support/libcroco/libcroco_0.6.3.bb b/meta/recipes-support/libcroco/libcroco_0.6.3.bb
index 74c2cbb..d9ff8de 100644
--- a/meta/recipes-support/libcroco/libcroco_0.6.3.bb
+++ b/meta/recipes-support/libcroco/libcroco_0.6.3.bb
@@ -9,11 +9,12 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=55ca817ccb7d5b5b66355690e9abc605 \
SECTION = "x11/utils"
DEPENDS = "glib-2.0 libxml2 zlib"
-PR = "r2"
+PR = "r3"
inherit autotools pkgconfig gnome
-SRC_URI_append = " file://croco.patch;apply=yes "
+SRC_URI_append = " file://croco.patch;apply=yes \
+ file://libcroco_fix_for_automake-1.12.patch "
SRC_URI[archive.md5sum] = "e1e93eeff4367c896f3959af34ba20eb"
SRC_URI[archive.sha256sum] = "746192d979263c74094d41e5ff0e19900b3d81eb2bd42c27c1c320dd94008034"
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 23/30] gmp-4.2.1: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (21 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 22/30] libcroco: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 24/30] coreutils-native-6.9: " nitin.a.kamble
` (7 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../gmp/gmp-4.2.1/gmp_fix_for_automake-1.12.patch | 48 ++++++++++++++++++++
meta/recipes-support/gmp/gmp_4.2.1.bb | 6 ++-
2 files changed, 52 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-support/gmp/gmp-4.2.1/gmp_fix_for_automake-1.12.patch
diff --git a/meta/recipes-support/gmp/gmp-4.2.1/gmp_fix_for_automake-1.12.patch b/meta/recipes-support/gmp/gmp-4.2.1/gmp_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..fbd8a39
--- /dev/null
+++ b/meta/recipes-support/gmp/gmp-4.2.1/gmp_fix_for_automake-1.12.patch
@@ -0,0 +1,48 @@
+Upstream-Status: Pending
+
+automake 1.12 has depricated automatic de-ANSI-fication support
+
+this patch avoids these kinds of errors:
+
+| configure.in:2240: error: automatic de-ANSI-fication support has been removed
+| Makefile.am:28: error: automatic de-ANSI-fication support has been removed
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/02
+
+Index: gmp-4.2.1/configure.in
+===================================================================
+--- gmp-4.2.1.orig/configure.in
++++ gmp-4.2.1/configure.in
+@@ -67,7 +67,7 @@ dnl
+ 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_INIT_AUTOMAKE([1.8 gnu no-dependencies])
+ AM_CONFIG_HEADER(config.h:config.in)
+ AM_MAINTAINER_MODE
+
+@@ -2022,9 +2022,6 @@ fi
+ echo " MPN_PATH=\"$path\""
+
+
+-# Automake ansi2knr support.
+-AM_C_PROTOTYPES
+-
+ GMP_PROG_AR
+ GMP_PROG_NM
+
+Index: gmp-4.2.1/Makefile.am
+===================================================================
+--- gmp-4.2.1.orig/Makefile.am
++++ gmp-4.2.1/Makefile.am
+@@ -27,7 +27,7 @@
+ # Makefiles in subdirectories, but here we must omit it so automake gives
+ # the actual ansi2knr build rule, not "cd $(top_builddir) && make ansi2knr".
+ #
+-AUTOMAKE_OPTIONS = 1.8 gnu no-dependencies ansi2knr
++AUTOMAKE_OPTIONS = 1.8 gnu no-dependencies
+
+
+ # Libtool -version-info for libgmp.la and libmp.la. See "Versioning" in the
diff --git a/meta/recipes-support/gmp/gmp_4.2.1.bb b/meta/recipes-support/gmp/gmp_4.2.1.bb
index 280b1ab..49ee59b 100644
--- a/meta/recipes-support/gmp/gmp_4.2.1.bb
+++ b/meta/recipes-support/gmp/gmp_4.2.1.bb
@@ -6,10 +6,12 @@ LICENSE = "LGPLv2.1+"
LIC_FILES_CHKSUM = "file://COPYING;md5=892f569a555ba9c07a568a7c0c4fa63a \
file://COPYING.LIB;md5=fbc093901857fcd118f065f900982c24 \
file://gmp-h.in;startline=6;endline=21;md5=5e25ffd16996faba8c1cd27b04b16099"
-PR = "r1"
+PR = "r2"
SRC_URI = "${GNU_MIRROR}/gmp/${BP}.tar.bz2 \
- file://disable-stdc.patch"
+ file://disable-stdc.patch \
+ file://gmp_fix_for_automake-1.12.patch \
+ "
SRC_URI[md5sum] = "091c56e0e1cca6b09b17b69d47ef18e3"
SRC_URI[sha256sum] = "d07ffcb37eecec35c5ec72516d10b35fdf6e6fef1fcf1dcd37e30b8cbf8bf941"
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 24/30] coreutils-native-6.9: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (22 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 23/30] gmp-4.2.1: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 25/30] grub-0.97: " nitin.a.kamble
` (6 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../coreutils_fix_for_automake-1.12.patch | 32 ++++++++++++++++++++
meta/recipes-core/coreutils/coreutils_6.9.bb | 6 ++-
2 files changed, 36 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-core/coreutils/coreutils-6.9/coreutils_fix_for_automake-1.12.patch
diff --git a/meta/recipes-core/coreutils/coreutils-6.9/coreutils_fix_for_automake-1.12.patch b/meta/recipes-core/coreutils/coreutils-6.9/coreutils_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..02730db
--- /dev/null
+++ b/meta/recipes-core/coreutils/coreutils-6.9/coreutils_fix_for_automake-1.12.patch
@@ -0,0 +1,32 @@
+Upstream-Status: Pending
+
+automake 1.12 has depricated automatic de-ANSI-fication support
+
+this patch avoids these kinds of errors:
+
+| configure.ac:40: error: automatic de-ANSI-fication support has been removed
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/aclocal-1.12/protos.m4:12: AM_C_PROTOTYPES is expanded from...
+| /srv/home/nitin/builds/build-gcc47/tmp/work/x86_64-linux/coreutils-native-6.9-r2/coreutils-6.9/m4/jm-macros.m4:138: gl_CHECK_ALL_TYPES is expanded from...
+| /srv/home/nitin/builds/build-gcc47/tmp/work/x86_64-linux/coreutils-native-6.9-r2/coreutils-6.9/m4/jm-macros.m4:24: coreutils_MACROS is expanded from...
+| configure.ac:40: the top level
+| autom4te: m4 failed with exit status: 1
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/04
+
+Index: coreutils-6.9/m4/jm-macros.m4
+===================================================================
+--- coreutils-6.9.orig/m4/jm-macros.m4
++++ coreutils-6.9/m4/jm-macros.m4
+@@ -142,11 +142,6 @@ AC_DEFUN([gl_CHECK_ALL_TYPES],
+ dnl whether functions and headers are available, whether they work, etc.
+ AC_REQUIRE([AC_SYS_LARGEFILE])
+
+- dnl This test must precede tests of compiler characteristics like
+- dnl that for the inline keyword, since it may change the degree to
+- dnl which the compiler supports such features.
+- AC_REQUIRE([AM_C_PROTOTYPES])
+-
+ dnl Checks for typedefs, structures, and compiler characteristics.
+ AC_REQUIRE([AC_C_BIGENDIAN])
+ AC_REQUIRE([AC_C_VOLATILE])
diff --git a/meta/recipes-core/coreutils/coreutils_6.9.bb b/meta/recipes-core/coreutils/coreutils_6.9.bb
index 8a47a60..bbde63c 100644
--- a/meta/recipes-core/coreutils/coreutils_6.9.bb
+++ b/meta/recipes-core/coreutils/coreutils_6.9.bb
@@ -8,7 +8,7 @@ BUGTRACKER = "http://debbugs.gnu.org/coreutils"
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \
file://src/ls.c;startline=4;endline=16;md5=482a96d4f25010a4e13f8743e0c3685e"
-PR = "r2"
+PR = "r3"
DEPENDS = "coreutils-native-${PV}"
DEPENDS_virtclass-native = "gettext-native"
@@ -22,7 +22,9 @@ SRC_URI_BASE = "${GNU_MIRROR}/coreutils/${BP}.tar.bz2 \
file://coreutils-i18n.patch \
file://coreutils-overflow.patch \
file://coreutils-fix-install.patch \
- file://man-touch.patch"
+ file://man-touch.patch \
+ file://coreutils_fix_for_automake-1.12.patch \
+ "
SRC_URI = "${SRC_URI_BASE} file://fix_for_manpage_building.patch"
SRC_URI_virtclass-native = "${SRC_URI_BASE}"
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 25/30] grub-0.97: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (23 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 24/30] coreutils-native-6.9: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 26/30] diffutils-2.8.1: " nitin.a.kamble
` (5 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../grub-0.97/grub_fix_for_automake-1.12.patch | 48 ++++++++++++++++++++
meta/recipes-bsp/grub/grub_0.97.bb | 6 ++-
2 files changed, 52 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-bsp/grub/grub-0.97/grub_fix_for_automake-1.12.patch
diff --git a/meta/recipes-bsp/grub/grub-0.97/grub_fix_for_automake-1.12.patch b/meta/recipes-bsp/grub/grub-0.97/grub_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..97ee0ad
--- /dev/null
+++ b/meta/recipes-bsp/grub/grub-0.97/grub_fix_for_automake-1.12.patch
@@ -0,0 +1,48 @@
+Upstream-Status: Pending
+
+automake 1.12 has depricated automatic de-ANSI-fication support
+
+this patch avoids these kinds of errors:
+
+| stage1/Makefile.am:2: error: 'pkglibdir' is not a legitimate directory for 'DATA'
+| stage2/Makefile.am:35: error: 'pkglibdir' is not a legitimate directory for 'DATA'
+| stage2/Makefile.am:46: error: 'pkglibdir' is not a legitimate directory for 'DATA'
+| autoreconf: automake failed with exit status: 1
+| ERROR: autoreconf execution failed.
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/04
+
+Index: grub-0.97/stage1/Makefile.am
+===================================================================
+--- grub-0.97.orig/stage1/Makefile.am
++++ grub-0.97/stage1/Makefile.am
+@@ -1,5 +1,5 @@
+ pkglibdir = $(libdir)/$(PACKAGE)/$(host_cpu)-$(host_vendor)
+-nodist_pkglib_DATA = stage1
++nodist_pkgdata_DATA = stage1
+
+ CLEANFILES = $(nodist_pkglib_DATA)
+
+Index: grub-0.97/stage2/Makefile.am
+===================================================================
+--- grub-0.97.orig/stage2/Makefile.am
++++ grub-0.97/stage2/Makefile.am
+@@ -32,7 +32,7 @@ pkglibdir = $(libdir)/$(PACKAGE)/$(host_
+ EXTRA_PROGRAMS = nbloader.exec pxeloader.exec diskless.exec
+
+ if DISKLESS_SUPPORT
+-pkglib_DATA = stage2 stage2_eltorito e2fs_stage1_5 fat_stage1_5 \
++pkgdata_DATA = stage2 stage2_eltorito e2fs_stage1_5 fat_stage1_5 \
+ ffs_stage1_5 iso9660_stage1_5 jfs_stage1_5 minix_stage1_5 \
+ reiserfs_stage1_5 ufs2_stage1_5 vstafs_stage1_5 xfs_stage1_5 \
+ nbgrub pxegrub
+@@ -43,7 +43,7 @@ noinst_PROGRAMS = pre_stage2.exec start.
+ reiserfs_stage1_5.exec ufs2_stage1_5.exec vstafs_stage1_5.exec \
+ xfs_stage1_5.exec nbloader.exec pxeloader.exec diskless.exec
+ else
+-pkglib_DATA = stage2 stage2_eltorito e2fs_stage1_5 fat_stage1_5 \
++pkgdata_DATA = stage2 stage2_eltorito e2fs_stage1_5 fat_stage1_5 \
+ ffs_stage1_5 iso9660_stage1_5 jfs_stage1_5 minix_stage1_5 \
+ reiserfs_stage1_5 ufs2_stage1_5 vstafs_stage1_5 xfs_stage1_5
+ noinst_DATA = pre_stage2 start start_eltorito
diff --git a/meta/recipes-bsp/grub/grub_0.97.bb b/meta/recipes-bsp/grub/grub_0.97.bb
index af489fe..1cde30d 100644
--- a/meta/recipes-bsp/grub/grub_0.97.bb
+++ b/meta/recipes-bsp/grub/grub_0.97.bb
@@ -10,11 +10,13 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=c93c0550bd3173f4504b2cbd8991e50b \
file://grub/main.c;beginline=3;endline=9;md5=22a5f28d2130fff9f2a17ed54be90ed6"
RDEPENDS_${PN} = "diffutils"
-PR = "r4"
+PR = "r5"
SRC_URI = "ftp://alpha.gnu.org/gnu/grub/grub-${PV}.tar.gz; \
file://no-reorder-functions.patch \
- file://autohell.patch "
+ file://autohell.patch \
+ file://grub_fix_for_automake-1.12.patch \
+ "
SRC_URI[md5sum] = "cd3f3eb54446be6003156158d51f4884"
SRC_URI[sha256sum] = "4e1d15d12dbd3e9208111d6b806ad5a9857ca8850c47877d36575b904559260b"
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 26/30] diffutils-2.8.1: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (24 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 25/30] grub-0.97: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 27/30] grep-2.5.1a: " nitin.a.kamble
` (4 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../diffutils_fix_for_automake-1.12.patch | 27 ++++++++++++++++++++
meta/recipes-extended/diffutils/diffutils_2.8.1.bb | 6 +++-
2 files changed, 31 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-extended/diffutils/diffutils-2.8.1/diffutils_fix_for_automake-1.12.patch
diff --git a/meta/recipes-extended/diffutils/diffutils-2.8.1/diffutils_fix_for_automake-1.12.patch b/meta/recipes-extended/diffutils/diffutils-2.8.1/diffutils_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..cc05d1d
--- /dev/null
+++ b/meta/recipes-extended/diffutils/diffutils-2.8.1/diffutils_fix_for_automake-1.12.patch
@@ -0,0 +1,27 @@
+Upstream-Status: Pending
+
+automake 1.12 has depricated automatic de-ANSI-fication support
+
+this patch avoids these kinds of errors:
+
+| configure.ac:90: error: automatic de-ANSI-fication support has been removed
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/aclocal-1.12/protos.m4:12: AM_C_PROTOTYPES is expanded from...
+| /srv/home/nitin/builds/build-gcc47/tmp/work/i586-poky-linux/diffutils-2.8.1-r4/diffutils-2.8.1/m4/prereq.m4:110: jm_PREREQ_QUOTEARG is expanded from...
+| configure.ac:90: the top level
+| autom4te: m4 failed with exit status: 1
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/04
+
+Index: diffutils-2.8.1/m4/prereq.m4
+===================================================================
+--- diffutils-2.8.1.orig/m4/prereq.m4
++++ diffutils-2.8.1/m4/prereq.m4
+@@ -115,7 +115,6 @@ AC_DEFUN([jm_PREREQ_QUOTEARG],
+ AC_HEADER_STDC
+ AC_C_BACKSLASH_A
+ AC_MBSTATE_T
+- AM_C_PROTOTYPES
+ ])
+
+ AC_DEFUN([jm_PREREQ_REGEX],
diff --git a/meta/recipes-extended/diffutils/diffutils_2.8.1.bb b/meta/recipes-extended/diffutils/diffutils_2.8.1.bb
index 0fb3a31..09eb71e 100644
--- a/meta/recipes-extended/diffutils/diffutils_2.8.1.bb
+++ b/meta/recipes-extended/diffutils/diffutils_2.8.1.bb
@@ -6,9 +6,11 @@ SECTION = "base"
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
-PR = "r4"
+PR = "r5"
-SRC_URI = "${GNU_MIRROR}/diffutils/diffutils-${PV}.tar.gz"
+SRC_URI = "${GNU_MIRROR}/diffutils/diffutils-${PV}.tar.gz \
+ file://diffutils_fix_for_automake-1.12.patch \
+ "
SRC_URI[md5sum] = "71f9c5ae19b60608f6c7f162da86a428"
SRC_URI[sha256sum] = "c5001748b069224dd98bf1bb9ee877321c7de8b332c8aad5af3e2a7372d23f5a"
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 27/30] grep-2.5.1a: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (25 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 26/30] diffutils-2.8.1: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 28/30] gawk-3.1.5: " nitin.a.kamble
` (3 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../grep-2.5.1a/grep_fix_for_automake-1.12.patch | 52 ++++++++++++++++++++
meta/recipes-extended/grep/grep_2.5.1a.bb | 7 ++-
2 files changed, 57 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-extended/grep/grep-2.5.1a/grep_fix_for_automake-1.12.patch
diff --git a/meta/recipes-extended/grep/grep-2.5.1a/grep_fix_for_automake-1.12.patch b/meta/recipes-extended/grep/grep-2.5.1a/grep_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..3ccce5f
--- /dev/null
+++ b/meta/recipes-extended/grep/grep-2.5.1a/grep_fix_for_automake-1.12.patch
@@ -0,0 +1,52 @@
+Upstream-Status: Pending
+
+automake 1.12 has depricated automatic de-ANSI-fication support
+
+this patch avoids these kinds of errors:
+
+| configure.in:33: error: automatic de-ANSI-fication support has been removed
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/aclocal-1.12/protos.m4:12: AM_C_PROTOTYPES is expanded from...
+| configure.in:33: the top level
+| autom4te: m4 failed with exit status: 1
+...
+| lib/Makefile.am:2: error: automatic de-ANSI-fication support has been removed
+| src/Makefile.am:2: error: automatic de-ANSI-fication support has been removed
+| autoreconf: automake failed with exit status: 1
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/04
+
+Index: grep-2.5.1a/configure.in
+===================================================================
+--- grep-2.5.1a.orig/configure.in
++++ grep-2.5.1a/configure.in
+@@ -30,7 +30,6 @@ AC_PROG_RANLIB
+
+ dnl Checks for typedefs, structures, and compiler characteristics.
+ AC_SYS_LARGEFILE
+-AM_C_PROTOTYPES
+ AC_TYPE_SIZE_T
+ AC_CHECK_TYPE(ssize_t, int)
+ AC_C_CONST
+Index: grep-2.5.1a/lib/Makefile.am
+===================================================================
+--- grep-2.5.1a.orig/lib/Makefile.am
++++ grep-2.5.1a/lib/Makefile.am
+@@ -1,5 +1,5 @@
+ #
+-AUTOMAKE_OPTIONS = ../src/ansi2knr
++AUTOMAKE_OPTIONS =
+
+ SUBDIRS = posix
+
+Index: grep-2.5.1a/src/Makefile.am
+===================================================================
+--- grep-2.5.1a.orig/src/Makefile.am
++++ grep-2.5.1a/src/Makefile.am
+@@ -1,5 +1,5 @@
+ ## Process this file with automake to create Makefile.in
+-AUTOMAKE_OPTIONS = ansi2knr no-dependencies
++AUTOMAKE_OPTIONS = no-dependencies
+
+ LN = ln
+
diff --git a/meta/recipes-extended/grep/grep_2.5.1a.bb b/meta/recipes-extended/grep/grep_2.5.1a.bb
index 64064fc..5aecf17 100644
--- a/meta/recipes-extended/grep/grep_2.5.1a.bb
+++ b/meta/recipes-extended/grep/grep_2.5.1a.bb
@@ -5,10 +5,12 @@ SECTION = "console/utils"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3"
-PR = "r1"
+PR = "r2"
SRC_URI = "${GNU_MIRROR}/grep/grep-${PV}.tar.bz2 \
- file://uclibc-fix.patch"
+ file://uclibc-fix.patch \
+ file://grep_fix_for_automake-1.12.patch \
+ "
SRC_URI[md5sum] = "52202fe462770fa6be1bb667bd6cf30c"
SRC_URI[sha256sum] = "38c8a2bb9223d1fb1b10bdd607cf44830afc92fd451ac4cd07619bf92bdd3132"
@@ -17,6 +19,7 @@ inherit autotools gettext
EXTRA_OECONF = "--disable-perl-regexp --disable-ncurses"
+CFLAGS += "-D PROTOTYPES"
do_configure_prepend () {
rm -f ${S}/m4/init.m4
}
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 00/30] automake 1.12 related fixes
@ 2012-05-23 0:03 nitin.a.kamble
2012-05-23 0:03 ` [PATCH 01/30] gmp: fix build with automake 1.12 nitin.a.kamble
` (30 more replies)
0 siblings, 31 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
The following changes since commit 39a9267dee0a0ee4d87ed51d4a0272549c462b02:
Hob: add '--select a machine--' and '--select a base image--' to GUI (2012-05-22 14:56:17 +0100)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib nitin/automake-1.12-related-fixes
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=nitin/automake-1.12-related-fixes
Nitin A Kamble (30):
gmp: fix build with automake 1.12
mpfr: fix build with automake 1.12
popt: fix build with automake 1.12
rpm: fix build with automake 1.12
libxml2: fix build with automake 1.12
shadow shadow-native: fix build with automake 1.12
jpeg: fix build with automake 1.12
libtasn1: fix build with automake 1.12
systemtap: fix build with automake 1.12
libmpc: fix build with automake 1.12
libcheck: fix build with automake 1.12
texinfo: fix build with automake 1.12
libidn: fix build with automake 1.12
glew: fix build with automake 1.12
findutils: fix build with automake 1.12
gawk: fix build with automake 1.12
lrzsz: fix build with automake 1.12
minicom: fix build with automake 1.12
lighttpd: fix build with automake 1.12
gnutls: fix build with automake 1.12
libfm: fix build with automake 1.12
libcroco: fix build with automake 1.12
gmp-4.2.1: fix build with automake 1.12
coreutils-native-6.9: fix build with automake 1.12
grub-0.97: fix build with automake 1.12
diffutils-2.8.1: fix build with automake 1.12
grep-2.5.1a: fix build with automake 1.12
gawk-3.1.5: fix build with automake 1.12
findutils-4.2.31: fix build with automake 1.12
make-3.81: fix build with automake 1.12
.../grub-0.97/grub_fix_for_automake-1.12.patch | 48 ++++++++++++++++++
meta/recipes-bsp/grub/grub_0.97.bb | 6 ++-
.../lrzsz_fix_for_automake-1.12.patch | 49 ++++++++++++++++++
meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb | 6 ++-
.../coreutils_fix_for_automake-1.12.patch | 32 ++++++++++++
meta/recipes-core/coreutils/coreutils_6.9.bb | 6 ++-
.../jpeg/jpeg-8c/jpeg_fix_for_automake-1.12.patch | 41 +++++++++++++++
meta/recipes-core/jpeg/jpeg_8c.bb | 6 ++-
.../libxml2/libxml2_fix_for_automake_1.12.patch | 23 +++++++++
meta/recipes-core/libxml/libxml2_2.7.8.bb | 5 +-
.../make-3.81/make_fix_for_automake-1.12.patch | 43 ++++++++++++++++
meta/recipes-devtools/make/make_3.81.bb | 4 +-
.../rpm/rpm/rpm_fix_for_automake-1.12.patch | 21 ++++++++
meta/recipes-devtools/rpm/rpm_5.4.0.bb | 3 +-
.../diffutils_fix_for_automake-1.12.patch | 27 ++++++++++
meta/recipes-extended/diffutils/diffutils_2.8.1.bb | 6 ++-
.../findutils_fix_for_automake-1.12.patch | 23 +++++++++
.../findutils_fix_for_automake-1.12.patch | 22 ++++++++
.../recipes-extended/findutils/findutils_4.2.31.bb | 6 ++-
meta/recipes-extended/findutils/findutils_4.4.2.bb | 6 ++-
.../gawk-3.1.5/gawk_fix_for_automake-1.12.patch | 41 +++++++++++++++
.../gawk/gawk/gawk_fix_for_automake-1.12.patch | 23 +++++++++
meta/recipes-extended/gawk/gawk_3.1.5.bb | 2 +
meta/recipes-extended/gawk/gawk_4.0.0.bb | 5 +-
.../grep-2.5.1a/grep_fix_for_automake-1.12.patch | 52 +++++++++++++++++++
meta/recipes-extended/grep/grep_2.5.1a.bb | 7 ++-
.../libidn/libidn_fix_for_automake-1.12.patch | 26 ++++++++++
meta/recipes-extended/libidn/libidn_1.24.bb | 5 +-
.../files/lighttpd_fix_for_automake-1.12.patch | 37 ++++++++++++++
meta/recipes-extended/lighttpd/lighttpd_1.4.30.bb | 5 +-
.../minicom_fix_for_automake-1.12.patch | 21 ++++++++
meta/recipes-extended/minicom/minicom_2.6.1.bb | 3 +
.../files/shadow_fix_for_automake-1.12.patch | 23 +++++++++
.../shadow/shadow-native_4.1.4.3.bb | 6 ++-
meta/recipes-extended/shadow/shadow_4.1.4.3.bb | 6 ++-
.../texinfo_fix_for_automake-1.12.patch | 24 +++++++++
meta/recipes-extended/texinfo/texinfo_4.13a.bb | 3 +-
.../glew/files/glew_fix_for_automake-1.12.patch | 25 +++++++++
meta/recipes-graphics/glew/glew_1.7.0.bb | 3 +-
.../systemtap_fix_for_automake_1.12.patch | 23 +++++++++
meta/recipes-kernel/systemtap/systemtap_git.bb | 2 +-
meta/recipes-kernel/systemtap/systemtap_git.inc | 1 +
.../gmp/gmp-4.2.1/gmp_fix_for_automake-1.12.patch | 48 ++++++++++++++++++
.../gmp/gmp/gmp_fix_for_automake-1.12.patch | 48 ++++++++++++++++++
meta/recipes-support/gmp/gmp_4.2.1.bb | 6 ++-
meta/recipes-support/gmp/gmp_5.0.4.bb | 6 ++-
.../gnutls_fix_for_automake-1.12.patch | 53 ++++++++++++++++++++
meta/recipes-support/gnutls/gnutls_2.12.19.bb | 3 +-
.../libtasn1/libtasn1_fix_for_automake_1.12.patch | 28 ++++++++++
meta/recipes-support/gnutls/libtasn1_2.12.bb | 6 ++-
.../libcheck/libcheck_fix_for_automake-1.12.patch | 26 ++++++++++
meta/recipes-support/libcheck/libcheck_0.9.8.bb | 6 ++-
.../files/libcroco_fix_for_automake-1.12.patch | 22 ++++++++
meta/recipes-support/libcroco/libcroco_0.6.3.bb | 5 +-
.../libfm-0.1.17/libfm_fix_for_automake-1.12.patch | 48 ++++++++++++++++++
meta/recipes-support/libfm/libfm_0.1.17.bb | 6 ++-
.../libmpc/libmpc_fix_for_automake-1.12.patch | 26 ++++++++++
meta/recipes-support/libmpc/libmpc_0.8.2.bb | 5 +-
.../mpfr-3.1.0/mpfr_fix_for_automake-1.12.patch | 35 +++++++++++++
meta/recipes-support/mpfr/mpfr_3.1.0.bb | 7 ++-
.../popt/popt/popt_fix_for_automake-1.12.patch | 21 ++++++++
meta/recipes-support/popt/popt_1.16.bb | 3 +-
62 files changed, 1082 insertions(+), 52 deletions(-)
create mode 100644 meta/recipes-bsp/grub/grub-0.97/grub_fix_for_automake-1.12.patch
create mode 100644 meta/recipes-bsp/lrzsz/lrzsz-0.12.20/lrzsz_fix_for_automake-1.12.patch
create mode 100644 meta/recipes-core/coreutils/coreutils-6.9/coreutils_fix_for_automake-1.12.patch
create mode 100644 meta/recipes-core/jpeg/jpeg-8c/jpeg_fix_for_automake-1.12.patch
create mode 100644 meta/recipes-core/libxml/libxml2/libxml2_fix_for_automake_1.12.patch
create mode 100644 meta/recipes-devtools/make/make-3.81/make_fix_for_automake-1.12.patch
create mode 100644 meta/recipes-devtools/rpm/rpm/rpm_fix_for_automake-1.12.patch
create mode 100644 meta/recipes-extended/diffutils/diffutils-2.8.1/diffutils_fix_for_automake-1.12.patch
create mode 100644 meta/recipes-extended/findutils/findutils-4.2.31/findutils_fix_for_automake-1.12.patch
create mode 100644 meta/recipes-extended/findutils/findutils-4.4.2/findutils_fix_for_automake-1.12.patch
create mode 100644 meta/recipes-extended/gawk/gawk-3.1.5/gawk_fix_for_automake-1.12.patch
create mode 100644 meta/recipes-extended/gawk/gawk/gawk_fix_for_automake-1.12.patch
create mode 100644 meta/recipes-extended/grep/grep-2.5.1a/grep_fix_for_automake-1.12.patch
create mode 100644 meta/recipes-extended/libidn/libidn/libidn_fix_for_automake-1.12.patch
create mode 100644 meta/recipes-extended/lighttpd/files/lighttpd_fix_for_automake-1.12.patch
create mode 100644 meta/recipes-extended/minicom/minicom-2.6.1/minicom_fix_for_automake-1.12.patch
create mode 100644 meta/recipes-extended/shadow/files/shadow_fix_for_automake-1.12.patch
create mode 100644 meta/recipes-extended/texinfo/texinfo-4.13a/texinfo_fix_for_automake-1.12.patch
create mode 100644 meta/recipes-graphics/glew/files/glew_fix_for_automake-1.12.patch
create mode 100644 meta/recipes-kernel/systemtap/systemtap/systemtap_fix_for_automake_1.12.patch
create mode 100644 meta/recipes-support/gmp/gmp-4.2.1/gmp_fix_for_automake-1.12.patch
create mode 100644 meta/recipes-support/gmp/gmp/gmp_fix_for_automake-1.12.patch
create mode 100644 meta/recipes-support/gnutls/gnutls-2.12.18/gnutls_fix_for_automake-1.12.patch
create mode 100644 meta/recipes-support/gnutls/libtasn1/libtasn1_fix_for_automake_1.12.patch
create mode 100644 meta/recipes-support/libcheck/libcheck/libcheck_fix_for_automake-1.12.patch
create mode 100644 meta/recipes-support/libcroco/files/libcroco_fix_for_automake-1.12.patch
create mode 100644 meta/recipes-support/libfm/libfm-0.1.17/libfm_fix_for_automake-1.12.patch
create mode 100644 meta/recipes-support/libmpc/libmpc/libmpc_fix_for_automake-1.12.patch
create mode 100644 meta/recipes-support/mpfr/mpfr-3.1.0/mpfr_fix_for_automake-1.12.patch
create mode 100644 meta/recipes-support/popt/popt/popt_fix_for_automake-1.12.patch
--
1.7.7
^ permalink raw reply [flat|nested] 32+ messages in thread
* [PATCH 28/30] gawk-3.1.5: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (26 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 27/30] grep-2.5.1a: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 29/30] findutils-4.2.31: " nitin.a.kamble
` (2 subsequent siblings)
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../gawk-3.1.5/gawk_fix_for_automake-1.12.patch | 41 ++++++++++++++++++++
meta/recipes-extended/gawk/gawk_3.1.5.bb | 2 +
2 files changed, 43 insertions(+), 0 deletions(-)
create mode 100644 meta/recipes-extended/gawk/gawk-3.1.5/gawk_fix_for_automake-1.12.patch
diff --git a/meta/recipes-extended/gawk/gawk-3.1.5/gawk_fix_for_automake-1.12.patch b/meta/recipes-extended/gawk/gawk-3.1.5/gawk_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..b3e7987
--- /dev/null
+++ b/meta/recipes-extended/gawk/gawk-3.1.5/gawk_fix_for_automake-1.12.patch
@@ -0,0 +1,41 @@
+Upstream-Status: Pending
+
+automake 1.12 has depricated automatic de-ANSI-fication support
+
+this patch avoids these kinds of errors:
+
+| configure.ac:127: error: automatic de-ANSI-fication support has been removed
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/aclocal-1.12/protos.m4:12: AM_C_PROTOTYPES is expanded from...
+| configure.ac:127: the top level
+| autom4te: m4 failed with exit status: 1
+...
+| Makefile.am:27: error: automatic de-ANSI-fication support has been removed
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/04
+
+Index: gawk-3.1.5/configure.ac
+===================================================================
+--- gawk-3.1.5.orig/configure.ac
++++ gawk-3.1.5/configure.ac
+@@ -124,7 +124,6 @@ fi
+
+ dnl check for C compiler for automake
+ AM_PROG_CC_STDC
+-AM_C_PROTOTYPES
+
+ dnl Cygwin doesn't like to get libs with full paths
+ dnl since that overrides linking against DLLs.
+Index: gawk-3.1.5/Makefile.am
+===================================================================
+--- gawk-3.1.5.orig/Makefile.am
++++ gawk-3.1.5/Makefile.am
+@@ -24,7 +24,7 @@
+ ## process this file with automake to produce Makefile.in
+
+ # Automatic de-ANSI-fication if needed, make .bz2 files also.
+-AUTOMAKE_OPTIONS = ansi2knr dist-bzip2
++AUTOMAKE_OPTIONS = dist-bzip2
+
+ # This undocumented variable insures that aclocal runs
+ # correctly after changing configure.ac
diff --git a/meta/recipes-extended/gawk/gawk_3.1.5.bb b/meta/recipes-extended/gawk/gawk_3.1.5.bb
index d5d9bea..4c7cdf3 100644
--- a/meta/recipes-extended/gawk/gawk_3.1.5.bb
+++ b/meta/recipes-extended/gawk/gawk_3.1.5.bb
@@ -34,6 +34,8 @@ ALTERNATIVE_PATH = "gawk"
ALTERNATIVE_LINK = "${bindir}/awk"
ALTERNATIVE_PRIORITY = "100"
+CFLAGS += "-D PROTOTYPES"
+
do_install_append() {
# remove the link since we don't package it
rm ${D}${bindir}/awk
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 29/30] findutils-4.2.31: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (27 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 28/30] gawk-3.1.5: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-23 0:03 ` [PATCH 30/30] make-3.81: " nitin.a.kamble
2012-05-25 16:38 ` [PATCH 00/30] automake 1.12 related fixes Saul Wold
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../findutils_fix_for_automake-1.12.patch | 23 ++++++++++++++++++++
.../recipes-extended/findutils/findutils_4.2.31.bb | 6 +++-
2 files changed, 27 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-extended/findutils/findutils-4.2.31/findutils_fix_for_automake-1.12.patch
diff --git a/meta/recipes-extended/findutils/findutils-4.2.31/findutils_fix_for_automake-1.12.patch b/meta/recipes-extended/findutils/findutils-4.2.31/findutils_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..2d0ddb4
--- /dev/null
+++ b/meta/recipes-extended/findutils/findutils-4.2.31/findutils_fix_for_automake-1.12.patch
@@ -0,0 +1,23 @@
+Upstream-Status: Pending
+
+automake 1.12 has depricated automatic de-ANSI-fication support
+
+this patch avoids these kinds of errors:
+
+| configure.in:75: error: automatic de-ANSI-fication support has been removed
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/04
+
+Index: findutils-4.2.31/configure.in
+===================================================================
+--- findutils-4.2.31.orig/configure.in
++++ findutils-4.2.31/configure.in
+@@ -72,7 +72,6 @@ dnl gl_EARLY calls AC_GNU_SOURCE anyway.
+
+
+ AC_ISC_POSIX
+-AM_C_PROTOTYPES
+
+ AC_PROG_INSTALL
+ AC_PROG_RANLIB
diff --git a/meta/recipes-extended/findutils/findutils_4.2.31.bb b/meta/recipes-extended/findutils/findutils_4.2.31.bb
index 0c37836..37da0ce 100644
--- a/meta/recipes-extended/findutils/findutils_4.2.31.bb
+++ b/meta/recipes-extended/findutils/findutils_4.2.31.bb
@@ -8,10 +8,12 @@ SECTION = "console/utils"
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
-PR = "r2"
+PR = "r3"
SRC_URI = "${GNU_MIRROR}/findutils/findutils-${PV}.tar.gz \
- file://gnulib-extension.patch"
+ file://gnulib-extension.patch \
+ file://findutils_fix_for_automake-1.12.patch \
+ "
SRC_URI[md5sum] = "a0e31a0f18a49709bf5a449867c8049a"
SRC_URI[sha256sum] = "e0d34b8faca0b3cca0703f6c6b498afbe72f0ba16c35980c10ec9ef7724d6204"
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [PATCH 30/30] make-3.81: fix build with automake 1.12
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (28 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 29/30] findutils-4.2.31: " nitin.a.kamble
@ 2012-05-23 0:03 ` nitin.a.kamble
2012-05-25 16:38 ` [PATCH 00/30] automake 1.12 related fixes Saul Wold
30 siblings, 0 replies; 32+ messages in thread
From: nitin.a.kamble @ 2012-05-23 0:03 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../make-3.81/make_fix_for_automake-1.12.patch | 43 ++++++++++++++++++++
meta/recipes-devtools/make/make_3.81.bb | 4 +-
2 files changed, 46 insertions(+), 1 deletions(-)
create mode 100644 meta/recipes-devtools/make/make-3.81/make_fix_for_automake-1.12.patch
diff --git a/meta/recipes-devtools/make/make-3.81/make_fix_for_automake-1.12.patch b/meta/recipes-devtools/make/make-3.81/make_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..9b2e964
--- /dev/null
+++ b/meta/recipes-devtools/make/make-3.81/make_fix_for_automake-1.12.patch
@@ -0,0 +1,43 @@
+Upstream-Status: Pending
+
+automake 1.12 has depricated automatic de-ANSI-fication support
+
+this patch avoids these kinds of errors:
+
+| configure.in:48: error: automatic de-ANSI-fication support has been removed
+...
+| Makefile.am:19: error: automatic de-ANSI-fication support has been removed
+| autoreconf: automake failed with exit status: 1
+| ERROR: autoreconf execution failed.
+
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/04
+
+Index: make-3.81/configure.in
+===================================================================
+--- make-3.81.orig/configure.in
++++ make-3.81/configure.in
+@@ -44,9 +44,6 @@ AC_AIX
+ AC_ISC_POSIX
+ AC_MINIX
+
+-# Needed for ansi2knr
+-AM_C_PROTOTYPES
+-
+ # Enable gettext, in "external" mode.
+
+ AM_GNU_GETTEXT_VERSION(0.14.1)
+Index: make-3.81/Makefile.am
+===================================================================
+--- make-3.81.orig/Makefile.am
++++ make-3.81/Makefile.am
+@@ -16,7 +16,7 @@
+ # GNU Make; see the file COPYING. If not, write to the Free Software
+ # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+
+-AUTOMAKE_OPTIONS = 1.8 dist-bzip2 check-news ansi2knr
++AUTOMAKE_OPTIONS = 1.8 dist-bzip2 check-news
+ ACLOCAL_AMFLAGS = -I config
+
+ MAKE_HOST = @MAKE_HOST@
diff --git a/meta/recipes-devtools/make/make_3.81.bb b/meta/recipes-devtools/make/make_3.81.bb
index 9458c39..45ab6ca 100644
--- a/meta/recipes-devtools/make/make_3.81.bb
+++ b/meta/recipes-devtools/make/make_3.81.bb
@@ -1,4 +1,4 @@
-PR = "r0"
+PR = "r1"
LICENSE = "GPLv2 & LGPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f \
@@ -7,6 +7,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f \
require make.inc
+SRC_URI += "file://make_fix_for_automake-1.12.patch"
+
SRC_URI[md5sum] = "354853e0b2da90c527e35aabb8d6f1e6"
SRC_URI[sha256sum] = "f3e69023771e23908f5d5592954d8271d3d6af09693cecfd29cee6fde8550dc8"
--
1.7.7
^ permalink raw reply related [flat|nested] 32+ messages in thread
* Re: [PATCH 00/30] automake 1.12 related fixes
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
` (29 preceding siblings ...)
2012-05-23 0:03 ` [PATCH 30/30] make-3.81: " nitin.a.kamble
@ 2012-05-25 16:38 ` Saul Wold
30 siblings, 0 replies; 32+ messages in thread
From: Saul Wold @ 2012-05-25 16:38 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On 05/22/2012 05:03 PM, nitin.a.kamble@intel.com wrote:
> From: Nitin A Kamble<nitin.a.kamble@intel.com>
>
> The following changes since commit 39a9267dee0a0ee4d87ed51d4a0272549c462b02:
>
> Hob: add '--select a machine--' and '--select a base image--' to GUI (2012-05-22 14:56:17 +0100)
>
> are available in the git repository at:
> git://git.pokylinux.org/poky-contrib nitin/automake-1.12-related-fixes
> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=nitin/automake-1.12-related-fixes
>
> Nitin A Kamble (30):
> gmp: fix build with automake 1.12
> mpfr: fix build with automake 1.12
> popt: fix build with automake 1.12
> rpm: fix build with automake 1.12
> libxml2: fix build with automake 1.12
> shadow shadow-native: fix build with automake 1.12
> jpeg: fix build with automake 1.12
Patch failure
> libtasn1: fix build with automake 1.12
> systemtap: fix build with automake 1.12
> libmpc: fix build with automake 1.12
> libcheck: fix build with automake 1.12
> texinfo: fix build with automake 1.12
> libidn: fix build with automake 1.12
> glew: fix build with automake 1.12
> findutils: fix build with automake 1.12
> gawk: fix build with automake 1.12
Issue with patch
> lrzsz: fix build with automake 1.12
> minicom: fix build with automake 1.12
> lighttpd: fix build with automake 1.12
> gnutls: fix build with automake 1.12
Patch did not apply correctly
> libfm: fix build with automake 1.12
> libcroco: fix build with automake 1.12
> gmp-4.2.1: fix build with automake 1.12
> coreutils-native-6.9: fix build with automake 1.12
> grub-0.97: fix build with automake 1.12
> diffutils-2.8.1: fix build with automake 1.12
> grep-2.5.1a: fix build with automake 1.12
> gawk-3.1.5: fix build with automake 1.12
> findutils-4.2.31: fix build with automake 1.12
> make-3.81: fix build with automake 1.12
>
Merged this set a part for the ones noted above
Sau!
> .../grub-0.97/grub_fix_for_automake-1.12.patch | 48 ++++++++++++++++++
> meta/recipes-bsp/grub/grub_0.97.bb | 6 ++-
> .../lrzsz_fix_for_automake-1.12.patch | 49 ++++++++++++++++++
> meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb | 6 ++-
> .../coreutils_fix_for_automake-1.12.patch | 32 ++++++++++++
> meta/recipes-core/coreutils/coreutils_6.9.bb | 6 ++-
> .../jpeg/jpeg-8c/jpeg_fix_for_automake-1.12.patch | 41 +++++++++++++++
> meta/recipes-core/jpeg/jpeg_8c.bb | 6 ++-
> .../libxml2/libxml2_fix_for_automake_1.12.patch | 23 +++++++++
> meta/recipes-core/libxml/libxml2_2.7.8.bb | 5 +-
> .../make-3.81/make_fix_for_automake-1.12.patch | 43 ++++++++++++++++
> meta/recipes-devtools/make/make_3.81.bb | 4 +-
> .../rpm/rpm/rpm_fix_for_automake-1.12.patch | 21 ++++++++
> meta/recipes-devtools/rpm/rpm_5.4.0.bb | 3 +-
> .../diffutils_fix_for_automake-1.12.patch | 27 ++++++++++
> meta/recipes-extended/diffutils/diffutils_2.8.1.bb | 6 ++-
> .../findutils_fix_for_automake-1.12.patch | 23 +++++++++
> .../findutils_fix_for_automake-1.12.patch | 22 ++++++++
> .../recipes-extended/findutils/findutils_4.2.31.bb | 6 ++-
> meta/recipes-extended/findutils/findutils_4.4.2.bb | 6 ++-
> .../gawk-3.1.5/gawk_fix_for_automake-1.12.patch | 41 +++++++++++++++
> .../gawk/gawk/gawk_fix_for_automake-1.12.patch | 23 +++++++++
> meta/recipes-extended/gawk/gawk_3.1.5.bb | 2 +
> meta/recipes-extended/gawk/gawk_4.0.0.bb | 5 +-
> .../grep-2.5.1a/grep_fix_for_automake-1.12.patch | 52 +++++++++++++++++++
> meta/recipes-extended/grep/grep_2.5.1a.bb | 7 ++-
> .../libidn/libidn_fix_for_automake-1.12.patch | 26 ++++++++++
> meta/recipes-extended/libidn/libidn_1.24.bb | 5 +-
> .../files/lighttpd_fix_for_automake-1.12.patch | 37 ++++++++++++++
> meta/recipes-extended/lighttpd/lighttpd_1.4.30.bb | 5 +-
> .../minicom_fix_for_automake-1.12.patch | 21 ++++++++
> meta/recipes-extended/minicom/minicom_2.6.1.bb | 3 +
> .../files/shadow_fix_for_automake-1.12.patch | 23 +++++++++
> .../shadow/shadow-native_4.1.4.3.bb | 6 ++-
> meta/recipes-extended/shadow/shadow_4.1.4.3.bb | 6 ++-
> .../texinfo_fix_for_automake-1.12.patch | 24 +++++++++
> meta/recipes-extended/texinfo/texinfo_4.13a.bb | 3 +-
> .../glew/files/glew_fix_for_automake-1.12.patch | 25 +++++++++
> meta/recipes-graphics/glew/glew_1.7.0.bb | 3 +-
> .../systemtap_fix_for_automake_1.12.patch | 23 +++++++++
> meta/recipes-kernel/systemtap/systemtap_git.bb | 2 +-
> meta/recipes-kernel/systemtap/systemtap_git.inc | 1 +
> .../gmp/gmp-4.2.1/gmp_fix_for_automake-1.12.patch | 48 ++++++++++++++++++
> .../gmp/gmp/gmp_fix_for_automake-1.12.patch | 48 ++++++++++++++++++
> meta/recipes-support/gmp/gmp_4.2.1.bb | 6 ++-
> meta/recipes-support/gmp/gmp_5.0.4.bb | 6 ++-
> .../gnutls_fix_for_automake-1.12.patch | 53 ++++++++++++++++++++
> meta/recipes-support/gnutls/gnutls_2.12.19.bb | 3 +-
> .../libtasn1/libtasn1_fix_for_automake_1.12.patch | 28 ++++++++++
> meta/recipes-support/gnutls/libtasn1_2.12.bb | 6 ++-
> .../libcheck/libcheck_fix_for_automake-1.12.patch | 26 ++++++++++
> meta/recipes-support/libcheck/libcheck_0.9.8.bb | 6 ++-
> .../files/libcroco_fix_for_automake-1.12.patch | 22 ++++++++
> meta/recipes-support/libcroco/libcroco_0.6.3.bb | 5 +-
> .../libfm-0.1.17/libfm_fix_for_automake-1.12.patch | 48 ++++++++++++++++++
> meta/recipes-support/libfm/libfm_0.1.17.bb | 6 ++-
> .../libmpc/libmpc_fix_for_automake-1.12.patch | 26 ++++++++++
> meta/recipes-support/libmpc/libmpc_0.8.2.bb | 5 +-
> .../mpfr-3.1.0/mpfr_fix_for_automake-1.12.patch | 35 +++++++++++++
> meta/recipes-support/mpfr/mpfr_3.1.0.bb | 7 ++-
> .../popt/popt/popt_fix_for_automake-1.12.patch | 21 ++++++++
> meta/recipes-support/popt/popt_1.16.bb | 3 +-
> 62 files changed, 1082 insertions(+), 52 deletions(-)
> create mode 100644 meta/recipes-bsp/grub/grub-0.97/grub_fix_for_automake-1.12.patch
> create mode 100644 meta/recipes-bsp/lrzsz/lrzsz-0.12.20/lrzsz_fix_for_automake-1.12.patch
> create mode 100644 meta/recipes-core/coreutils/coreutils-6.9/coreutils_fix_for_automake-1.12.patch
> create mode 100644 meta/recipes-core/jpeg/jpeg-8c/jpeg_fix_for_automake-1.12.patch
> create mode 100644 meta/recipes-core/libxml/libxml2/libxml2_fix_for_automake_1.12.patch
> create mode 100644 meta/recipes-devtools/make/make-3.81/make_fix_for_automake-1.12.patch
> create mode 100644 meta/recipes-devtools/rpm/rpm/rpm_fix_for_automake-1.12.patch
> create mode 100644 meta/recipes-extended/diffutils/diffutils-2.8.1/diffutils_fix_for_automake-1.12.patch
> create mode 100644 meta/recipes-extended/findutils/findutils-4.2.31/findutils_fix_for_automake-1.12.patch
> create mode 100644 meta/recipes-extended/findutils/findutils-4.4.2/findutils_fix_for_automake-1.12.patch
> create mode 100644 meta/recipes-extended/gawk/gawk-3.1.5/gawk_fix_for_automake-1.12.patch
> create mode 100644 meta/recipes-extended/gawk/gawk/gawk_fix_for_automake-1.12.patch
> create mode 100644 meta/recipes-extended/grep/grep-2.5.1a/grep_fix_for_automake-1.12.patch
> create mode 100644 meta/recipes-extended/libidn/libidn/libidn_fix_for_automake-1.12.patch
> create mode 100644 meta/recipes-extended/lighttpd/files/lighttpd_fix_for_automake-1.12.patch
> create mode 100644 meta/recipes-extended/minicom/minicom-2.6.1/minicom_fix_for_automake-1.12.patch
> create mode 100644 meta/recipes-extended/shadow/files/shadow_fix_for_automake-1.12.patch
> create mode 100644 meta/recipes-extended/texinfo/texinfo-4.13a/texinfo_fix_for_automake-1.12.patch
> create mode 100644 meta/recipes-graphics/glew/files/glew_fix_for_automake-1.12.patch
> create mode 100644 meta/recipes-kernel/systemtap/systemtap/systemtap_fix_for_automake_1.12.patch
> create mode 100644 meta/recipes-support/gmp/gmp-4.2.1/gmp_fix_for_automake-1.12.patch
> create mode 100644 meta/recipes-support/gmp/gmp/gmp_fix_for_automake-1.12.patch
> create mode 100644 meta/recipes-support/gnutls/gnutls-2.12.18/gnutls_fix_for_automake-1.12.patch
> create mode 100644 meta/recipes-support/gnutls/libtasn1/libtasn1_fix_for_automake_1.12.patch
> create mode 100644 meta/recipes-support/libcheck/libcheck/libcheck_fix_for_automake-1.12.patch
> create mode 100644 meta/recipes-support/libcroco/files/libcroco_fix_for_automake-1.12.patch
> create mode 100644 meta/recipes-support/libfm/libfm-0.1.17/libfm_fix_for_automake-1.12.patch
> create mode 100644 meta/recipes-support/libmpc/libmpc/libmpc_fix_for_automake-1.12.patch
> create mode 100644 meta/recipes-support/mpfr/mpfr-3.1.0/mpfr_fix_for_automake-1.12.patch
> create mode 100644 meta/recipes-support/popt/popt/popt_fix_for_automake-1.12.patch
>
^ permalink raw reply [flat|nested] 32+ messages in thread
end of thread, other threads:[~2012-05-25 16:48 UTC | newest]
Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-23 0:03 [PATCH 00/30] automake 1.12 related fixes nitin.a.kamble
2012-05-23 0:03 ` [PATCH 01/30] gmp: fix build with automake 1.12 nitin.a.kamble
2012-05-23 0:03 ` [PATCH 02/30] mpfr: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 03/30] popt: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 04/30] rpm: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 05/30] libxml2: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 06/30] shadow shadow-native: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 07/30] jpeg: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 08/30] libtasn1: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 09/30] systemtap: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 10/30] libmpc: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 11/30] libcheck: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 12/30] texinfo: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 13/30] libidn: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 14/30] glew: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 15/30] findutils: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 16/30] gawk: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 17/30] lrzsz: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 18/30] minicom: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 19/30] lighttpd: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 20/30] gnutls: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 21/30] libfm: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 22/30] libcroco: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 23/30] gmp-4.2.1: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 24/30] coreutils-native-6.9: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 25/30] grub-0.97: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 26/30] diffutils-2.8.1: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 27/30] grep-2.5.1a: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 28/30] gawk-3.1.5: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 29/30] findutils-4.2.31: " nitin.a.kamble
2012-05-23 0:03 ` [PATCH 30/30] make-3.81: " nitin.a.kamble
2012-05-25 16:38 ` [PATCH 00/30] automake 1.12 related fixes Saul Wold
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox