diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-10-30 10:45:28 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-10-30 10:45:28 +0000 |
commit | 028edd8d602ccf81dcebde0b06220caeca0424a7 (patch) | |
tree | 6317af7c1fcc5a3a0ed9494bafa7c347ec6906fe /testing/agg/APKBUILD | |
parent | 142384e54d2b9ee03c80d9569d4f4e97654862d1 (diff) | |
download | aports-028edd8d602ccf81dcebde0b06220caeca0424a7.tar.bz2 aports-028edd8d602ccf81dcebde0b06220caeca0424a7.tar.xz |
main/agg: fix building with automake-1.12
Diffstat (limited to 'testing/agg/APKBUILD')
-rw-r--r-- | testing/agg/APKBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/testing/agg/APKBUILD b/testing/agg/APKBUILD index 9fb8fa2bfe..2c995fd468 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 } |