diff options
author | stf <s@ctrlc.hu> | 2014-11-20 16:52:16 +0100 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2014-11-20 18:55:04 +0100 |
commit | 38d7e6f250d815517f216c3b0d9a4a74dcc626c1 (patch) | |
tree | bbb843e7e37d1d5606dcc38cc12caa7ddd04fcdf /main/loudmouth | |
parent | 9cefbc68c4ef1b15765558dde49444a0986e346e (diff) | |
download | aports-38d7e6f250d815517f216c3b0d9a4a74dcc626c1.tar.bz2 aports-38d7e6f250d815517f216c3b0d9a4a74dcc626c1.tar.xz |
main/loudmouth: switched back to gnutls to enable TLSv1.2 and ECDH ciphers
Diffstat (limited to 'main/loudmouth')
-rw-r--r-- | main/loudmouth/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/loudmouth/APKBUILD b/main/loudmouth/APKBUILD index e4e38b8c05..aa951df6f1 100644 --- a/main/loudmouth/APKBUILD +++ b/main/loudmouth/APKBUILD @@ -8,7 +8,7 @@ url="http://groups.google.com/group/loudmouth-dev" arch="all" license="LGPL2+" depends="" -depends_dev="pkgconfig glib-dev openssl-dev libidn-dev libasyncns-dev check-dev" +depends_dev="pkgconfig glib-dev gnutls-dev libidn-dev libasyncns-dev check-dev autoconf" makedepends="$depends_dev" install="" subpackages="$pkgname-dev $pkgname-doc" @@ -33,12 +33,12 @@ prepare() { build() { cd "$_builddir" + autoconf ./configure \ --build=$CBUILD \ --host=$CHOST \ --disable-static \ --with-asyncns=yes \ - --with-ssl=openssl \ --prefix=/usr \ --with-libgnutls-prefix=/usr \ --infodir=/usr/share/info \ |