summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Østergaard <kloeri@gentoo.org>2005-09-25 15:21:22 +0000
committerBryan Østergaard <kloeri@gentoo.org>2005-09-25 15:21:22 +0000
commit9e930ba7aeb1ab3eba6dae13edcf3236bcb67372 (patch)
treeed4d89cc35030935f8c6ca3aaf9d38df294efb27 /eclass/php-ext-source-r1.eclass
parentRemove gcc 3.4 flag -mno-tls-direct-seg-refs, bug #103827 (diff)
downloadhistorical-9e930ba7aeb1ab3eba6dae13edcf3236bcb67372.tar.gz
historical-9e930ba7aeb1ab3eba6dae13edcf3236bcb67372.tar.bz2
historical-9e930ba7aeb1ab3eba6dae13edcf3236bcb67372.zip
Fix automake errors. Patch by Luca Longinotti (CHTEKK).
Diffstat (limited to 'eclass/php-ext-source-r1.eclass')
-rw-r--r--eclass/php-ext-source-r1.eclass12
1 files changed, 8 insertions, 4 deletions
diff --git a/eclass/php-ext-source-r1.eclass b/eclass/php-ext-source-r1.eclass
index 7a019174a9c4..ad442aae7623 100644
--- a/eclass/php-ext-source-r1.eclass
+++ b/eclass/php-ext-source-r1.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/php-ext-source-r1.eclass,v 1.1 2005/09/04 10:54:53 stuart Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/php-ext-source-r1.eclass,v 1.2 2005/09/25 15:21:22 kloeri Exp $
#
# Author: Tal Peer <coredumb@gentoo.org>
# Author: Stuart Herbert <stuart@gentoo.org>
@@ -25,8 +25,12 @@ EXPORT_FUNCTIONS src_compile src_install
# ---end ebuild configurable settings
DEPEND="${DEPEND}
- >=sys-devel/m4-1.4
- >=sys-devel/libtool-1.4.3"
+ >=sys-devel/m4-1.4.3
+ >=sys-devel/libtool-1.5.18
+ >=sys-devel/automake-1.9.6
+ sys-devel/automake-wrapper
+ >=sys-devel/autoconf-2.59
+ sys-devel/autoconf-wrapper"
php-ext-source-r1_src_compile() {
# pull in the PHP settings
@@ -34,7 +38,7 @@ php-ext-source-r1_src_compile() {
my_conf="${my_conf} --prefix=${PHPPREFIX} --with-php-config=${PHPCONFIG}"
addpredict /usr/share/snmp/mibs/.index
#phpize creates configure out of config.m4
- export WANT_AUTOMAKE=1.6
+ export WANT_AUTOMAKE=1.9 WANT_AUTOCONF=2.5
${PHPIZE}
./configure ${my_conf} || die "Unable to configure code to compile"
emake || die "Unable to make code"