summaryrefslogtreecommitdiffstats
path: root/main/asterisk/APKBUILD
diff options
context:
space:
mode:
authorTimo Teräs <timo.teras@iki.fi>2012-02-08 10:46:46 +0200
committerTimo Teräs <timo.teras@iki.fi>2012-02-08 10:46:46 +0200
commita5252199bce800136c3427af7e070db7842c6c78 (patch)
tree75669adfeec4f8a0f9e47b021ff1e6a3b1379af4 /main/asterisk/APKBUILD
parent008450c05a4e24e9be538c27f03082e4cdd5fbc3 (diff)
main/asterisk: disable res_n* interface manually
uclibc-0.9.33 implements res_ninit but not res_nquery or others. The configure checks only for res_ninit and assumes other functions are then present too, but this breaks build against new uclibc. Just disable the res_ninit check for now.
Diffstat (limited to 'main/asterisk/APKBUILD')
-rw-r--r--main/asterisk/APKBUILD1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/asterisk/APKBUILD b/main/asterisk/APKBUILD
index adb0664cba8..1559b7ee92c 100644
--- a/main/asterisk/APKBUILD
+++ b/main/asterisk/APKBUILD
@@ -41,6 +41,7 @@ prepare() {
sed -i -e 's:lua5.1/::' pbx/pbx_lua.c
sed -i -e 's/PBX_ICONV=1/PBX_ICONV=0/g' configure.ac
+ sed -i -e 's/int foo = res_ninit(NULL);/res_ninit_is_not_really_here();/g' configure.ac
./bootstrap.sh
}