FS-10050: fix build issues and add mod_video_filter to packages
This commit is contained in:
parent
1f6b66a8a6
commit
c9aa35227a
|
@ -1,6 +1,5 @@
|
|||
#applications/mod_abstraction
|
||||
#applications/mod_av
|
||||
#applications/mod_video_filter
|
||||
#applications/mod_avmd
|
||||
#applications/mod_bert
|
||||
#applications/mod_blacklist
|
||||
|
@ -51,6 +50,7 @@ applications/mod_spandsp
|
|||
#applications/mod_stress
|
||||
#applications/mod_translate
|
||||
applications/mod_valet_parking
|
||||
#applications/mod_video_filter
|
||||
#applications/mod_vmd
|
||||
applications/mod_voicemail
|
||||
#applications/mod_voicemail_ivr
|
||||
|
|
|
@ -48,6 +48,7 @@ applications/mod_spy
|
|||
applications/mod_stress
|
||||
applications/mod_translate
|
||||
applications/mod_valet_parking
|
||||
applications/mod_video_filter
|
||||
applications/mod_vmd
|
||||
applications/mod_voicemail
|
||||
applications/mod_voicemail_ivr
|
||||
|
|
|
@ -632,6 +632,7 @@ Depends: \${misc:Depends}, freeswitch (= \${binary:Version}),
|
|||
freeswitch-mod-stress (= \${binary:Version}),
|
||||
freeswitch-mod-translate (= \${binary:Version}),
|
||||
freeswitch-mod-valet-parking (= \${binary:Version}),
|
||||
freeswitch-mod-video_filter (= \${binary:Version}),
|
||||
freeswitch-mod-voicemail (= \${binary:Version}),
|
||||
freeswitch-mod-voicemail-ivr (= \${binary:Version}),
|
||||
freeswitch-mod-flite (= \${binary:Version}),
|
||||
|
@ -870,6 +871,7 @@ Depends: \${misc:Depends}, freeswitch (= \${binary:Version}),
|
|||
freeswitch-mod-stress-dbg (= \${binary:Version}),
|
||||
freeswitch-mod-translate-dbg (= \${binary:Version}),
|
||||
freeswitch-mod-valet-parking-dbg (= \${binary:Version}),
|
||||
freeswitch-mod-video_filter-dbg (= \${binary:Version}),
|
||||
freeswitch-mod-voicemail-dbg (= \${binary:Version}),
|
||||
freeswitch-mod-voicemail-ivr-dbg (= \${binary:Version}),
|
||||
freeswitch-mod-flite-dbg (= \${binary:Version}),
|
||||
|
|
|
@ -250,6 +250,10 @@ Module: applications/mod_valet_parking
|
|||
Description: Valet parking
|
||||
This module implements the valet call parking strategy.
|
||||
|
||||
Module: applications/mod_video_filter
|
||||
Description: Video filter chromakey
|
||||
This module provides a media bug for chromakey functionality
|
||||
|
||||
Module: applications/mod_vmd
|
||||
Description: Voicemail detection
|
||||
This module detects voicemail beeps at any frequency in O(1) time.
|
||||
|
|
|
@ -609,6 +609,14 @@ Provides FreeSWITCH mod_valet_parking. Provides 'Call Parking' in the switch
|
|||
as opposed to on the phone and allows for a number of options to handle call
|
||||
retrieval
|
||||
|
||||
%package application-video_filter
|
||||
Summary: FreeSWITCH video filter bugs
|
||||
Group: System/Libraries
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
|
||||
%description application-video_filter
|
||||
Provide a chromakey video filter media bug
|
||||
|
||||
%package application-voicemail
|
||||
Summary: FreeSWITCH mod_voicemail
|
||||
Group: System/Libraries
|
||||
|
@ -1366,6 +1374,7 @@ Requires: freeswitch-application-soundtouch
|
|||
Requires: freeswitch-application-spy
|
||||
Requires: freeswitch-application-stress
|
||||
Requires: freeswitch-application-valet_parking
|
||||
Requires: freeswitch-application-video_filter
|
||||
Requires: freeswitch-application-voicemail
|
||||
Requires: freeswitch-application-voicemail-ivr
|
||||
Requires: freeswitch-codec-passthru-amr
|
||||
|
@ -1446,7 +1455,7 @@ APPLICATION_MODULES_FR="applications/mod_fifo applications/mod_fsk applications/
|
|||
APPLICATION_MODULES_SZ="applications/mod_sms applications/mod_snapshot applications/mod_snom applications/mod_soundtouch \
|
||||
applications/mod_spandsp applications/mod_spy applications/mod_stress \
|
||||
applications/mod_valet_parking applications/mod_translate applications/mod_voicemail \
|
||||
applications/mod_voicemail_ivr"
|
||||
applications/mod_voicemail_ivr applications/mod_video_filter"
|
||||
|
||||
APPLICATIONS_MODULES="$APPLICATION_MODULES_AC $APPLICATION_MODULES_DE $APPLICATION_MODULES_FR $APPLICATION_MODULES_SZ"
|
||||
|
||||
|
@ -2121,6 +2130,9 @@ fi
|
|||
%files application-valet_parking
|
||||
%{MODINSTDIR}/mod_valet_parking.so*
|
||||
|
||||
%files application-video_filter
|
||||
%{MODINSTDIR}/mod_video_filter.so*
|
||||
|
||||
%files application-voicemail
|
||||
%{MODINSTDIR}/mod_voicemail.so*
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ include $(top_srcdir)/build/modmake.rulesam
|
|||
MODNAME=mod_video_filter
|
||||
|
||||
mod_LTLIBRARIES = mod_video_filter.la
|
||||
mod_av_la_SOURCES = mod_video_filter.c
|
||||
mod_av_la_CFLAGS = $(AM_CFLAGS)
|
||||
mod_av_la_LIBADD = $(switch_builddir)/libfreeswitch.la
|
||||
mod_av_la_LDFLAGS = -avoid-version -module -no-undefined -shared -lm -lz
|
||||
mod_video_filter_la_SOURCES = mod_video_filter.c
|
||||
mod_video_filter_la_CFLAGS = $(AM_CFLAGS)
|
||||
mod_video_filter_la_LIBADD = $(switch_builddir)/libfreeswitch.la
|
||||
mod_video_filter_la_LDFLAGS = -avoid-version -module -no-undefined -shared -lm -lz
|
||||
|
|
Loading…
Reference in New Issue