asterisk-1.8.x: update to 1.8.32.0
[feed/telephony.git] / net / asterisk-1.8.x / Makefile
1 #
2 # Copyright (C) 2014 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=asterisk18
11 PKG_VERSION:=1.8.32.0
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=asterisk-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://downloads.asterisk.org/pub/telephony/asterisk/releases/
16 PKG_MD5SUM:=ef5b0b9c49fcb9964e93b45cfe25882d
17
18 PKG_BUILD_DIR=$(BUILD_DIR)/asterisk-$(PKG_VERSION)
19
20 PKG_LICENSE:=GPL-2.0
21 PKG_LICENSE_FILES:=COPYING LICENSE
22 PKG_MAINTAINER:=Jiri Slachta <slachta@cesnet.cz>
23
24 include $(INCLUDE_DIR)/package.mk
25
26 define Package/asterisk18/install/module
27         $(INSTALL_DIR) $(1)/usr/lib/asterisk/modules
28         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/asterisk/modules/*$(2).so* $(1)/usr/lib/asterisk/modules/
29 endef
30
31 define Package/asterisk18/install/conffile
32         $(INSTALL_DIR) $(1)/etc/asterisk
33         $(CP) $(PKG_INSTALL_DIR)/etc/asterisk/*$(2)* $(1)/etc/asterisk/
34 endef
35
36 define Package/asterisk18/install/lib
37         $(INSTALL_DIR) $(1)/usr/lib
38         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/$(2).so* $(1)/usr/lib/
39 endef
40
41 define Package/asterisk18/install/sbin
42         $(INSTALL_DIR) $(1)/usr/sbin
43         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/$(2) $(1)/usr/sbin/
44 endef
45
46 define Package/asterisk18/install/sounds
47         $(INSTALL_DIR) $(1)/usr/lib/asterisk/sounds/
48         $(CP) $(PKG_INSTALL_DIR)/usr/lib/asterisk/sounds/en/$(2) $(1)/usr/lib/asterisk/sounds/
49 endef
50
51 define BuildAsterisk18Module
52   define Package/asterisk18-$(1)
53   $$(call Package/asterisk18/Default)
54     TITLE:=$(2) support
55     DEPENDS:= asterisk18 $(patsubst +%,+PACKAGE_asterisk18-$(1):%,$(4))
56   endef
57
58   define Package/asterisk18-$(1)/conffiles
59 $(5)
60   endef
61
62   define Package/asterisk18-$(1)/description
63   $$(call Package/asterisk18/Default/description)
64 This package provides support $(3) in Asterisk.
65   endef
66
67   define Package/asterisk18-$(1)/install
68 $(foreach c,$(6),$(call Package/asterisk18/install/conffile,$$(1),$(c));)
69 $(foreach m,$(7),$(call Package/asterisk18/install/module,$$(1),$(m));)
70 $(foreach s,$(8),$(call Package/asterisk18/install/sounds,$$(1),$(s));)
71 $(foreach b,$(9),$(call Package/asterisk18/install/sbin,$$(1),$(b));)
72   endef
73
74   $$(eval $$(call BuildPackage,asterisk18-$(1)))
75 endef
76
77 define Package/asterisk18/Default
78   SUBMENU:=Telephony
79   SECTION:=net
80   CATEGORY:=Network
81   URL:=http://www.asterisk.org/
82 endef
83
84 define Package/asterisk18/Default/description
85  Asterisk is a complete PBX in software. It provides all of the features
86  you would expect from a PBX and more. Asterisk does voice over IP in three
87  protocols, and can interoperate with almost all standards-based telephony
88  equipment using relatively inexpensive hardware.
89 endef
90
91 define Package/asterisk18
92 $(call Package/asterisk18/Default)
93   TITLE:=Complete open source PBX, v1.8.x
94   MENU:=1
95   DEPENDS:=+libopenssl +libncurses +libpopt +libpthread +zlib @!TARGET_avr32
96 endef
97
98 define Package/asterisk18/description
99 $(call Package/asterisk18/Default/description)
100 endef
101
102 define Package/asterisk18/conffiles
103 /etc/asterisk/cel.conf
104 /etc/asterisk/asterisk.conf
105 /etc/asterisk/modules.conf
106 /etc/asterisk/extensions.conf
107 /etc/asterisk/sip.conf
108 /etc/asterisk/sip_notify.conf
109 /etc/asterisk/features.conf
110 /etc/asterisk/indications.conf
111 /etc/asterisk/logger.conf
112 /etc/asterisk/manager.conf
113 /etc/asterisk/rtp.conf
114 /etc/default/asterisk
115 /etc/init.d/asterisk
116 endef
117
118 AST_CFG_FILES:=\
119         asterisk.conf cel.conf ccss.conf extensions.conf features.conf indications.conf logger.conf manager.conf \
120         modules.conf sip.conf sip_notify.conf rtp.conf users.conf
121 AST_EMB_MODULES:=\
122         app_dial app_echo app_macro app_playback codec_ulaw codec_gsm format_gsm format_pcm format_wav format_wav_gsm \
123         func_strings func_timeout func_callerid func_logic chan_sip pbx_config res_rtp_asterisk res_rtp_multicast
124
125 define Package/asterisk18/install
126 $(call Package/asterisk18/install/sbin,$(1),asterisk)
127 $(foreach m,$(AST_CFG_FILES),$(call Package/asterisk18/install/conffile,$(1),$(m));)
128 $(foreach m,$(AST_EMB_MODULES),$(call Package/asterisk18/install/module,$(1),$(m));)
129         $(INSTALL_DIR) $(1)/etc/default
130         $(INSTALL_DATA) ./files/asterisk.default $(1)/etc/default/asterisk
131         $(INSTALL_DIR) $(1)/etc/init.d
132         $(INSTALL_BIN) ./files/asterisk.init $(1)/etc/init.d/asterisk
133 endef
134
135 define Package/asterisk18-sounds
136 $(call Package/asterisk18/Default)
137   TITLE:=Sounds support
138   DEPENDS:=asterisk18
139 endef
140
141 define Package/asterisk18-sounds/description
142 $(call Package/asterisk18/Default/description)
143 This package provides sounds for Asterisk.
144 endef
145
146 define Package/asterisk18-sounds/install
147         $(INSTALL_DIR) $(1)/usr/lib/asterisk/sounds/
148         $(CP) $(PKG_INSTALL_DIR)/usr/lib/asterisk/sounds/en/* $(1)/usr/lib/asterisk/sounds/
149         rm -f $(1)/usr/lib/asterisk/sounds/vm-*
150         rm -f $(1)/usr/lib/asterisk/sounds/conf-*
151 endef
152
153 ifneq ($(SDK)$(CONFIG_PACKAGE_asterisk18-chan-gtalk),)
154   CONFIGURE_ARGS+= \
155         --with-iksemel="$(STAGING_DIR)/usr"
156   SITE_VARS+= \
157         ac_cv_lib_iksemel_iks_start_sasl=yes
158 else
159   CONFIGURE_ARGS+= \
160         --without-iksemel
161 endif
162
163 ifneq ($(SDK)$(CONFIG_PACKAGE_asterisk18-curl),)
164   CONFIGURE_ARGS+= \
165         --with-libcurl="$(STAGING_DIR)/usr"
166 else
167   CONFIGURE_ARGS+= \
168         --without-libcurl
169 endif
170
171 ifneq ($(SDK)$(CONFIG_PACKAGE_asterisk18-mysql),)
172   CONFIGURE_ARGS+= \
173         --with-mysqlclient
174 else
175   CONFIGURE_ARGS+= \
176         --without-mysqlclient
177 endif
178
179 ifneq ($(SDK)$(CONFIG_PACKAGE_asterisk18-pbx-lua),)
180   CONFIGURE_ARGS+= \
181         --with-lua="$(STAGING_DIR)/usr"
182   TARGET_LDFLAGS+=-ldl -lcrypt
183 else
184   CONFIGURE_ARGS+= \
185         --without-lua
186 endif
187
188 ifneq ($(SDK)$(CONFIG_PACKAGE_asterisk18-pgsql),)
189   CONFIGURE_ARGS+= \
190         --with-postgres="$(STAGING_DIR)/usr"
191 else
192   CONFIGURE_ARGS+= \
193         --without-postgres
194 endif
195
196 ifneq ($(SDK)$(CONFIG_PACKAGE_asterisk18-res-fax-spandsp),)
197   CONFIGURE_ARGS+= \
198         --with-spandsp="$(STAGING_DIR)/usr"
199 else
200   CONFIGURE_ARGS+= \
201         --without-spandsp
202 endif
203
204 ifneq ($(SDK)$(CONFIG_PACKAGE_asterisk18-res-srtp),)
205   CONFIGURE_ARGS+= \
206         --with-srtp="$(STAGING_DIR)/usr"
207 else
208   CONFIGURE_ARGS+= \
209         --without-srtp
210 endif
211
212 EXTRA_CFLAGS+= $(TARGET_CPPFLAGS)
213 EXTRA_LDFLAGS+= $(TARGET_LDFLAGS)
214 CONFIGURE_ARGS+= \
215         --without-curses \
216         --with-gsm=internal \
217         --without-bluetooth \
218         --without-cap \
219         --without-dahdi \
220         --without-gtk2 \
221         --without-isdnnet \
222         --without-misdn \
223         --without-nbs \
224         --with-ncurses="$(STAGING_DIR)/usr" \
225         --without-netsnmp \
226         --without-newt \
227         --without-ogg \
228         --without-osptk \
229         --with-popt="$(STAGING_DIR)/usr" \
230         --without-pri \
231         --without-radius \
232         --without-sdl \
233         --without-suppserv \
234         --without-tds \
235         --without-termcap \
236         --without-tinfo \
237         --without-vorbis \
238         --without-vpb \
239         --with-z="$(STAGING_DIR)/usr" \
240         --with-sounds-cache="$(DL_DIR)" \
241         --disable-xmldoc
242
243 define Build/Prepare
244         $(call Build/Prepare/Default)
245 ifneq ($(CONFIG_TARGET_lantiq),)
246         $(CP) ./src-lantiq/* $(PKG_BUILD_DIR)/
247 endif
248 endef
249
250 define Build/Configure
251         $(call Build/Configure/Default,,$(SITE_VARS))
252 endef
253
254 define Build/Compile
255         $(MAKE) -C "$(PKG_BUILD_DIR)" \
256                 include/asterisk/version.h \
257                 include/asterisk/buildopts.h defaults.h \
258                 makeopts.embed_rules
259         ASTCFLAGS="$(EXTRA_CFLAGS) -DLOW_MEMORY" \
260         ASTLDFLAGS="$(EXTRA_LDFLAGS)" \
261         $(MAKE) -C "$(PKG_BUILD_DIR)" \
262                 ASTVARLIBDIR="/usr/lib/asterisk" \
263                 ASTDATADIR="/usr/lib/asterisk" \
264                 ASTKEYDIR="/usr/lib/asterisk" \
265                 ASTDBDIR="/usr/lib/asterisk" \
266                 NOISY_BUILD="1" \
267                 DEBUG="" \
268                 OPTIMIZE="" \
269                 DESTDIR="$(PKG_INSTALL_DIR)" \
270                 all install samples
271 endef
272
273 define Build/InstallDev
274         $(INSTALL_DIR) $(1)/usr/include/asterisk-1.8/include/asterisk/
275         $(CP) $(PKG_INSTALL_DIR)/usr/include/asterisk/*.h $(1)/usr/include/asterisk-1.8/include/asterisk/
276         $(CP) $(PKG_INSTALL_DIR)/usr/include/asterisk.h $(1)/usr/include/asterisk-1.8/include/
277 endef
278
279 $(eval $(call BuildPackage,asterisk18))
280 $(eval $(call BuildPackage,asterisk18-sounds))
281
282 ################################
283 # AST modules
284 # Params:
285 # 1 - Package subname
286 # 2 - Package title
287 # 3 - Module description
288 # 4 - Module dependencies
289 # 5 - Full path to multiple conffiles
290 # 6 - conf files
291 # 7 - module files
292 # 8 - sound files
293 # 9 - binary files
294 ################################
295
296 $(eval $(call BuildAsterisk18Module,app-alarmreceiver,Alarm receiver,Central Station Alarm receiver for Ademco Contact ID,,,,app_alarmreceiver,))
297 $(eval $(call BuildAsterisk18Module,app-authenticate,Authenticate commands,Execute arbitrary authenticate commands,,,,app_authenticate,))
298 $(eval $(call BuildAsterisk18Module,app-directed_pickup,Directed call pickup,support for directed call pickup,,,,app_directed_pickup,))
299 $(eval $(call BuildAsterisk18Module,app-disa,Direct Inward System Access,Direct Inward System Access,,,,app_disa,))
300 $(eval $(call BuildAsterisk18Module,app-exec,Exec application,support for application execution,,,,app_exec,))
301 $(eval $(call BuildAsterisk18Module,app-chanisavail,Channel availability check,support for checking if a channel is available,,,,app_chanisavail,))
302 $(eval $(call BuildAsterisk18Module,app-chanspy,Channel listen in,support for listening in on any channel,,,,app_chanspy,))
303 $(eval $(call BuildAsterisk18Module,app-minivm,Minimal voicemail system,a voicemail system in small building blocks working together based on the Comedian Mail voicemail,,/etc/asterisk/extensions_minivm.conf /etc/asterisk/minivm.conf,extensions_minivm.conf minivm.conf,app_minivm,))
304 $(eval $(call BuildAsterisk18Module,app-mixmonitor,Record a call and mix the audio,record a call and mix the audio during the recording,,,,app_mixmonitor,))
305 $(eval $(call BuildAsterisk18Module,app-originate,Originate a call,originating an outbound call and connecting it to a specified extension or application,,,,app_originate,))
306 $(eval $(call BuildAsterisk18Module,app-playtones,Playtones application,play a tone list,,,,app_playtones,))
307 $(eval $(call BuildAsterisk18Module,app-read,Variable read,a trivial application to read a variable,,,,app_read,))
308 $(eval $(call BuildAsterisk18Module,app-readexten,Extension to variable,a trivial application to read an extension into a variable,,,,app_readexten,))
309 $(eval $(call BuildAsterisk18Module,app-record,Record sound file,to record a sound file,,,,app_record,))
310 $(eval $(call BuildAsterisk18Module,app-sayunixtime,Say Unix time,an application to say Unix time,,,,app_sayunixtime,))
311 $(eval $(call BuildAsterisk18Module,app-senddtmf,Send DTMF digits,Sends arbitrary DTMF digits,,,,app_senddtmf,))
312 $(eval $(call BuildAsterisk18Module,app-setcallerid,Set callerid,Support for setting callerid,,,,app_setcallerid,))
313 $(eval $(call BuildAsterisk18Module,app-sms,SMS,SMS support (ETSI ES 201 912 protocol 1),+libpopt +libstdcpp,,,app_sms,,smsq))
314 $(eval $(call BuildAsterisk18Module,app-stack,Stack applications, stack applications Gosub Return etc., +asterisk18-res-agi,,,app_stack,))
315 $(eval $(call BuildAsterisk18Module,app-system,System exec,support for executing system commands,,,,app_system,))
316 $(eval $(call BuildAsterisk18Module,app-talkdetect,File playback with audio detect,for file playback with audio detect,,,,app_talkdetect,))
317 $(eval $(call BuildAsterisk18Module,app-verbose,Verbose logging,Verbose logging application,,,,app_verbose,))
318 $(eval $(call BuildAsterisk18Module,app-waituntil,Sleep,support sleeping until the given epoch,,,,app_waituntil,))
319 $(eval $(call BuildAsterisk18Module,app-while,While loop,a while loop implementation,,,,app_while,))
320 $(eval $(call BuildAsterisk18Module,cdr,Provides CDR,Call Detail Record,,/etc/asterisk/cdr.conf /etc/asterisk/cdr_custom.conf /etc/asterisk/cdr_manager.conf /etc/asterisk/cdr_syslog.conf,cdr cdr_custom cdr_manager cdr_syslog,app_cdr app_forkcdr cdr_custom cdr_manager cdr_syslog func_cdr,))
321 $(eval $(call BuildAsterisk18Module,cdr-csv,Provides CDR CSV,Call Detail Record with CSV support,,,,cdr_csv,))
322 $(eval $(call BuildAsterisk18Module,codec-a-mu,Alaw to ulaw translation,translation between alaw and ulaw codecs,,,,codec_a_mu,))
323 $(eval $(call BuildAsterisk18Module,codec-alaw,Signed linear to alaw translation,translation between signed linear and alaw codecs,,,,codec_alaw,))
324 $(eval $(call BuildAsterisk18Module,codec-g722,G.722,a high bit rate 48/56/64Kbps ITU standard codec,,,,codec_g722,))
325 $(eval $(call BuildAsterisk18Module,codec-g726,Signed linear to G.726 translation,translation between signed linear and ITU G.726-32kbps codecs,,,,codec_g726,))
326 $(eval $(call BuildAsterisk18Module,curl,CURL,CURL support,+libcurl,,,func_curl res_curl,))
327 $(eval $(call BuildAsterisk18Module,format-g726,G.726,support for headerless G.726 16/24/32/40kbps data format,,,,format_g726,))
328 $(eval $(call BuildAsterisk18Module,format-g729,G.729,support for raw headerless G729 data,,,,format_g729,))
329 $(eval $(call BuildAsterisk18Module,format-sln,Raw slinear format,support for raw slinear format,,,,format_sln,))
330 $(eval $(call BuildAsterisk18Module,format-sln16,Raw slinear 16 format,support for raw slinear 16 format,,,,format_sln16,))
331 $(eval $(call BuildAsterisk18Module,func-blacklist,Blacklist on callerid,looking up the callerid number and see if it is blacklisted,,,,func_blacklist,))
332 $(eval $(call BuildAsterisk18Module,func-base64,base64 support,support of base64 function,,,,func_base64,))
333 $(eval $(call BuildAsterisk18Module,func-cut,CUT function,CUT function,,,,func_cut,))
334 $(eval $(call BuildAsterisk18Module,func-db,Database interaction,functions for interaction with the database,,,,func_db,))
335 $(eval $(call BuildAsterisk18Module,func-devstate,Blinky lights control,functions for manually controlled blinky lights,,,,func_devstate,))
336 $(eval $(call BuildAsterisk18Module,func-extstate,Hinted extension state,retrieving the state of a hinted extension for dialplan control,,,,func_extstate,))
337 $(eval $(call BuildAsterisk18Module,func-global,Global variable,global variable dialplan functions,,,,func_global,))
338 $(eval $(call BuildAsterisk18Module,func-groupcount,Group count,for counting number of channels in the specified group,,,,func_groupcount,))
339 $(eval $(call BuildAsterisk18Module,func-channel,Channel info,Channel info dialplan function,,,,func_channel,))
340 $(eval $(call BuildAsterisk18Module,func-shell,Shell,support for shell execution,,,,func_shell,))
341 $(eval $(call BuildAsterisk18Module,func-uri,URI encoding and decoding,Encodes and decodes URI-safe strings,,,,func_uri,))
342 $(eval $(call BuildAsterisk18Module,func-vmcount,vmcount dialplan,a vmcount dialplan function,,,,func_vmcount,))
343 $(eval $(call BuildAsterisk18Module,chan-agent,Agents proxy channel,An implementation of agents proxy channel,,,,chan_agent,))
344 $(eval $(call BuildAsterisk18Module,chan-gtalk,GTalk,An implementation of chan_gtalk and res_jabber for GTalk support,+libiksemel,/etc/asterisk/gtalk.conf /etc/asterisk/jabber.conf,gtalk.conf jabber.conf,chan_gtalk res_jabber,))
345 $(eval $(call BuildAsterisk18Module,chan-iax2,IAX2 channel,An implementation of IAX2 channel,+asterisk18-res-timing-timerfd,/etc/asterisk/iax.conf /etc/asterisk/iaxprov.conf,iax.conf iaxprov.conf,chan_iax2,))
346 $(eval $(call BuildAsterisk18Module,chan-lantiq,Lantiq TAPI channel,An implementation of Lantiq TAPI channel,+kmod-ltq-vmmc,/etc/asterisk/lantiq.conf,lantiq.conf,chan_lantiq,))
347 $(eval $(call BuildAsterisk18Module,chan-local,Local proxy channel,An implementation of local proxy channel,,,,chan_local,))
348 $(eval $(call BuildAsterisk18Module,chan-mgcp,MGCP channel,the channel chan_mgcp,,/etc/asterisk/mgcp.conf,mgcp.conf,chan_mgcp,))
349 $(eval $(call BuildAsterisk18Module,chan-ooh323,ooH323 channel,the channel chan_ooh323,,/etc/asterisk/ooh323.conf,ooh323.conf,chan_ooh323,))
350 $(eval $(call BuildAsterisk18Module,chan-skinny,Skinny channel,the channel chan_skinny,,/etc/asterisk/skinny.conf,skinny.conf,chan_skinny,))
351 $(eval $(call BuildAsterisk18Module,mysql,MySQL,MySQL support,+libmysqlclient,/etc/asterisk/res_config_mysql.conf,res_config_mysql.conf,res_config_mysql,))
352 $(eval $(call BuildAsterisk18Module,odbc,ODBC,ODBC support,+libpthread +libc +unixodbc,/etc/asterisk/cdr_adaptive_odbc.conf /etc/asterisk/cdr_odbc.conf /etc/asterisk/cel_odbc.conf /etc/asterisk/func_odbc.conf /etc/asterisk/res_odbc.conf,cdr_adaptive_odbc cdr_odbc cel_odbc func_odbc res_odbc,cdr_adaptive_odbc cdr_odbc cel_odbc func_odbc res_config_odbc res_odbc,))
353 $(eval $(call BuildAsterisk18Module,pgsql,PostgreSQL,PostgreSQL support,+libpq,/etc/asterisk/cel_pgsql.conf /etc/asterisk/cdr_pgsql.conf /etc/asterisk/res_pgsql.conf,cel_pgsql.conf cdr_pgsql.conf res_pgsql.conf,cel_pgsql cdr_pgsql res_config_pgsql,))
354 $(eval $(call BuildAsterisk18Module,pbx-ael,Asterisk Extension Logic,support for symbolic Asterisk Extension Logic,,,extensions.ael,pbx_ael,))
355 $(eval $(call BuildAsterisk18Module,pbx-spool,Call Spool,Outgoing call spool support,,,,pbx_spool,))
356 $(eval $(call BuildAsterisk18Module,pbx-lua,Lua,provides Lua resources for Asterisk,+libpthread +libc +liblua,/etc/asterisk/extensions.lua,extensions.lua,pbx_lua,))
357 $(eval $(call BuildAsterisk18Module,res-ael-share,Shareable AEL code,support for shareable AEL code mainly between internal and external modules,,,,res_ael_share,))
358 $(eval $(call BuildAsterisk18Module,res-agi,Asterisk Gateway Interface,support for the Asterisk Gateway Interface extension,,,,res_agi,))
359 $(eval $(call BuildAsterisk18Module,res-clioriginate,Calls via CLI,Originate calls via the CLI,,,,res_clioriginate,))
360 $(eval $(call BuildAsterisk18Module,res-crypto,Provides Crypto,Cryptographic Signature capability,,,,res_crypto,))
361 $(eval $(call BuildAsterisk18Module,res-monitor,Provides Monitor,Cryptographic Signature capability,,,,res_monitor,))
362 $(eval $(call BuildAsterisk18Module,res-phoneprov,Phone Provisioning,Phone provisioning application for the asterisk internal http server,,/etc/asterisk/phoneprov.conf,phoneprov.conf,res_phoneprov,))
363 $(eval $(call BuildAsterisk18Module,res-pktccops,Provide PacketCable COPS,simple client/server model for supporting policy control over QoS signaling protocols,,/etc/asterisk/res_pktccops.conf,res_pktccops.conf,res_pktccops,))
364 $(eval $(call BuildAsterisk18Module,res-smdi,Provide SMDI,Simple Message Desk Interface capability,,/etc/asterisk/smdi.conf,smdi.conf,res_smdi,))
365 $(eval $(call BuildAsterisk18Module,res-fax,FAX modules,Generic FAX resource for FAX technology resource modules,+asterisk18-res-timing-pthread,/etc/asterisk/res_fax.conf /etc/asterisk/udptl.conf,udptl.conf res_fax.conf,res_fax,))
366 $(eval $(call BuildAsterisk18Module,res-fax-spandsp,Spandsp T.38 and G.711,Spandsp T.38 and G.711 FAX Resource,+asterisk18-res-fax +libspandsp +libtiff,,,res_fax_spandsp,))
367 $(eval $(call BuildAsterisk18Module,res-musiconhold,MOH,Music On Hold support,,/etc/asterisk/musiconhold.conf,musiconhold.conf,res_musiconhold,))
368 $(eval $(call BuildAsterisk18Module,res-srtp,SRTP,Secure RTP,+libsrtp,,,res_srtp,))
369 $(eval $(call BuildAsterisk18Module,res-timing-pthread,pthread Timing Interface,,,,,res_timing_pthread,))
370 $(eval $(call BuildAsterisk18Module,res-timing-timerfd,Timerfd Timing Interface,,,,,res_timing_timerfd,))
371 $(eval $(call BuildAsterisk18Module,voicemail,Voicemail,voicemail related modules,,/etc/asterisk/voicemail.conf,voicemail.conf,*voicemail res_adsi res_smdi,vm-*))