aboutsummaryrefslogtreecommitdiffstats
path: root/testing/agg
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2012-10-30 10:45:28 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2012-10-30 10:45:28 +0000
commit028edd8d602ccf81dcebde0b06220caeca0424a7 (patch)
tree6317af7c1fcc5a3a0ed9494bafa7c347ec6906fe /testing/agg
parent142384e54d2b9ee03c80d9569d4f4e97654862d1 (diff)
main/agg: fix building with automake-1.12
Diffstat (limited to 'testing/agg')
-rw-r--r--testing/agg/APKBUILD4
1 files changed, 3 insertions, 1 deletions
diff --git a/testing/agg/APKBUILD b/testing/agg/APKBUILD
index 9fb8fa2bfe3..2c995fd468f 100644
--- a/testing/agg/APKBUILD
+++ b/testing/agg/APKBUILD
@@ -2,7 +2,7 @@
# Maintainer: Elizabeth Jennifer Myers <elizabeth@sporksirc.net>
pkgname=agg
pkgver=2.5
-pkgrel=1
+pkgrel=2
pkgdesc="A Rendering Engine for C++"
url="http://antigrain.org/"
license="GPL"
@@ -23,6 +23,8 @@ prepare() {
msg "Applying ${i}"
patch -Np1 -i "$i" || return 1
done
+ # fix building against automake-1.12
+ sed -i '/^AM_C_PROTOTYPES/d' configure.in
sh ./autogen.sh || return 1
}