summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2012-07-26 16:35:01 +0000
committerMike Frysinger <vapier@gentoo.org>2012-07-26 16:35:01 +0000
commit00556355db0b8966eb3f343ac4f30cc8f9fc7861 (patch)
treef5da09605b95182a7c898df4e25e8092f6ea30ff /sys-apps/file
parentold (diff)
downloadgentoo-2-00556355db0b8966eb3f343ac4f30cc8f9fc7861.tar.gz
gentoo-2-00556355db0b8966eb3f343ac4f30cc8f9fc7861.tar.bz2
gentoo-2-00556355db0b8966eb3f343ac4f30cc8f9fc7861.zip
Drop -D_GNU_SOURCE as it does not appear to be needed anymore -- compiles clean w/out it #428096 by Pacho Ramos.
(Portage version: 2.2.0_alpha116/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/file')
-rw-r--r--sys-apps/file/ChangeLog6
-rw-r--r--sys-apps/file/file-5.11.ebuild7
2 files changed, 7 insertions, 6 deletions
diff --git a/sys-apps/file/ChangeLog b/sys-apps/file/ChangeLog
index e6fe22e4d91c..97b12da75dae 100644
--- a/sys-apps/file/ChangeLog
+++ b/sys-apps/file/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-apps/file
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.224 2012/07/22 17:46:57 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.225 2012/07/26 16:35:01 vapier Exp $
+
+ 26 Jul 2012; Mike Frysinger <vapier@gentoo.org> file-5.11.ebuild:
+ Drop -D_GNU_SOURCE as it does not appear to be needed anymore -- compiles
+ clean w/out it #428096 by Pacho Ramos.
22 Jul 2012; Jeroen Roovers <jer@gentoo.org> file-5.11.ebuild:
Stable for HPPA (bug #427368).
diff --git a/sys-apps/file/file-5.11.ebuild b/sys-apps/file/file-5.11.ebuild
index ad9535445769..c980da1e13f5 100644
--- a/sys-apps/file/file-5.11.ebuild
+++ b/sys-apps/file/file-5.11.ebuild
@@ -1,13 +1,13 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.11.ebuild,v 1.7 2012/07/22 17:46:57 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.11.ebuild,v 1.8 2012/07/26 16:35:01 vapier Exp $
EAPI="2"
PYTHON_DEPEND="python? *"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="*-jython"
-inherit eutils distutils libtool flag-o-matic toolchain-funcs
+inherit eutils distutils libtool toolchain-funcs
DESCRIPTION="identify a file's format by scanning binary data for patterns"
HOMEPAGE="ftp://ftp.astron.com/pub/file/"
@@ -43,9 +43,6 @@ do_configure() {
popd >/dev/null
}
src_configure() {
- # file uses things like strndup() and wcwidth()
- append-flags -D_GNU_SOURCE
-
# when cross-compiling, we need to build up our own file
# because people often don't keep matching host/target
# file versions #362941