diff options
| author | Yann E. MORIN <yann.morin.1998@free.fr> | 2017-09-09 23:39:15 +0200 |
|---|---|---|
| committer | Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> | 2017-09-23 19:20:18 +0200 |
| commit | 637800de21706bd98e39fed162281763efddbba6 (patch) | |
| tree | 75960c0fbe048f3a065cb6d8cf90fd5b2810deae | |
| parent | 1cf7b3c78b26c52ed8b4b51966c6f1c3ed0742ee (diff) | |
| download | buildroot-637800de21706bd98e39fed162281763efddbba6.tar.gz buildroot-637800de21706bd98e39fed162281763efddbba6.zip | |
package/asterisk: add optional libogg dependency
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
| -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 859129b4fa..bf706f787d 100644 --- a/package/asterisk/asterisk.mk +++ b/package/asterisk/asterisk.mk @@ -79,7 +79,6 @@ ASTERISK_CONF_OPTS = \ --without-neon29 \ --without-netsnmp \ --without-newt \ - --without-ogg \ --without-openr2 \ --without-opus \ --without-osptk \ @@ -158,6 +157,13 @@ else ASTERISK_CONF_OPTS += --without-neon endif +ifeq ($(BR2_PACKAGE_LIBOGG),y) +ASTERISK_DEPENDENCIES += libogg +ASTERISK_CONF_OPTS += --with-ogg +else +ASTERISK_CONF_OPTS += --without-ogg +endif + ifeq ($(BR2_PACKAGE_OPENSSL),y) ASTERISK_DEPENDENCIES += openssl ASTERISK_CONF_OPTS += --with-ssl |

