* [meta-oe] inetutils: fix configure error under automake 1.12
@ 2012-11-01 7:37 Chunrong Guo
2012-11-09 7:53 ` chunrongguo
0 siblings, 1 reply; 2+ messages in thread
From: Chunrong Guo @ 2012-11-01 7:37 UTC (permalink / raw)
To: openembedded-devel
From: chunrong <b40290@freescale.com>
* fix the following error :
configure.ac:572: error: automatic de-ANSI-fication support has been removed
| /tmp/sysroots/x86_64-linux/usr/share/aclocal-1.12/protos.m4:10: AM_C_PROTOTYPES is expanded from...
| configure.ac:572: the top level
| autom4te: m4 failed with exit status: 1
| aclocal: error: tmp/sysroots/x86_64-linux/usr/bin/autom4te failed with exit status: 1
| autoreconf: aclocal failed with exit status: 1
| ERROR: autoreconf execution failed.
| ERROR: Function failed: do_configure (see inetutils-1.8-+fsl/temp/log.do_configure.23693 for further information)
ERROR: meta-oe/recipes-connectivity/inetutils/inetutils_1.8.bb, do_configure) failed with exit code '1'
* automake 1.12 removes support for AM_C_PROTOTYPES.
Signed-off-by: chunrong <b40290@freescale.com>
---
.../inetutils-1.8/disable-pre-ANSI-compilers.patch | 11 +++++++++++
.../inetutils/inetutils-1.8/remove_gets.patch | 13 +++++++++++++
.../inetutils/inetutils_1.8.bb | 4 ++++
3 files changed, 28 insertions(+), 0 deletions(-)
create mode 100644 meta-oe/recipes-connectivity/inetutils/inetutils-1.8/disable-pre-ANSI-compilers.patch
create mode 100644 meta-oe/recipes-connectivity/inetutils/inetutils-1.8/remove_gets.patch
diff --git a/meta-oe/recipes-connectivity/inetutils/inetutils-1.8/disable-pre-ANSI-compilers.patch b/meta-oe/recipes-connectivity/inetutils/inetutils-1.8/disable-pre-ANSI-compilers.patch
new file mode 100644
index 0000000..b945f3a
--- /dev/null
+++ b/meta-oe/recipes-connectivity/inetutils/inetutils-1.8/disable-pre-ANSI-compilers.patch
@@ -0,0 +1,11 @@
+--- inetutils-1.8.org/configure.ac 2012-10-23 02:05:20.516386701 -0500
++++ inetutils-1.8/configure.ac 2012-10-25 21:31:10.602591484 -0500
+@@ -569,7 +569,7 @@
+ IU_CHECK_MEMBERS([struct stat.st_blksize])
+
+ ### Checks for compiler characteristics.
+-AM_C_PROTOTYPES dnl FIXME: Does inetutils even compile on pre-ANSI compilers?
++#AM_C_PROTOTYPES dnl FIXME: Does inetutils even compile on pre-ANSI compilers?
+ AC_C_CONST
+
+ dnl See if `weak refs' are possible; these make it possible (with shared
diff --git a/meta-oe/recipes-connectivity/inetutils/inetutils-1.8/remove_gets.patch b/meta-oe/recipes-connectivity/inetutils/inetutils-1.8/remove_gets.patch
new file mode 100644
index 0000000..f8081a2
--- /dev/null
+++ b/meta-oe/recipes-connectivity/inetutils/inetutils-1.8/remove_gets.patch
@@ -0,0 +1,13 @@
+--- inetutils-1.8.org/lib/stdio.in.h 2010-05-15 06:35:16.000000000 -0500
++++ inetutils-1.8/lib/stdio.in.h 2012-10-25 22:56:43.198607472 -0500
+@@ -138,8 +138,10 @@
+ /* It is very rare that the developer ever has full control of stdin,
+ so any use of gets warrants an unconditional warning. Assume it is
+ always declared, since it is required by C89. */
++#if defined gets
+ #undef gets
+ _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
++#endif
+
+ #if @GNULIB_FOPEN@
+ # if @REPLACE_FOPEN@
diff --git a/meta-oe/recipes-connectivity/inetutils/inetutils_1.8.bb b/meta-oe/recipes-connectivity/inetutils/inetutils_1.8.bb
index ce0df82..761b2e6 100644
--- a/meta-oe/recipes-connectivity/inetutils/inetutils_1.8.bb
+++ b/meta-oe/recipes-connectivity/inetutils/inetutils_1.8.bb
@@ -8,6 +8,8 @@ LICENSE = "GPLv3"
LIC_FILES_CHKSUM = "file://COPYING;md5=adefda309052235aa5d1e99ce7557010"
+PR = "r1"
+
SRC_URI = "${GNU_MIRROR}/inetutils/inetutils-${PV}.tar.gz \
file://inetutils-1.8-0001-printf-parse-pull-in-features.h-for-__GLIBC__.patch \
file://inetutils-1.8-0002-argp-fix-program_invocation_name-detection.patch \
@@ -18,6 +20,8 @@ SRC_URI = "${GNU_MIRROR}/inetutils/inetutils-${PV}.tar.gz \
file://inetutils-1.8-1004-detect-fork-support.patch \
file://inetutils-1.8-1005-ftpd-add-daemon-D-nommu-support.patch \
file://fix-disable-ipv6.patch \
+ file://disable-pre-ANSI-compilers.patch \
+ file://remove_gets.patch \
"
SRC_URI[md5sum] = "ad8fdcdf1797b9ca258264a6b04e48fd"
SRC_URI[sha256sum] = "c8500baee04b9ea408c9e65e24ad7f5b41e7d96d42fb1d29abf25b52b68311c7"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [meta-oe] inetutils: fix configure error under automake 1.12
2012-11-01 7:37 [meta-oe] inetutils: fix configure error under automake 1.12 Chunrong Guo
@ 2012-11-09 7:53 ` chunrongguo
0 siblings, 0 replies; 2+ messages in thread
From: chunrongguo @ 2012-11-09 7:53 UTC (permalink / raw)
To: openembedded-devel
Cc: McClintock Matthew-B29882, Liu, Ting-B28495, Luo Zhenhua-B19537
Ping!
Thanks,
Chunrong
On Thursday, November 01, 2012 03:37 PM, Chunrong Guo wrote:
> From: chunrong <b40290@freescale.com>
>
> * fix the following error :
> configure.ac:572: error: automatic de-ANSI-fication support has been removed
> | /tmp/sysroots/x86_64-linux/usr/share/aclocal-1.12/protos.m4:10: AM_C_PROTOTYPES is expanded from...
> | configure.ac:572: the top level
> | autom4te: m4 failed with exit status: 1
> | aclocal: error: tmp/sysroots/x86_64-linux/usr/bin/autom4te failed with exit status: 1
> | autoreconf: aclocal failed with exit status: 1
> | ERROR: autoreconf execution failed.
> | ERROR: Function failed: do_configure (see inetutils-1.8-+fsl/temp/log.do_configure.23693 for further information)
> ERROR: meta-oe/recipes-connectivity/inetutils/inetutils_1.8.bb, do_configure) failed with exit code '1'
> * automake 1.12 removes support for AM_C_PROTOTYPES.
>
> Signed-off-by: chunrong <b40290@freescale.com>
> ---
> .../inetutils-1.8/disable-pre-ANSI-compilers.patch | 11 +++++++++++
> .../inetutils/inetutils-1.8/remove_gets.patch | 13 +++++++++++++
> .../inetutils/inetutils_1.8.bb | 4 ++++
> 3 files changed, 28 insertions(+), 0 deletions(-)
> create mode 100644 meta-oe/recipes-connectivity/inetutils/inetutils-1.8/disable-pre-ANSI-compilers.patch
> create mode 100644 meta-oe/recipes-connectivity/inetutils/inetutils-1.8/remove_gets.patch
>
> diff --git a/meta-oe/recipes-connectivity/inetutils/inetutils-1.8/disable-pre-ANSI-compilers.patch b/meta-oe/recipes-connectivity/inetutils/inetutils-1.8/disable-pre-ANSI-compilers.patch
> new file mode 100644
> index 0000000..b945f3a
> --- /dev/null
> +++ b/meta-oe/recipes-connectivity/inetutils/inetutils-1.8/disable-pre-ANSI-compilers.patch
> @@ -0,0 +1,11 @@
> +--- inetutils-1.8.org/configure.ac 2012-10-23 02:05:20.516386701 -0500
> ++++ inetutils-1.8/configure.ac 2012-10-25 21:31:10.602591484 -0500
> +@@ -569,7 +569,7 @@
> + IU_CHECK_MEMBERS([struct stat.st_blksize])
> +
> + ### Checks for compiler characteristics.
> +-AM_C_PROTOTYPES dnl FIXME: Does inetutils even compile on pre-ANSI compilers?
> ++#AM_C_PROTOTYPES dnl FIXME: Does inetutils even compile on pre-ANSI compilers?
> + AC_C_CONST
> +
> + dnl See if `weak refs' are possible; these make it possible (with shared
> diff --git a/meta-oe/recipes-connectivity/inetutils/inetutils-1.8/remove_gets.patch b/meta-oe/recipes-connectivity/inetutils/inetutils-1.8/remove_gets.patch
> new file mode 100644
> index 0000000..f8081a2
> --- /dev/null
> +++ b/meta-oe/recipes-connectivity/inetutils/inetutils-1.8/remove_gets.patch
> @@ -0,0 +1,13 @@
> +--- inetutils-1.8.org/lib/stdio.in.h 2010-05-15 06:35:16.000000000 -0500
> ++++ inetutils-1.8/lib/stdio.in.h 2012-10-25 22:56:43.198607472 -0500
> +@@ -138,8 +138,10 @@
> + /* It is very rare that the developer ever has full control of stdin,
> + so any use of gets warrants an unconditional warning. Assume it is
> + always declared, since it is required by C89. */
> ++#if defined gets
> + #undef gets
> + _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
> ++#endif
> +
> + #if @GNULIB_FOPEN@
> + # if @REPLACE_FOPEN@
> diff --git a/meta-oe/recipes-connectivity/inetutils/inetutils_1.8.bb b/meta-oe/recipes-connectivity/inetutils/inetutils_1.8.bb
> index ce0df82..761b2e6 100644
> --- a/meta-oe/recipes-connectivity/inetutils/inetutils_1.8.bb
> +++ b/meta-oe/recipes-connectivity/inetutils/inetutils_1.8.bb
> @@ -8,6 +8,8 @@ LICENSE = "GPLv3"
>
> LIC_FILES_CHKSUM = "file://COPYING;md5=adefda309052235aa5d1e99ce7557010"
>
> +PR = "r1"
> +
> SRC_URI = "${GNU_MIRROR}/inetutils/inetutils-${PV}.tar.gz \
> file://inetutils-1.8-0001-printf-parse-pull-in-features.h-for-__GLIBC__.patch \
> file://inetutils-1.8-0002-argp-fix-program_invocation_name-detection.patch \
> @@ -18,6 +20,8 @@ SRC_URI = "${GNU_MIRROR}/inetutils/inetutils-${PV}.tar.gz \
> file://inetutils-1.8-1004-detect-fork-support.patch \
> file://inetutils-1.8-1005-ftpd-add-daemon-D-nommu-support.patch \
> file://fix-disable-ipv6.patch \
> + file://disable-pre-ANSI-compilers.patch \
> + file://remove_gets.patch \
> "
> SRC_URI[md5sum] = "ad8fdcdf1797b9ca258264a6b04e48fd"
> SRC_URI[sha256sum] = "c8500baee04b9ea408c9e65e24ad7f5b41e7d96d42fb1d29abf25b52b68311c7"
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-11-09 9:03 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-01 7:37 [meta-oe] inetutils: fix configure error under automake 1.12 Chunrong Guo
2012-11-09 7:53 ` chunrongguo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox