diff options
| author | Yann E. MORIN <yann.morin.1998@free.fr> | 2018-10-03 15:13:58 +0200 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-10-09 15:13:29 +0200 |
| commit | f0b5c2b8e3e7c5bc4f27d6d6ca43def085a55b00 (patch) | |
| tree | 23f61eff868d67e95b168bccff2823eb27dbcee0 | |
| parent | 2e3f0a500e754b9b3a7ed36a849c137c64f53bfa (diff) | |
| download | buildroot-f0b5c2b8e3e7c5bc4f27d6d6ca43def085a55b00.tar.gz buildroot-f0b5c2b8e3e7c5bc4f27d6d6ca43def085a55b00.zip | |
package/asterisk: add optional spandsp support
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
| -rw-r--r-- | package/asterisk/asterisk.mk | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/package/asterisk/asterisk.mk b/package/asterisk/asterisk.mk index ea779cc8f6..4ed85743b0 100644 --- a/package/asterisk/asterisk.mk +++ b/package/asterisk/asterisk.mk @@ -84,7 +84,6 @@ ASTERISK_CONF_OPTS = \ --without-resample \ --without-sdl \ --without-SDL_image \ - --without-spandsp \ --without-sqlite \ --without-suppserv \ --without-tds \ @@ -229,6 +228,13 @@ else ASTERISK_CONF_OPTS += --without-ssl endif +ifeq ($(BR2_PACKAGE_SPANDSP),y) +ASTERISK_DEPENDENCIES += spandsp +ASTERISK_CONF_OPTS += --with-spandsp +else +ASTERISK_CONF_OPTS += --without-spandsp +endif + ifeq ($(BR2_PACKAGE_SPEEX)$(BR2_PACKAGE_SPEEXDSP),yy) ASTERISK_DEPENDENCIES += speex ASTERISK_CONF_OPTS += --with-speex --with-speexdsp |

