366685c1e6049bc94856991102622bacc351062f
[feed/telephony.git] / net / asterisk-11.x / Makefile
1 #
2 # Copyright (C) 2016 OpenWrt.org
3 # Copyright (C) 2016 Cesnet, z.s.p.o.
4 #
5 # This is free software, licensed under the GNU General Public License v2.
6 # See /LICENSE for more information.
7 #
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=asterisk11
12 PKG_VERSION:=11.25.1
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=asterisk-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://downloads.asterisk.org/pub/telephony/asterisk/releases/
17 PKG_HASH:=dc9c282ca1142b286e5a5c391647d6be73f35524c8def37718de866e8384a57c
18
19 PKG_BUILD_DIR:=$(BUILD_DIR)/asterisk-$(PKG_VERSION)
20 PKG_BUILD_DEPENDS:=libxml2/host
21
22 PKG_LICENSE:=GPL-2.0
23 PKG_LICENSE_FILES:=COPYING LICENSE
24 PKG_MAINTAINER:=Jiri Slachta <jiri@slachta.eu>
25
26 include $(INCLUDE_DIR)/package.mk
27 include $(INCLUDE_DIR)/host-build.mk
28
29 define Package/asterisk11/install/module
30 $(INSTALL_DIR) $(1)/usr/lib/asterisk/modules
31 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/asterisk/modules/*$(2).so* $(1)/usr/lib/asterisk/modules/
32 endef
33
34 define Package/asterisk11/install/conffile
35 $(INSTALL_DIR) $(1)/etc/asterisk
36 $(CP) $(PKG_INSTALL_DIR)/etc/asterisk/*$(2)* $(1)/etc/asterisk/
37 endef
38
39 define Package/asterisk11/install/lib
40 $(INSTALL_DIR) $(1)/usr/lib
41 $(CP) $(PKG_INSTALL_DIR)/usr/lib/$(2).so* $(1)/usr/lib/
42 endef
43
44 define Package/asterisk11/install/sbin
45 $(INSTALL_DIR) $(1)/usr/sbin
46 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/$(2) $(1)/usr/sbin/
47 endef
48
49 define Package/asterisk11/install/sounds
50 $(INSTALL_DIR) $(1)/usr/lib/asterisk/sounds/
51 $(CP) $(PKG_INSTALL_DIR)/usr/lib/asterisk/sounds/en/$(2) $(1)/usr/lib/asterisk/sounds/
52 endef
53
54 define BuildAsterisk11Module
55 define Package/asterisk11-$(1)
56 $$(call Package/asterisk11/Default)
57 TITLE:=$(2) support
58 DEPENDS:= asterisk11 $(patsubst +%,+PACKAGE_asterisk11-$(1):%,$(4))
59 endef
60
61 define Package/asterisk11-$(1)/conffiles
62 $(5)
63 endef
64
65 define Package/asterisk11-$(1)/description
66 This package provides support for '$(3)' in Asterisk11.
67 endef
68
69 define Package/asterisk11-$(1)/install
70 $(foreach c,$(6),$(call Package/asterisk11/install/conffile,$$(1),$(c));)
71 $(foreach m,$(7),$(call Package/asterisk11/install/module,$$(1),$(m));)
72 $(foreach s,$(8),$(call Package/asterisk11/install/sounds,$$(1),$(s));)
73 $(foreach b,$(9),$(call Package/asterisk11/install/sbin,$$(1),$(b));)
74 endef
75
76 $$(eval $$(call BuildPackage,asterisk11-$(1)))
77 endef
78
79 define Package/asterisk11/Default
80 SUBMENU:=Telephony
81 SECTION:=net
82 CATEGORY:=Network
83 URL:=http://www.asterisk.org/
84 MAINTAINER:=Jiri Slachta <jiri@slachta.eu>
85 endef
86
87 define Package/asterisk11/Default/description
88 Asterisk is a complete PBX in software. It provides all of the features
89 you would expect from a PBX and more. Asterisk does voice over IP in three
90 protocols, and can interoperate with almost all standards-based telephony
91 equipment using relatively inexpensive hardware.
92 endef
93
94 define Package/asterisk11
95 $(call Package/asterisk11/Default)
96 TITLE:=Complete open source PBX, v$(PKG_VERSION)
97 MENU:=1
98 DEPENDS:=+libopenssl +libncurses +libpopt +libpthread +libsqlite3 +librt +libuuid +zlib @!TARGET_avr32
99 CONFLICTS:=asterisk13
100 endef
101
102 define Package/asterisk11/description
103 $(call Package/asterisk11/Default/description)
104 endef
105
106 define Package/asterisk11/conffiles
107 /etc/asterisk/asterisk.conf
108 /etc/asterisk/acl.conf
109 /etc/asterisk/ccss.conf
110 /etc/asterisk/cel.conf
111 /etc/asterisk/modules.conf
112 /etc/asterisk/extconfig.conf
113 /etc/asterisk/extensions.conf
114 /etc/asterisk/features.conf
115 /etc/asterisk/http.conf
116 /etc/asterisk/indications.conf
117 /etc/asterisk/logger.conf
118 /etc/asterisk/manager.conf
119 /etc/asterisk/modules.conf
120 /etc/asterisk/res_config_sqlite3.conf
121 /etc/asterisk/rtp.conf
122 /etc/asterisk/sip.conf
123 /etc/asterisk/sip_notify.conf
124 /etc/asterisk/udptl.conf
125 /etc/asterisk/users.conf
126 /etc/init.d/asterisk
127 endef
128
129 AST_CFG_FILES:= \
130 asterisk.conf acl.conf cel.conf ccss.conf extconfig.conf \
131 extensions.conf features.conf http.conf indications.conf \
132 logger.conf manager.conf modules.conf res_config_sqlite3.conf \
133 rtp.conf sip_notify.conf sip.conf udptl.conf users.conf
134 AST_EMB_MODULES:=\
135 app_dial app_echo app_macro app_playback codec_ulaw format_pcm func_callerid \
136 func_logic func_strings func_timeout chan_sip chan_local pbx_config \
137 res_crypto res_http_websocket res_rtp_asterisk res_rtp_multicast
138
139 define Package/asterisk11/install
140 $(call Package/asterisk11/install/lib,$(1),libasteriskssl)
141 $(call Package/asterisk11/install/sbin,$(1),asterisk)
142 $(call Package/asterisk11/install/sbin,$(1),safe_asterisk)
143 $(call Package/asterisk11/install/sbin,$(1),astgenkey)
144 $(foreach m,$(AST_CFG_FILES),$(call Package/asterisk11/install/conffile,$(1),$(m));)
145 $(foreach m,$(AST_EMB_MODULES),$(call Package/asterisk11/install/module,$(1),$(m));)
146 $(INSTALL_DIR) $(1)/etc/init.d
147 $(INSTALL_BIN) ./files/asterisk.init $(1)/etc/init.d/asterisk
148 endef
149
150 define Package/asterisk11-sounds
151 $(call Package/asterisk11/Default)
152 TITLE:=Sounds support
153 DEPENDS:=asterisk11
154 endef
155
156 define Package/asterisk11-sounds/description
157 This package provides sounds for Asterisk11.
158 endef
159
160 define Package/asterisk11-sounds/install
161 $(INSTALL_DIR) $(1)/usr/lib/asterisk/sounds/
162 $(CP) $(PKG_INSTALL_DIR)/usr/lib/asterisk/sounds/en/* $(1)/usr/lib/asterisk/sounds/
163 rm -f $(1)/usr/lib/asterisk/sounds/vm-*
164 rm -f $(1)/usr/lib/asterisk/sounds/conf-*
165 endef
166
167 ifneq ($(CONFIG_PACKAGE_asterisk11-chan-dahdi),)
168 CONFIGURE_ARGS+= \
169 --with-dahdi="$(STAGING_DIR)/usr" \
170 --with-pri="$(STAGING_DIR)/usr" \
171 --with-tonezone="$(STAGING_DIR)/usr"
172 else
173 CONFIGURE_ARGS+= \
174 --without-dahdi \
175 --without-pri \
176 --without-tonezone
177 endif
178
179 ifneq ($(CONFIG_PACKAGE_asterisk11-curl),)
180 CONFIGURE_ARGS+= \
181 --with-libcurl="$(STAGING_DIR)/usr"
182 else
183 CONFIGURE_ARGS+= \
184 --without-libcurl
185 endif
186
187 ifneq ($(CONFIG_PACKAGE_asterisk11-mysql),)
188 CONFIGURE_VARS+= \
189 ac_cv_path_ac_pt_CONFIG_MYSQLCLIENT=$(STAGING_DIR)/usr/bin/mysql_config
190 CONFIGURE_ARGS+= \
191 --with-mysqlclient
192 else
193 CONFIGURE_ARGS+= \
194 --without-mysqlclient
195 endif
196
197 ifneq ($(CONFIG_PACKAGE_asterisk11-pbx-lua),)
198 CONFIGURE_ARGS+= \
199 --with-lua="$(STAGING_DIR)/usr"
200 TARGET_LDFLAGS+=-ldl -lcrypt
201 else
202 CONFIGURE_ARGS+= \
203 --without-lua
204 endif
205
206 ifneq ($(CONFIG_PACKAGE_asterisk11-pgsql),)
207 CONFIGURE_ARGS+= \
208 --with-postgres="$(STAGING_DIR)/usr"
209 else
210 CONFIGURE_ARGS+= \
211 --without-postgres
212 endif
213
214 ifneq ($(CONFIG_PACKAGE_asterisk11-res-fax-spandsp),)
215 CONFIGURE_ARGS+= \
216 --with-spandsp="$(STAGING_DIR)/usr"
217 else
218 CONFIGURE_ARGS+= \
219 --without-spandsp
220 endif
221
222 ifneq ($(CONFIG_PACKAGE_asterisk11-res-srtp),)
223 CONFIGURE_ARGS+= \
224 --with-srtp="$(STAGING_DIR)/usr"
225 else
226 CONFIGURE_ARGS+= \
227 --without-srtp
228 endif
229
230 ifneq ($(CONFIG_PACKAGE_asterisk11-res-xmpp),)
231 CONFIGURE_ARGS+= \
232 --with-iksemel="$(STAGING_DIR)/usr"
233 SITE_VARS+= \
234 ac_cv_lib_iksemel_iks_start_sasl=yes
235 else
236 CONFIGURE_ARGS+= \
237 --without-iksemel
238 endif
239
240 EXTRA_CFLAGS+= $(TARGET_CPPFLAGS)
241 EXTRA_LDFLAGS+= $(TARGET_LDFLAGS) -Wl,-rpath-link,$(STAGING_DIR)/usr/lib
242 CONFIGURE_ARGS+= \
243 --build=$(GNU_HOST_NAME) \
244 --host=$(GNU_TARGET_NAME) \
245 --target=$(GNU_TARGET_NAME) \
246 --without-bluetooth \
247 --without-cap \
248 --without-curses \
249 --with-gsm=internal \
250 --without-gtk2 \
251 --with-ilbc=internal \
252 --without-isdnnet \
253 --without-libxml2 \
254 --without-misdn \
255 --without-nbs \
256 --with-ncurses="$(STAGING_DIR)/usr" \
257 --without-netsnmp \
258 --without-neon \
259 --without-neon29 \
260 --without-newt \
261 --without-ogg \
262 --without-osptk \
263 --with-popt="$(STAGING_DIR)/usr" \
264 --without-pwlib \
265 --without-radius \
266 --without-sdl \
267 --without-sqlite \
268 --with-sqlite3="$(STAGING_DIR)/usr" \
269 --without-suppserv \
270 --without-tds \
271 --without-termcap \
272 --without-tinfo \
273 --with-uuid="$(STAGING_DIR)/usr" \
274 --without-vorbis \
275 --without-vpb \
276 --with-z="$(STAGING_DIR)/usr" \
277 --with-sounds-cache="$(DL_DIR)" \
278 --disable-xmldoc
279
280 CONFIGURE_VARS += \
281 ac_cv_path_ac_pt_CONFIG_LIBXML2=$(STAGING_DIR)/host/bin/xml2-config
282
283 AST_MENUSELECT_OPTS = \
284 --without-newt \
285 --without-curses \
286 --with-libxml2="$(STAGING_DIR_HOSTPKG)/usr"
287
288 define Build/Prepare
289 $(call Build/Prepare/Default)
290 ifneq ($(CONFIG_TARGET_lantiq),)
291 $(CP) ./src-lantiq/* $(PKG_BUILD_DIR)/
292 endif
293 endef
294
295 define Build/Configure
296 (cd $(PKG_BUILD_DIR); \
297 ./bootstrap.sh; \
298 );
299 echo "export CFLAGS += $(FPIC) $(TARGET_CFLAGS) $(EXTRA_CFLAGS)"\
300 " $(TARGET_CPPFLAGS) $(EXTRA_CPPFLAGS)"\
301 > $(PKG_BUILD_DIR)/res/pjproject/user.mak;
302 echo "export LDLAGS += $(TARGET_LDFLAGS) $(EXTRA_LDFLAGS)"\
303 " -lc $(LIBGCC_S) -lm"\
304 >> $(PKG_BUILD_DIR)/res/pjproject/user.mak;
305 echo "export CXXFLAGS += $(FPIC) $(TARGET_CFLAGS) $(EXTRA_CFLAGS)"\
306 " $(TARGET_CPPFLAGS) $(EXTRA_CPPFLAGS)"\
307 >> $(PKG_BUILD_DIR)/res/pjproject/user.mak;
308 $(call Build/Configure/Default,,$(SITE_VARS))
309 (cd $(PKG_BUILD_DIR)/menuselect; \
310 CC="$(HOSTCC)" \
311 CFLAGS="$(HOST_CFLAGS) -I$(STAGING_DIR_HOSTPKG)/include/libxml2" \
312 CONFIG_SITE= \
313 LDFLAGS="$(HOST_LDFLAGS) -Wl,-rpath,$(STAGING_DIR_HOSTPKG)/lib" \
314 ac_cv_path_ac_pt_CONFIG_LIBXML2=$(STAGING_DIR_HOSTPKG)/bin/xml2-config \
315 ./configure \
316 $(HOST_CONFIGURE_ARGS) \
317 $(AST_MENUSELECT_OPTS) \
318 );
319 endef
320
321 define Build/Compile
322 CC="$(HOSTCC)" \
323 CFLAGS="$(HOST_CFLAGS) -I$(STAGING_DIR_HOSTPKG)/include/libxml2" \
324 LDFLAGS="$(HOST_LDFLAGS) -Wl,-rpath,$(STAGING_DIR_HOSTPKG)/lib" \
325 $(MAKE) -C "$(PKG_BUILD_DIR)/menuselect"
326 $(MAKE) -C "$(PKG_BUILD_DIR)" menuselect-tree
327 cd "$(PKG_BUILD_DIR)" && \
328 ./menuselect/menuselect \
329 --disable BUILD_NATIVE \
330 --enable LOW_MEMORY \
331 menuselect.makeopts
332 $(MAKE) -C "$(PKG_BUILD_DIR)" include/asterisk/version.h \
333 include/asterisk/buildopts.h defaults.h \
334 makeopts.embed_rules
335 ASTCFLAGS="$(EXTRA_CFLAGS)" \
336 ASTLDFLAGS="$(EXTRA_LDFLAGS)" \
337 $(MAKE) -C "$(PKG_BUILD_DIR)" \
338 ASTVARLIBDIR="/usr/lib/asterisk" \
339 ASTDATADIR="/usr/lib/asterisk" \
340 ASTKEYDIR="/usr/lib/asterisk" \
341 ASTDBDIR="/usr/lib/asterisk" \
342 NOISY_BUILD="yes" \
343 DEBUG="" \
344 OPTIMIZE="" \
345 DESTDIR="$(PKG_INSTALL_DIR)" \
346 all install samples
347 endef
348
349 define Build/InstallDev
350 $(INSTALL_DIR) $(1)/usr/include/asterisk-11/include/asterisk/
351 $(CP) $(PKG_INSTALL_DIR)/usr/include/asterisk/*.h $(1)/usr/include/asterisk-11/include/asterisk/
352 $(CP) $(PKG_INSTALL_DIR)/usr/include/asterisk.h $(1)/usr/include/asterisk-11/include/
353 endef
354
355 $(eval $(call BuildPackage,asterisk11))
356 $(eval $(call BuildPackage,asterisk11-sounds))
357
358 ################################
359 # AST modules
360 # Params:
361 # 1 - Package subname
362 # 2 - Package title
363 # 3 - Module description
364 # 4 - Module dependencies
365 # 5 - Full path to multiple conffiles
366 # 6 - conf files
367 # 7 - module files
368 # 8 - sound files
369 # 9 - binary files
370 ################################
371
372 $(eval $(call BuildAsterisk11Module,app-alarmreceiver,Alarm receiver,Central Station Alarm receiver for Ademco Contact ID,,,,app_alarmreceiver,))
373 $(eval $(call BuildAsterisk11Module,app-authenticate,Authenticate commands,Execute arbitrary authenticate commands,,,,app_authenticate,))
374 $(eval $(call BuildAsterisk11Module,app-confbridge,ConfBridge,Software bridge for multi-party audio conferencing,,/etc/asterisk/confbridge.conf,confbridge.conf,app_confbridge bridge_builtin_features bridge_multiplexed bridge_simple bridge_softmix chan_bridge,))
375 $(eval $(call BuildAsterisk11Module,app-dahdiras,Execute an ISDN RAS,support for executing an ISDN RAS using DAHDI,+asterisk11-chan-dahdi,,,app_dahdiras,))
376 $(eval $(call BuildAsterisk11Module,app-directory,Provide a directory of extensions,provides a directory of extensions,,,,app_directory,))
377 $(eval $(call BuildAsterisk11Module,app-directed_pickup,Directed call pickup,support for directed call pickup,,,,app_directed_pickup,))
378 $(eval $(call BuildAsterisk11Module,app-disa,Direct Inward System Access,Direct Inward System Access,,,,app_disa,))
379 $(eval $(call BuildAsterisk11Module,app-exec,Exec application,support for application execution,,,,app_exec,))
380 $(eval $(call BuildAsterisk11Module,app-chanisavail,Channel availability check,support for checking if a channel is available,,,,app_chanisavail,))
381 $(eval $(call BuildAsterisk11Module,app-chanspy,Channel listen in,support for listening in on any channel,,,,app_chanspy,))
382 $(eval $(call BuildAsterisk11Module,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,))
383 $(eval $(call BuildAsterisk11Module,app-mixmonitor,Record a call and mix the audio,record a call and mix the audio during the recording,,,,app_mixmonitor,))
384 $(eval $(call BuildAsterisk11Module,app-originate,Originate a call,originating an outbound call and connecting it to a specified extension or application,,,,app_originate,))
385 $(eval $(call BuildAsterisk11Module,app-playtones,Playtones application,play a tone list,,,,app_playtones,))
386 $(eval $(call BuildAsterisk11Module,app-queue,True Call Queueing,support for ACD,,/etc/asterisk/queues.conf /etc/asterisk/queuerules.conf,queues.conf queuerules.conf,app_queue,))
387 $(eval $(call BuildAsterisk11Module,app-read,Variable read,a trivial application to read a variable,,,,app_read,))
388 $(eval $(call BuildAsterisk11Module,app-readexten,Extension to variable,a trivial application to read an extension into a variable,,,,app_readexten,))
389 $(eval $(call BuildAsterisk11Module,app-record,Record sound file,to record a sound file,,,,app_record,))
390 $(eval $(call BuildAsterisk11Module,app-sayunixtime,Say Unix time,an application to say Unix time,,,,app_sayunixtime,))
391 $(eval $(call BuildAsterisk11Module,app-senddtmf,Send DTMF digits,Sends arbitrary DTMF digits,,,,app_senddtmf,))
392 $(eval $(call BuildAsterisk11Module,app-sms,SMS,SMS support (ETSI ES 201 912 protocol 1),+libpopt +libstdcpp,,,app_sms,,smsq))
393 $(eval $(call BuildAsterisk11Module,app-speech,Dialplan Speech,Dialplan Speech Applications,+asterisk11-res-speech,,,app_speech_utils,))
394 $(eval $(call BuildAsterisk11Module,app-stack,Stack applications,Stack applications Gosub Return etc.,+asterisk11-res-agi,,,app_stack,))
395 $(eval $(call BuildAsterisk11Module,app-system,System exec,support for executing system commands,,,,app_system,))
396 $(eval $(call BuildAsterisk11Module,app-talkdetect,File playback with audio detect,for file playback with audio detect,,,,app_talkdetect,))
397 $(eval $(call BuildAsterisk11Module,app-verbose,Verbose logging,Verbose logging application,,,,app_verbose,))
398 $(eval $(call BuildAsterisk11Module,app-waituntil,Sleep,support sleeping until the given epoch,,,,app_waituntil,))
399 $(eval $(call BuildAsterisk11Module,app-while,While loop,a while loop implementation,,,,app_while,))
400 $(eval $(call BuildAsterisk11Module,cdr-csv,Provides CDR CSV,Call Detail Record with CSV support,,,,cdr_csv,))
401 $(eval $(call BuildAsterisk11Module,cdr-sqlite3,Provides CDR SQLITE3,Call Detail Record with SQLITE3 support,libsqlite3,,,cdr_sqlite3_custom,))
402 $(eval $(call BuildAsterisk11Module,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,))
403 $(eval $(call BuildAsterisk11Module,chan-alsa,ALSA channel,the channel chan_alsa,+alsa-lib,/etc/asterisk/alsa.conf,alsa.conf,chan_alsa,,))
404 $(eval $(call BuildAsterisk11Module,chan-agent,Agents proxy channel,an implementation of agents proxy channel,,,,chan_agent,))
405 $(eval $(call BuildAsterisk11Module,chan-dahdi,DAHDI channel,DAHDI channel support,+dahdi-tools-libtonezone +kmod-dahdi +libpri,/etc/asterisk/chan_dahdi.conf,chan_dahdi.conf,chan_dahdi,))
406 $(eval $(call BuildAsterisk11Module,chan-iax2,IAX2 channel,IAX support,+asterisk11-res-timing-timerfd,/etc/asterisk/iax.conf /etc/asterisk/iaxprov.conf,iax.conf iaxprov.conf,chan_iax2,))
407 $(eval $(call BuildAsterisk11Module,chan-lantiq,Lantiq TAPI channel,An implementation of Lantiq TAPI channel,@TARGET_lantiq +kmod-ltq-vmmc,/etc/asterisk/lantiq.conf,lantiq.conf,chan_lantiq,))
408 $(eval $(call BuildAsterisk11Module,chan-mgcp,MGCP channel,the channel chan_mgcp,,/etc/asterisk/mgcp.conf,mgcp.conf,chan_mgcp,))
409 $(eval $(call BuildAsterisk11Module,chan-motif,Jingle channel,Motif Jingle Channel Driver,+asterisk11-res-xmpp,/etc/asterisk/motif.conf /etc/asterisk/jingle.conf,motif.conf jingle.conf,chan_motif,))
410 $(eval $(call BuildAsterisk11Module,chan-ooh323,ooH323 channel,the channel chan_ooh323,,/etc/asterisk/ooh323.conf,ooh323.conf,chan_ooh323,))
411 $(eval $(call BuildAsterisk11Module,chan-oss,OSS channel,the channel chan_oss,,/etc/asterisk/oss.conf,oss.conf,chan_oss,,))
412 $(eval $(call BuildAsterisk11Module,chan-skinny,Skinny channel,the channel chan_skinny,,/etc/asterisk/skinny.conf,skinny.conf,chan_skinny,))
413 $(eval $(call BuildAsterisk11Module,chan-unistim,Unistim channel,channel driver for the UNISTIM (Unified Networks IP Stimulus) protocol,,/etc/asterisk/unistim.conf,unistim.conf,chan_unistim,))
414 $(eval $(call BuildAsterisk11Module,codec-a-mu,Alaw to ulaw translation,translation between alaw and ulaw codecs,,,,codec_a_mu,))
415 $(eval $(call BuildAsterisk11Module,codec-adpcm,ADPCM text,ADPCM text ,,,,codec_adpcm,))
416 $(eval $(call BuildAsterisk11Module,codec-alaw,Signed linear to alaw translation,translation between signed linear and alaw codecs,,,,codec_alaw,))
417 $(eval $(call BuildAsterisk11Module,codec-dahdi,DAHDI codec,DAHDI native transcoding support,+asterisk11-chan-dahdi,,,codec_dahdi,))
418 $(eval $(call BuildAsterisk11Module,codec-g722,G.722,a high bit rate 48/56/64Kbps ITU standard codec,,,,codec_g722,))
419 $(eval $(call BuildAsterisk11Module,codec-g726,Signed linear to G.726 translation,translation between signed linear and ITU G.726-32kbps codecs,,,,codec_g726,))
420 $(eval $(call BuildAsterisk11Module,codec-gsm,linear to GSM translation,translate between signed linear and GSM,,,,codec_gsm,))
421 $(eval $(call BuildAsterisk11Module,codec-ilbc,linear to ILBC translation,translate between signed linear and ILBC,,,,codec_ilbc,))
422 $(eval $(call BuildAsterisk11Module,codec-lpc10,Linear to LPC10 translation,translate between signed linear and LPC10,,,,codec_lpc10,))
423 $(eval $(call BuildAsterisk11Module,codec-resample,resample sLinear audio,resample sLinear audio,,,,codec_resample,))
424 $(eval $(call BuildAsterisk11Module,curl,CURL,CURL support,+libcurl,,,func_curl res_curl,))
425 $(eval $(call BuildAsterisk11Module,format-g726,G.726,support for headerless G.726 16/24/32/40kbps data format,,,,format_g726,))
426 $(eval $(call BuildAsterisk11Module,format-g729,G.729,support for raw headerless G729 data,,,,format_g729,))
427 $(eval $(call BuildAsterisk11Module,format-gsm,GSM format,support for GSM format,,,,format_gsm,))
428 $(eval $(call BuildAsterisk11Module,format-h263,H263 format,support for H264 format,,,,format_h263,))
429 $(eval $(call BuildAsterisk11Module,format-h264,H264 format,support for H264 format,,,,format_h264,))
430 $(eval $(call BuildAsterisk11Module,format-ilbc,ILBC format,support for ILBC format,,,,format_ilbc,))
431 $(eval $(call BuildAsterisk11Module,format-sln,Raw slinear format,support for raw slinear format,,,,format_sln,))
432 $(eval $(call BuildAsterisk11Module,format-vox,VOX format,support for ADPCM vox format,,,,format_vox,))
433 $(eval $(call BuildAsterisk11Module,format-wav-gsm,WAV format (Proprietary GSM),support for proprietary Microsoft WAV format (Proprietary GSM),,,,format_wav_gsm,))
434 $(eval $(call BuildAsterisk11Module,format-wav,WAV format (8000hz Signed Linear),support for proprietary Microsoft WAV format (8000hz Signed Linear),,,,format_wav,))
435 $(eval $(call BuildAsterisk11Module,func-base64,base64 support,support of base64 function,,,,func_base64,))
436 $(eval $(call BuildAsterisk11Module,func-blacklist,Blacklist on callerid,looking up the callerid number and see if it is blacklisted,,,,func_blacklist,))
437 $(eval $(call BuildAsterisk11Module,func-cut,CUT function,CUT function,,,,func_cut,))
438 $(eval $(call BuildAsterisk11Module,func-db,Database interaction,functions for interaction with the database,,,,func_db app_db,))
439 $(eval $(call BuildAsterisk11Module,func-devstate,Blinky lights control,functions for manually controlled blinky lights,,,,func_devstate,))
440 $(eval $(call BuildAsterisk11Module,func-enum,ENUM,ENUM,,/etc/asterisk/enum.conf,enum.conf,func_enum,))
441 $(eval $(call BuildAsterisk11Module,func-env,Environment functions,Environment dialplan functions,,,,func_env,))
442 $(eval $(call BuildAsterisk11Module,func-extstate,Hinted extension state,retrieving the state of a hinted extension for dialplan control,,,,func_extstate,))
443 $(eval $(call BuildAsterisk11Module,func-global,Global variable,global variable dialplan functions,,,,func_global,))
444 $(eval $(call BuildAsterisk11Module,func-groupcount,Group count,for counting number of channels in the specified group,,,,func_groupcount,))
445 $(eval $(call BuildAsterisk11Module,func-channel,Channel info,Channel info dialplan function,,,,func_channel,))
446 $(eval $(call BuildAsterisk11Module,func-math,Math functions,Math functions,,,,func_math,))
447 $(eval $(call BuildAsterisk11Module,func-module,Simple module check function,Simple module check function,,,,func_module,))
448 $(eval $(call BuildAsterisk11Module,func-presencestate,Hinted presence state,Gets or sets a presence state in the dialplan,,,,func_presencestate,))
449 $(eval $(call BuildAsterisk11Module,func-shell,Shell,support for shell execution,,,,func_shell,))
450 $(eval $(call BuildAsterisk11Module,func-uri,URI encoding and decoding,Encodes and decodes URI-safe strings,,,,func_uri,))
451 $(eval $(call BuildAsterisk11Module,func-vmcount,vmcount dialplan,a vmcount dialplan function,,,,func_vmcount,))
452 $(eval $(call BuildAsterisk11Module,func-realtime,realtime dialplan,the realtime dialplan function,,,,func_realtime,))
453 $(eval $(call BuildAsterisk11Module,mysql,MySQL,MySQL support,+libmysqlclient,/etc/asterisk/res_config_mysql.conf,res_config_mysql.conf,res_config_mysql,))
454 $(eval $(call BuildAsterisk11Module,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,))
455 $(eval $(call BuildAsterisk11Module,pbx-ael,Asterisk Extension Logic,support for symbolic Asterisk Extension Logic,,,extensions.ael,pbx_ael,))
456 $(eval $(call BuildAsterisk11Module,pbx-dundi,Dundi,provides Dundi Lookup service for Asterisk,,/etc/asterisk/dundi.conf,dundi.conf,pbx_dundi,))
457 $(eval $(call BuildAsterisk11Module,pbx-lua,Lua,provides Lua resources for Asterisk,+libpthread +libc +liblua,/etc/asterisk/extensions.lua,extensions.lua,pbx_lua,))
458 $(eval $(call BuildAsterisk11Module,pbx-spool,Call Spool,outgoing call spool support,,,,pbx_spool,))
459 $(eval $(call BuildAsterisk11Module,pbx-realtime,Realtime Switch,realtime switch support,,,,pbx_realtime,))
460 $(eval $(call BuildAsterisk11Module,pgsql,PostgreSQL,PostgreSQL support,+libpq @!arc,/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,))
461 $(eval $(call BuildAsterisk11Module,res-adsi,Provide ADSI,Analog Display Services Interface capability,,,,res_adsi,))
462 $(eval $(call BuildAsterisk11Module,res-ael-share,Shareable AEL code,support for shareable AEL code mainly between internal and external modules,,,,res_ael_share,))
463 $(eval $(call BuildAsterisk11Module,res-agi,Asterisk Gateway Interface,Support for the Asterisk Gateway Interface extension,+asterisk11-res-speech,,,res_agi,))
464 $(eval $(call BuildAsterisk11Module,res-calendar,Calendaring API,Calendaring support (ICal and Google Calendar),,/etc/asterisk/calendar.conf,calendar.conf,res_calendar,,))
465 $(eval $(call BuildAsterisk11Module,res-clioriginate,Calls via CLI,Originate calls via the CLI,,,,res_clioriginate,))
466 $(eval $(call BuildAsterisk11Module,res-fax-spandsp,Spandsp T.38 and G.711,Spandsp T.38 and G.711 FAX Resource,+asterisk11-res-fax +libspandsp +libtiff,,,res_fax_spandsp,))
467 $(eval $(call BuildAsterisk11Module,res-fax,FAX modules,Generic FAX resource for FAX technology resource modules,+asterisk11-res-timing-pthread,/etc/asterisk/res_fax.conf,res_fax.conf,res_fax,))
468 $(eval $(call BuildAsterisk11Module,res-monitor,Provide Monitor,Cryptographic Signature capability,,,,res_monitor,))
469 $(eval $(call BuildAsterisk11Module,res-musiconhold,MOH,Music On Hold support,,/etc/asterisk/musiconhold.conf,musiconhold.conf,res_musiconhold,))
470 $(eval $(call BuildAsterisk11Module,res-phoneprov,Phone Provisioning,Phone provisioning application for the asterisk internal http server,,/etc/asterisk/phoneprov.conf,phoneprov.conf,res_phoneprov,))
471 $(eval $(call BuildAsterisk11Module,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,))
472 $(eval $(call BuildAsterisk11Module,res-smdi,Provide SMDI,Simple Message Desk Interface capability,,/etc/asterisk/smdi.conf,smdi.conf,res_smdi,))
473 $(eval $(call BuildAsterisk11Module,res-speech,Speech Recognition API,Support for the Asterisk Generic Speech Recognition API,,,,res_speech,))
474 $(eval $(call BuildAsterisk11Module,res-srtp,SRTP,Secure RTP,+libsrtp,,,res_srtp,))
475 $(eval $(call BuildAsterisk11Module,res-stun-monitor,STUN monitoring,resource STUN Monitor,,/etc/asterisk/res_stun_monitor.conf,res_stun_monitor.conf,res_stun_monitor,))
476 $(eval $(call BuildAsterisk11Module,res-timing-dahdi,DAHDI Timing Interface,,+asterisk11-chan-dahdi,,,res_timing_dahdi,))
477 $(eval $(call BuildAsterisk11Module,res-timing-pthread,pthread Timing Interface,,,,,res_timing_pthread,))
478 $(eval $(call BuildAsterisk11Module,res-timing-timerfd,Timerfd Timing Interface,,,,,res_timing_timerfd,))
479 $(eval $(call BuildAsterisk11Module,res-xmpp,XMPP client and component module,reference module for interfacting Asterisk directly as a client or component with XMPP server,+libiksemel +libopenssl,/etc/asterisk/xmpp.conf,xmpp.conf,res_xmpp,))
480 $(eval $(call BuildAsterisk11Module,res-realtime,Realtime Interface,,,,,res_realtime,))
481 $(eval $(call BuildAsterisk11Module,voicemail,Voicemail,voicemail related modules,+asterisk11-res-adsi +asterisk11-res-smdi,/etc/asterisk/voicemail.conf,voicemail.conf,*voicemail,vm-*))