diff options
author | Timo Teräs <timo.teras@iki.fi> | 2013-01-14 15:32:43 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2013-01-14 15:32:43 +0200 |
commit | 3fe73e04397a3ed9c88e92deef2e0c09ed2a5f28 (patch) | |
tree | a6ed6d4bc0ac8e4c830703f6df81a60ca3a3fd31 /main/gdnsd | |
parent | 417e7ba5f6ca607f94f008a3445a2839bef60a6f (diff) | |
download | aports-3fe73e04397a3ed9c88e92deef2e0c09ed2a5f28.tar.bz2 aports-3fe73e04397a3ed9c88e92deef2e0c09ed2a5f28.tar.xz |
main/gdnsd: compat with older autotools
the requirement for new versions is strict; and we are not having
them in alpine 2.4.
Diffstat (limited to 'main/gdnsd')
-rw-r--r-- | main/gdnsd/APKBUILD | 2 | ||||
-rw-r--r-- | main/gdnsd/gdnsd-autotools-compat.patch | 13 |
2 files changed, 15 insertions, 0 deletions
diff --git a/main/gdnsd/APKBUILD b/main/gdnsd/APKBUILD index d9fafbf4ce..259e6393e5 100644 --- a/main/gdnsd/APKBUILD +++ b/main/gdnsd/APKBUILD @@ -15,6 +15,7 @@ subpackages="$pkgname-dev $pkgname-doc" source="https://github.com/downloads/blblack/gdnsd/gdnsd-$pkgver.tar.xz geoip-autodc.patch geoip-speedup.patch + gdnsd-autotools-compat.patch 0001-preliminary-djbdns-support.patch gdnsd.initd" @@ -57,5 +58,6 @@ package() { md5sums="c8ea1da00fabc52e3d685528444f1279 gdnsd-1.6.9.tar.xz 02eb668b6cad54552568a35985f44a09 geoip-autodc.patch 7fb697653b8295322e53492f9051e831 geoip-speedup.patch +29eed0745027b85abfdc61ed991d7f19 gdnsd-autotools-compat.patch 4c8ff14e377fb8f1854b68b7bf9be282 0001-preliminary-djbdns-support.patch 00f2838e0908effaaa2f6e6a1699f25b gdnsd.initd" diff --git a/main/gdnsd/gdnsd-autotools-compat.patch b/main/gdnsd/gdnsd-autotools-compat.patch new file mode 100644 index 0000000000..94d01f3f63 --- /dev/null +++ b/main/gdnsd/gdnsd-autotools-compat.patch @@ -0,0 +1,13 @@ +--- gdnsd-1.6.9/configure.ac ++++ gdnsd-1.6.9/configure.ac +@@ -1,8 +1,8 @@ + AC_INIT([gdnsd],[1.6.9],[blblack@gmail.com],[gdnsd],[https://github.com/blblack/gdnsd]) +-AC_PREREQ([2.69]) ++AC_PREREQ([2.68]) + AC_CONFIG_AUX_DIR([acaux]) + AC_CONFIG_MACRO_DIR([m4]) +-AM_INIT_AUTOMAKE([1.12 dist-xz foreign tar-ustar -Wall]) ++AM_INIT_AUTOMAKE([1.11 dist-xz foreign tar-ustar -Wall]) + AM_SILENT_RULES([yes]) + + dnl These lines pretty much *have* to be in this order, and before |