diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2016-04-17 17:24:46 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-04-17 22:17:11 +0200 |
commit | 37fe9e2a946b3d575f3dd2b6489d8101489285b5 (patch) | |
tree | c641d2be30898f59267f4efb24c58a1196bd29b3 | |
parent | 10336c4399fd17b2f293c6680320ec4c893bd89f (diff) | |
download | buildroot-37fe9e2a946b3d575f3dd2b6489d8101489285b5.tar.gz buildroot-37fe9e2a946b3d575f3dd2b6489d8101489285b5.zip |
package/freeswitch: enable mod_cv
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/freeswitch/freeswitch.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/freeswitch/freeswitch.mk b/package/freeswitch/freeswitch.mk index a3382798b5..04c112d212 100644 --- a/package/freeswitch/freeswitch.mk +++ b/package/freeswitch/freeswitch.mk @@ -256,6 +256,11 @@ FREESWITCH_DEPENDENCIES += libsoundtouch FREESWITCH_ENABLED_MODULES += applications/mod_soundtouch endif +ifeq ($(BR2_PACKAGE_OPENCV),y) +FREESWITCH_DEPENDENCIES += opencv +FREESWITCH_ENABLED_MODULES += applications/mod_cv +endif + ifeq ($(BR2_PACKAGE_UNIXODBC),y) FREESWITCH_DEPENDENCIES += unixodbc FREESWITCH_CONF_OPTS += \ |