diff options
author | madpilot <madpilot@FreeBSD.org> | 2016-06-07 04:07:26 +0800 |
---|---|---|
committer | madpilot <madpilot@FreeBSD.org> | 2016-06-07 04:07:26 +0800 |
commit | 79e2ba535006d5b6bd4fcf56949dcd5044bb5210 (patch) | |
tree | d4b88b35908aeec923ea2869836228aee32ade7b /net | |
parent | 16072f6605cd81001cc7d5785f33ed4c2101737d (diff) | |
download | freebsd-ports-gnome-79e2ba535006d5b6bd4fcf56949dcd5044bb5210.tar.gz freebsd-ports-gnome-79e2ba535006d5b6bd4fcf56949dcd5044bb5210.tar.zst freebsd-ports-gnome-79e2ba535006d5b6bd4fcf56949dcd5044bb5210.zip |
Force asterisk to use it's internal iLBC implementation.
This prevents asterisk configure script from being confused by
net/libilbc (which is not compatible) if installed on the system.
PR: 210074
Submitted by: Nikolay <technotrance at list.ru>
Diffstat (limited to 'net')
-rw-r--r-- | net/asterisk11/Makefile | 3 | ||||
-rw-r--r-- | net/asterisk13/Makefile | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/net/asterisk11/Makefile b/net/asterisk11/Makefile index b8830acba218..49a3e22d49fc 100644 --- a/net/asterisk11/Makefile +++ b/net/asterisk11/Makefile @@ -29,7 +29,8 @@ USE_OPENSSL= yes USE_RC_SUBR= asterisk GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-crypto=${OPENSSLBASE} \ +CONFIGURE_ARGS+= --with-ilbc=internal \ + --with-crypto=${OPENSSLBASE} \ --with-ssl=${OPENSSLBASE} CPE_VENDOR= digium diff --git a/net/asterisk13/Makefile b/net/asterisk13/Makefile index 5dae0b8d2bd9..a9754c95f265 100644 --- a/net/asterisk13/Makefile +++ b/net/asterisk13/Makefile @@ -32,6 +32,7 @@ USE_RC_SUBR= asterisk GNU_CONFIGURE= yes CONFIGURE_ARGS+= --datarootdir=${DATADIR} \ + --with-ilbc=internal \ --with-crypto=${OPENSSLBASE} \ --with-ssl=${OPENSSLBASE} |