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