summaryrefslogtreecommitdiffstats
path: root/testing/asterisk-dongle/APKBUILD
diff options
context:
space:
mode:
authorTimo Teräs <timo.teras@iki.fi>2012-07-10 10:58:44 +0300
committerTimo Teräs <timo.teras@iki.fi>2012-07-10 10:58:44 +0300
commitcebc5ae5982e95ad03c3b9309e5d88e9eaf54018 (patch)
tree21e05f72c3f08f44d7c8d12e9495be84950092fc /testing/asterisk-dongle/APKBUILD
parent3daed708cd0bf39ab7ab07c6be9614d464f5c6ff (diff)
downloadaports-cebc5ae5982e95ad03c3b9309e5d88e9eaf54018.tar.bz2
aports-cebc5ae5982e95ad03c3b9309e5d88e9eaf54018.tar.xz
testing/asterisk-dongle: explicitly link to libiconv
Seems that it assumed asterisk to be linked against libiconv which is not the case. Even then, we should have explicit linking for the library to avoid underlinking.
Diffstat (limited to 'testing/asterisk-dongle/APKBUILD')
-rw-r--r--testing/asterisk-dongle/APKBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/asterisk-dongle/APKBUILD b/testing/asterisk-dongle/APKBUILD
index 85777479e..614ecc6b9 100644
--- a/testing/asterisk-dongle/APKBUILD
+++ b/testing/asterisk-dongle/APKBUILD
@@ -3,7 +3,7 @@
SVNREV=27
pkgname=asterisk-dongle
pkgver=1.1.$SVNREV
-pkgrel=0
+pkgrel=1
pkgdesc="GSM modem dongle channel driver"
url="http://code.google.com/p/asterisk-chan-dongle/"
arch="all"
@@ -33,7 +33,7 @@ prepare() {
build() {
cd "$_builddir"
aclocal && autoconf && automake -a
- ./configure || exit 1
+ LDFLAGS="-liconv" ./configure || exit 1
make
}