FreeSWITCH: Git HASH e4e9b1b9f93f3b1c6e344519d52d3854520ba29a
[feed/telephony.git] / net / freeswitch / Makefile
1 #
2 # Copyright (C) 2009-2013 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
11 PKG_NAME:=freeswitch
12 PKG_SOURCE_PROTO:=git
13 PKG_DISTNAME:=$(PKG_NAME)_$(PKG_SOURCE_PROTO)
14 PKG_VERSION:=1.5.15b
15
16
17 #
18 # The latest FS git hash in PKG_SOURCE_VERSION can be obtained from
19 # http://fisheye.freeswitch.org
20 #
21 FS_WITH_DEFAULT_HEAD:=e4e9b1b9f93f3b1c6e344519d52d3854520ba29a
22 PKG_SOURCE_URL:=https://stash.$(PKG_NAME).org/scm/fs/$(PKG_NAME).git
23 PKG_SOURCE_VERSION:=$(if $(CONFIG_FS_WITH_LATEST_HEAD),$(shell git ls-remote $(PKG_SOURCE_URL) HEAD|cut -f1),$(FS_WITH_DEFAULT_HEAD))
24 FS_WITH_DEFAULT_HEAD_SHORT:=$(shell echo $(FS_WITH_DEFAULT_HEAD)|cut -b -7)
25 PKG_SOURCE_VERSION_SHORT:=$(shell echo $(PKG_SOURCE_VERSION)|cut -b -7)
26 PKG_RELEASE:=$(PKG_SOURCE_VERSION_SHORT)
27 PKG_SOURCE_SUBDIR:=$(PKG_DISTNAME)
28 PKG_SOURCE:=$(PKG_SOURCE_SUBDIR)-$(if $(CONFIG_FS_WITH_LOCAL_SOURCE),$(FS_WITH_DEFAULT_HEAD_SHORT).tar.xz,$(PKG_SOURCE_VERSION_SHORT).tar.bz2)
29 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
30
31
32 PKG_FIXUP:=libtool autoreconf
33 PKG_BUILD_PARALLEL:=0
34
35
36 ifeq ($(CONFIG_DEVEL),y)
37 export QUILT=1
38 endif
39
40
41 PKG_BUILD_DEPENDS:= \
42 FS_WITH_CORE_LIBEDIT_SUPPORT:libedit \
43 FS_WITH_MYSQL:libmysqlclient \
44 FS_WITH_POSTGRESQL:libpq \
45 FS_WITH_SQLITE3:libsqlite3 \
46 FS_WITH_APR_SCTP:sctp \
47
48
49 TAR_OPTIONS+= --strip-components=1 -C $(PKG_BUILD_DIR)
50
51
52 FS_MOD_AVAILABLE:= \
53 abstraction \
54 alsa \
55 amr \
56 amrwb \
57 avmd \
58 basic \
59 bert \
60 blacklist \
61 bv \
62 callcenter \
63 cdr-csv \
64 cdr-mongodb \
65 cdr-pg-csv \
66 cdr-sqlite \
67 celt \
68 cepstral \
69 cidlookup \
70 cluechoo \
71 codec2 \
72 commands \
73 conference \
74 console \
75 curl \
76 dahdi-codec \
77 db \
78 dialplan-asterisk \
79 dialplan-directory \
80 dialplan-xml \
81 dingaling \
82 directory \
83 distributor \
84 dptools \
85 easyroute \
86 enum \
87 erlang-event \
88 esf \
89 event-multicast \
90 event-socket \
91 event-zmq \
92 expr \
93 fifo \
94 file-string \
95 flite \
96 format-cdr \
97 freetdm \
98 fsk \
99 fsv \
100 g723-1 \
101 g729 \
102 gsmopen \
103 h26x \
104 h323 \
105 hash \
106 html5 \
107 httapi \
108 http-cache \
109 ilbc \
110 isac \
111 java \
112 json-cdr \
113 lcr \
114 ldap \
115 local-stream \
116 logfile \
117 loopback \
118 lua \
119 managed \
120 memcache \
121 mongo \
122 mp4 \
123 mp4v \
124 native-file \
125 nibblebill \
126 opus \
127 oreka \
128 perl \
129 portaudio \
130 portaudio-stream \
131 posix-timer \
132 radius-cdr \
133 rayo \
134 redis \
135 rss \
136 rtc \
137 rtmp \
138 sangoma-codec \
139 say-de \
140 say-en \
141 say-es \
142 say-fa \
143 say-fr \
144 say-hu \
145 say-it \
146 say-nl \
147 say-pt \
148 say-ru \
149 say-th \
150 say-zh \
151 shell-stream \
152 silk \
153 siren \
154 skel \
155 skinny \
156 skypopen \
157 sms \
158 snapshot \
159 snipe-hunt \
160 sndfile \
161 snmp \
162 snom \
163 sofia \
164 sonar \
165 spandsp \
166 spidermonkey \
167 spidermonkey-core-db \
168 spidermonkey-curl \
169 spidermonkey-odbc \
170 spidermonkey-socket \
171 spidermonkey-teletone \
172 spy \
173 ssml \
174 stress \
175 syslog \
176 timerfd \
177 tone-stream \
178 tts-commandline \
179 unimrcp \
180 valet-parking \
181 verto \
182 vmd \
183 voicemail \
184 voicemail-ivr \
185 vp8 \
186 xml-cdr \
187 xml-curl \
188 xml-ldap \
189 xml-rpc \
190 xml-radius \
191 xml-scgi \
192 yaml \
193
194
195 PKG_CONFIG_DEPENDS:= \
196 CONFIG_FS_WITH_ALSA \
197 CONFIG_FS_WITH_APR_CONFIG_SWITCHES \
198 CONFIG_FS_WITH_APR_IPV6 \
199 CONFIG_FS_WITH_APR_SCTP \
200 CONFIG_FS_WITH_APR_THREADS \
201 CONFIG_FS_WITH_BUILTIN_ZRTP \
202 CONFIG_FS_WITH_CORE_LIBEDIT_SUPPORT \
203 CONFIG_FS_WITH_DEFAULT_HEAD \
204 CONFIG_FS_WITH_ERLANG \
205 CONFIG_FS_WITH_FHS \
206 CONFIG_FS_WITH_FIXED_POINT \
207 CONFIG_FS_WITH_LATEST_HEAD \
208 CONFIG_FS_WITH_LOCAL_SOURCE \
209 CONFIG_FS_WITH_LZMA \
210 CONFIG_FS_WITH_MYSQL \
211 CONFIG_FS_WITH_ODBC \
212 CONFIG_FS_WITH_OGG \
213 CONFIG_FS_WITH_OPENSSL \
214 CONFIG_FS_WITH_OPENWRT_SOURCE \
215 CONFIG_FS_WITH_OPT \
216 CONFIG_FS_WITH_POSTGRESQL \
217 CONFIG_FS_WITH_SQLITE3 \
218 CONFIG_FS_WITH_SRTP \
219 CONFIG_FS_WITH_SRTP_GENERIC_AESICM \
220 CONFIG_FS_WITH_SRTP_KERNEL_LINUX \
221 CONFIG_FS_WITH_SRTP_OPENSSL \
222 CONFIG_FS_WITH_STUN \
223 CONFIG_FS_WITH_VISIBILITY \
224 $(patsubst %,CONFIG_PACKAGE_$(PKG_NAME)-mod-%,$(FS_MOD_AVAILABLE)) \
225
226
227 include $(INCLUDE_DIR)/package.mk
228 include $(INCLUDE_DIR)/nls.mk
229
230
231 ifneq ($(CONFIG_CCACHE),)
232 TARGET_CC=$(TARGET_CC_NOCACHE)
233 TARGET_CXX=$(TARGET_CXX_NOCACHE)
234 endif
235
236
237 ifneq ($(CONFIG_CCACHE),)
238 TARGET_CC=$(TARGET_CC_NOCACHE)
239 TARGET_CXX=$(TARGET_CXX_NOCACHE)
240 endif
241
242
243 define Package/$(PKG_NAME)/Default
244 SECTION:=net
245 CATEGORY:=Network
246 SUBMENU:=Telephony
247 URL:=http://www.$(PKG_NAME).org/
248 MAINTAINER:=Mazi Lo <openwrt.mazilo@recursor.net>
249 endef
250
251
252 define Package/$(PKG_NAME)
253 $(call Package/$(PKG_NAME)/Default)
254 MENU:=1
255 TITLE:=FreeSWITCH open source telephony platform ($(PKG_SOURCE_VERSION_SHORT))
256 DEPENDS:=+FS_WITH_CORE_LIBEDIT_SUPPORT:libedit +FS_WITH_OPENSSL:libopenssl +libcurl +libdb47 +libgdbm $(ICONV_DEPENDS) $(INTL_DEPENDS) +libjpeg +libncurses +libopenldap +libpcre +libpthread +librt +libspeex +libspeexdsp +FS_WITH_SQLITE3:libsqlite3 +FS_WITH_SRTP:libsrtp +SSP_SUPPORT:libssp +libstdcpp +libuuid +PACKAGE_$(PKG_NAME)-mod-perl:perl
257 endef
258
259
260 define Package/$(PKG_NAME)/description
261 FreeSWITCH is an open source telephony platform designed to
262 facilitate the creation of voice and chat driven products
263 scaling from a soft-phone up to a soft-switch.
264 endef
265
266
267 define Package/$(PKG_NAME)/config
268 source "$(SOURCE)/Config.in"
269 endef
270
271
272 define Package/$(PKG_NAME)-mod-spandsp/config
273 config FS_WITH_FIXED_POINT
274 depends on PACKAGE_$(PKG_NAME)-mod-spandsp
275 bool "Enable fixed point support for spandsp (may degrade performance)"
276 default n
277 help
278 Compile spandsp package with a fixed point support. ONLY enabled this
279 option when necessary, i.e. CPU doesn't support floating computation.
280 endef
281
282
283 define Package/$(PKG_NAME)-example-config
284 $(call Package/$(PKG_NAME)/Default)
285 TITLE:=FreeSWITCH example config (commented)
286 DEPENDS:= $(PKG_NAME)
287 endef
288
289
290 define Package/$(PKG_NAME)-example-config/description
291 The default configuration included with FreeSWITCH. It is not intended to be
292 a final product, and is thus moved to /usr/share/$(PKG_NAME)/examples/conf to
293 be an example of how FreeSWITCH can be configured.
294 endef
295
296
297 define Package/$(PKG_NAME)-config-upstream-defaults
298 $(call Package/$(PKG_NAME)/Default)
299 TITLE:=FreeSWITCH upstream config
300 DEPENDS:= $(PKG_NAME)
301 endef
302
303
304 define Package/$(PKG_NAME)-config-upstream-defaults/description
305 The default configuration included with FreeSWITCH. It is not intended to be
306 a final product, and but is included for those who don't want to use the
307 OpenWRT configuration and/or want to try things as prepared by upstream.
308 endef
309
310
311 define Package/$(PKG_NAME)-config-minimal
312 $(call Package/$(PKG_NAME)/Default)
313 TITLE:=FreeSWITCH minimal config
314 DEPENDS:= $(PKG_NAME)
315 endef
316
317
318 define Package/$(PKG_NAME)-config-minimal/description
319 A minimal configuration of FreeSWITCH for OpenWRT devices. Is what the UCI
320 configuration began with.
321 endef
322
323
324 define Package/$(PKG_NAME)-collection-upstream-defaults
325 $(call Package/$(PKG_NAME)/Default)
326 TITLE:=FS upstream def sample conf
327 DEPENDS:= $(PKG_NAME) \
328 +$(PKG_NAME)-config-upstream-defaults \
329 +$(PKG_NAME)-mod-callcenter \
330 +$(PKG_NAME)-mod-codec2 \
331 +$(PKG_NAME)-mod-commands \
332 +$(PKG_NAME)-mod-conference \
333 +$(PKG_NAME)-mod-curl \
334 +$(PKG_NAME)-mod-dialplan-xml \
335 +$(PKG_NAME)-mod-dingaling \
336 +$(PKG_NAME)-mod-dptools \
337 +$(PKG_NAME)-mod-event-socket \
338 +$(PKG_NAME)-mod-g723-1 \
339 +$(PKG_NAME)-mod-g729 \
340 +$(PKG_NAME)-mod-hash \
341 +$(PKG_NAME)-mod-http-cache \
342 +$(PKG_NAME)-mod-ilbc \
343 +$(PKG_NAME)-mod-local-stream \
344 +$(PKG_NAME)-mod-lua \
345 +$(PKG_NAME)-mod-native-file \
346 +$(PKG_NAME)-mod-say-en \
347 +$(PKG_NAME)-mod-sndfile \
348 +$(PKG_NAME)-mod-sofia \
349 +$(PKG_NAME)-mod-syslog \
350 +$(PKG_NAME)-mod-tone-stream \
351 +$(PKG_NAME)-mod-xml-curl \
352 +$(PKG_NAME)-mod-xml-rpc \
353 +$(PKG_NAME)-tools
354 endef
355
356
357 define Package/$(PKG_NAME)-collection-minimal
358 $(call Package/$(PKG_NAME)/Default)
359 TITLE:=FreeSWITCH minimal package collection
360 DEFAULT:=y
361 DEPENDS:= $(PKG_NAME) \
362 +$(PKG_NAME)-config-minimal \
363 +$(PKG_NAME)-mod-codec2 \
364 +$(PKG_NAME)-mod-commands \
365 +$(PKG_NAME)-mod-dialplan-xml \
366 +$(PKG_NAME)-mod-dptools \
367 +$(PKG_NAME)-mod-event-socket \
368 +$(PKG_NAME)-mod-hash \
369 +$(PKG_NAME)-mod-local-stream \
370 +$(PKG_NAME)-mod-sndfile \
371 +$(PKG_NAME)-mod-sofia \
372 +$(PKG_NAME)-mod-syslog \
373 +$(PKG_NAME)-mod-tone-stream \
374 +$(PKG_NAME)-tools
375 endef
376
377
378 define Package/$(PKG_NAME)-sounds-en-08KHz
379 $(call Package/$(PKG_NAME)/Default)
380 TITLE:=FreeSWITCH 8KHz english sounds
381 DEPENDS:= $(PKG_NAME)
382 endef
383
384
385 define Package/$(PKG_NAME)-sounds-en-16KHz
386 $(call Package/$(PKG_NAME)/Default)
387 TITLE:=FreeSWITCH 16KHz english sounds
388 DEPENDS:= +$(PKG_NAME)-sounds-en-08KHz
389 endef
390
391
392 define Package/$(PKG_NAME)-sounds-en-32KHz
393 $(call Package/$(PKG_NAME)/Default)
394 TITLE:=FreeSWITCH 32KHz english sounds
395 DEPENDS:= +$(PKG_NAME)-sounds-en-16KHz
396 endef
397
398
399 define Package/$(PKG_NAME)-sounds-en-48KHz
400 $(call Package/$(PKG_NAME)/Default)
401 TITLE:=FreeSWITCH 48KHz english sounds
402 DEPENDS:= +$(PKG_NAME)-sounds-en-32KHz
403 endef
404
405
406 define Package/$(PKG_NAME)-sounds-moh-08KHz
407 $(call Package/$(PKG_NAME)/Default)
408 TITLE:=FreeSWITCH 8KHz music-on-hold sounds
409 DEPENDS:= $(PKG_NAME)
410 endef
411
412
413 define Package/$(PKG_NAME)-sounds-moh-16KHz
414 $(call Package/$(PKG_NAME)/Default)
415 TITLE:=FreeSWITCH 16KHz music-on-hold sounds
416 DEPENDS:= +$(PKG_NAME)-sounds-moh-08KHz
417 endef
418
419
420 define Package/$(PKG_NAME)-sounds-moh-32KHz
421 $(call Package/$(PKG_NAME)/Default)
422 TITLE:=FreeSWITCH 32KHz music-on-hold sounds
423 DEPENDS:= +$(PKG_NAME)-sounds-moh-16KHz
424 endef
425
426
427 define Package/$(PKG_NAME)-sounds-moh-48KHz
428 $(call Package/$(PKG_NAME)/Default)
429 TITLE:=FreeSWITCH 48KHz music-on-hold sounds
430 DEPENDS:= +$(PKG_NAME)-sounds-moh-32KHz
431 endef
432
433
434 define Package/$(PKG_NAME)-tools
435 $(call Package/$(PKG_NAME)/Default)
436 TITLE:=FreeSWITCH control tools
437 DEPENDS:= $(PKG_NAME)
438 endef
439
440
441 define Download/files
442 define Download/$(1)
443 FILE:=$(2)
444 URL:=$(if $(4),$(4),http://files.$(PKG_NAME).org)/$(5)
445 MD5SUM:=$(3)
446 endef
447 define Prepare/$(1)
448 $(LN) $(DL_DIR)/$(2) $(PKG_BUILD_DIR)/$(6)
449 endef
450 $$(eval $$(call Download,$(1)))
451 endef
452
453
454 MAKE_INSTALL_TARGETS:=install
455
456
457 ifneq ($(CONFIG_PACKAGE_$(PKG_NAME)-mod-celt),)
458 $(eval $(call Download/files,celt,celt-0.10.0.tar.gz,a656f6176e9be84027c0e51ceedd710f,,downloads/libs/,libs/))
459 endif
460
461
462 ifneq ($(CONFIG_PACKAGE_$(PKG_NAME)-mod-curl),)
463 $(eval $(call Download/files,json-cdr,json-c-0.9.tar.gz,4653b3b9c568bb9c782178abfaac128d,,downloads/libs/,libs/))
464 endif
465
466
467 ifneq ($(CONFIG_PACKAGE_$(PKG_NAME)-mod-event-zmq),)
468 $(eval $(call Download/files,event-zmq,zeromq-2.1.9.tar.gz,94c5e0262a79c5f82bc0b178c1f8a33d,http://download.zeromq.org http://download.zeromq.org/historic,,libs/))
469 endif
470
471
472 ifneq ($(CONFIG_PACKAGE_$(PKG_NAME)-mod-flite),)
473 $(eval $(call Download/files,flite,flite-1.5.4-current.tar.bz2,f3a2d88b1059f6f4ff3c20a8169bc0f4,,downloads/libs/,libs/))
474 endif
475
476
477 ifneq ($(CONFIG_PACKAGE_$(PKG_NAME)-mod-mongo),)
478 $(eval $(call Download/files,mongo,mongo-c-driver-0.92.2.tar.gz,afab25a33abd3f1e0ba79c5a9da92651,,downloads/libs/,libs/))
479 endif
480
481
482 ifneq ($(CONFIG_PACKAGE_$(PKG_NAME)-mod-opus),)
483 $(eval $(call Download/files,opus,opus-1.1-p2.tar.gz,5da7cb39925bfb7dd60ea2e810f71357,,downloads/libs/,libs/))
484 endif
485
486
487 ifneq ($(CONFIG_PACKAGE_$(PKG_NAME)-mod-ldap)|$(CONFIG_PACKAGE_$(PKG_NAME)-mod-xml-ldap),)
488 $(eval $(call Download/files,ldap,openldap-2.4.19.tar.gz,4a6dab2711fcf141f19bb680bc335887,,downloads/libs/,libs/))
489 endif
490
491
492 ifneq ($(CONFIG_PACKAGE_$(PKG_NAME)-sounds-en-08KHz),)
493 $(eval $(call Download/files,sounds-en-08KHz,$(PKG_NAME)-sounds-en-us-callie-8000-1.0.50.tar.gz,ce887146f43acad89ab2b93f379ef12e,,,))
494 MAKE_INSTALL_TARGETS+= sounds-install
495 endif
496
497
498 ifneq ($(CONFIG_PACKAGE_$(PKG_NAME)-sounds-en-16KHz),)
499 $(eval $(call Download/files,sounds-en-16KHz,$(PKG_NAME)-sounds-en-us-callie-16000-1.0.50.tar.gz,261f42e310baa97cc4dcfdc51971aff8,,,))
500 MAKE_INSTALL_TARGETS+= hd-sounds-install
501 endif
502
503
504 ifneq ($(CONFIG_PACKAGE_$(PKG_NAME)-sounds-en-32KHz),)
505 $(eval $(call Download/files,sounds-en-32KHz,$(PKG_NAME)-sounds-en-us-callie-32000-1.0.50.tar.gz,f204512fadc49a3267ff4a5e899b77a5,,,))
506 MAKE_INSTALL_TARGETS+= uhd-sounds-install
507 endif
508
509
510 ifneq ($(CONFIG_PACKAGE_$(PKG_NAME)-sounds-en-48KHz),)
511 $(eval $(call Download/files,sounds-en-48KHz,$(PKG_NAME)-sounds-en-us-callie-48000-1.0.50.tar.gz,8622a77a5d6dcf5e47bdf30d6a33e27c,,,))
512 MAKE_INSTALL_TARGETS+= cd-sounds-install
513 endif
514
515
516 ifneq ($(CONFIG_PACKAGE_$(PKG_NAME)-sounds-moh-08KHz),)
517 $(eval $(call Download/files,sounds-moh-08KHz,$(PKG_NAME)-sounds-music-8000-1.0.50.tar.gz,c1f62dc26360f39f8eb442d5efd0a3aa,,,))
518 MAKE_INSTALL_TARGETS+= moh-install
519 endif
520
521
522 ifneq ($(CONFIG_PACKAGE_$(PKG_NAME)-sounds-moh-16KHz),)
523 $(eval $(call Download/files,sounds-moh-16KHz,$(PKG_NAME)-sounds-music-16000-1.0.50.tar.gz,d253e26baa85e0e2e727a1cb1cca898e,,,))
524 MAKE_INSTALL_TARGETS+= hd-moh-install
525 endif
526
527
528 ifneq ($(CONFIG_PACKAGE_$(PKG_NAME)-sounds-moh-32KHz),)
529 $(eval $(call Download/files,sounds-moh-32KHz,$(PKG_NAME)-sounds-music-32000-1.0.50.tar.gz,0e3ee69cb4ba2813ed0d3f7811332b63,,,))
530 MAKE_INSTALL_TARGETS+= uhd-moh-install
531 endif
532
533
534 ifneq ($(CONFIG_PACKAGE_$(PKG_NAME)-sounds-moh-48KHz),)
535 $(eval $(call Download/files,sounds-moh-48KHz,$(PKG_NAME)-sounds-music-48000-1.0.50.tar.gz,873a62df1ab3be4191eb2488156ec2c2,,,))
536 MAKE_INSTALL_TARGETS+= cd-moh-install
537 endif
538
539
540 #
541 # XXX: -fgnu89-inline is not supported on all compiler versions, so only enable it on avr32 where it solves build issues
542 #
543 ifneq ($(CONFIG_avr32),)
544 TARGET_CFLAGS += -fgnu89-inline
545 TARGET_CXXFLAGS += -fgnu89-inline
546 endif
547
548
549 ifneq ($(CONFIG_USE_EGLIBC),)
550 ifeq ($(CONFIG_EGLIBC_OPTION_EGLIBC_UTMP),)
551 TARGET_CFLAGS += -DNO_GETLOGIN
552 endif
553 endif
554
555
556 FS_TARGET_CFLAGS:= $(TARGET_CFLAGS) -DLUA_USE_LINUX $(FPIC) -std=gnu99 -Wno-format -Wno-unused-variable -Wno-unused-but-set-variable -Wno-implicit-function-declaration
557 FS_TARGET_CXXFLAGS:= $(TARGET_CXXFLAGS)
558 FS_TARGET_CPPFLAGS:= -I. -I./lua $(TARGET_CPPFLAGS) $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-json-cdr),-Wno-error) -I`ls -d $(PKG_BUILD_DIR)/libs/*|grep tiff`/libtiff -I$(PKG_BUILD_DIR)/libs/spandsp/src
559
560
561 #MAKE_FLAGS += \
562 # OPT_FLAGS+="$(TARGET_CFLAGS)"
563
564
565 MAKE_VARS += \
566 AR="$(TOOLCHAIN_DIR)/bin/$(TARGET_CROSS)ar" \
567 CC="$(TOOLCHAIN_DIR)/bin/$(TARGET_CC)" \
568 CXX="$(TOOLCHAIN_DIR)/bin/$(TARGET_CXX)" \
569 RANLIB="$(TOOLCHAIN_DIR)/bin/$(TARGET_CROSS)ranlib" \
570 CC_FOR_BUILD="$(HOSTCC)" \
571
572
573 CONFIGURE_ARGS+= \
574 --host=$(GNU_TARGET_NAME) \
575 --build=$(GNU_HOST_NAME) \
576 --prefix="/usr/share/$(PKG_NAME)" \
577 --bindir="/usr/bin" \
578 --libdir="/usr/lib" \
579 --srcdir="$(PKG_BUILD_DIR)" \
580 --sysconfdir="/etc/$(PKG_NAME)" \
581 --with-modinstdir="/usr/lib/$(PKG_NAME)" \
582 --with-random="/dev/urandom" \
583 $(call autoconf_bool,CONFIG_FS_WITH_BUILTIN_ZRTP,zrtp) \
584 $(call autoconf_bool,CONFIG_FS_WITH_CORE_LIBEDIT_SUPPORT,core-libedit-support) \
585 $(call autoconf_bool,CONFIG_FS_WITH_FHS,fhs) \
586 $(call autoconf_bool,CONFIG_FS_WITH_APR_IPV6,ipv6) \
587 $(call autoconf_bool,CONFIG_FS_WITH_LZMA,lzma) \
588 $(call autoconf_bool,CONFIG_FS_WITH_ODBC,core-odbc-support) \
589 $(call autoconf_bool,CONFIG_FS_WITH_OPT,optimization) \
590 $(call autoconf_bool,CONFIG_FS_WITH_POSTGRESQL,core-pgsql-pkgconfig) \
591 $(call autoconf_bool,CONFIG_FS_WITH_POSTGRESQL,core-pgsql-support) \
592 $(call autoconf_bool,CONFIG_FS_WITH_SRTP,srtp) \
593 $(call autoconf_bool,CONFIG_FS_WITH_SRTP_GENERIC_AESICM,generic-aesicm) \
594 $(call autoconf_bool,CONFIG_FS_WITH_SRTP_KERNEL_LINUX,kernel-linux) \
595 $(call autoconf_bool,CONFIG_FS_WITH_SRTP_OPENSSL,openssl) \
596 $(call autoconf_bool,CONFIG_FS_WITH_STUN,stun) \
597 $(call autoconf_bool,CONFIG_FS_WITH_APR_THREADS,threads) \
598 $(call autoconf_bool,CONFIG_FS_WITH_VISIBILITY,visibility) \
599 $(call autoconf_bool,CONFIG_PACKAGE_$(PKG_NAME)-mod-spandsp && CONFIG_FS_WITH_FIXED_POINT,fixed-point) \
600 $(call autoconf_bool,CONFIG_PACKAGE_$(PKG_NAME)-mod-spandsp,builtin-tiff) \
601 $(call autoconf_bool,CONFIG_PACKAGE_$(PKG_NAME)-mod-timerfd,timerfd-wrapper) \
602 $(if $(CONFIG_FS_WITH_ODBC),--with-odbc-lib="$(STAGING_DIR)/usr/lib") \
603 $(if $(CONFIG_FS_WITH_ODBC),--with-odbc="$(STAGING_DIR)/usr") \
604 $(if $(CONFIG_FS_WITH_OGG),--with-ogg="$(STAGING_DIR)/usr") \
605 $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-celt),--with-ogg="$(STAGING_DIR)/usr",--without-ogg) \
606 $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-erlang-event),--with-erlang="$(CONFIG_FS_WITH_ERLANG)",--without-erlang) \
607 $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-java),--with-java="$(STAGING_DIR)/usr",--without-java) \
608 $(if ($(CONFIG_PACKAGE_$(PKG_NAME)-mod-curl)|$(CONFIG_PACKAGE_$(PKG_NAME)-mod-xml-cdr)|$(CONFIG_PACKAGE_$(PKG_NAME)-mod-xml-curl)),--with-libcurl="$(STAGING_DIR)/usr",--without-libcurl) \
609 --with$(if $(CONFIG_FS_WITH_MYSQL),,out)-mysql \
610 --with$(if $(CONFIG_FS_WITH_OPENSSL),,out)-openssl \
611 --with$(if $(CONFIG_FS_WITH_POSTGRESQL),,out)-pgsql \
612 --with$(if $(CONFIG_FS_WITH_SQLITE3),,out)-sqlite3 \
613
614
615 ifeq ($(ARCH),arm)
616 CONFIGURE_ARGS+= --enable-arm5e-asm \
617
618 endif
619
620
621 CONFIGURE_VARS+= \
622 config_TARGET_CC="$(TOOLCHAIN_DIR)/bin/$(TARGET_CC)" \
623 config_TARGET_CXX="$(TOOLCHAIN_DIR)/bin/$(TARGET_CXX)" \
624 config_TARGET_CFLAGS="$(FS_TARGET_CPPFLAGS) $(FS_TARGET_CFLAGS)" \
625 config_TARGET_CXXFLAGS="$(FS_TARGET_CPPFLAGS) $(FS_TARGET_CXXFLAGS)" \
626 config_TARGET_CPPFLAGS="$(FS_TARGET_CPPFLAGS)" \
627 config_TARGET_READLINE_INC="$(FS_TARGET_CPPFLAGS)" \
628 config_TARGET_READLINE_LIBS="-lreadline -lncurses" \
629 config_TARGET_LIBS="-lpthread -ldl" \
630 config_BUILD_CC="$(HOSTCC)" \
631 CC_FOR_BUILD="$(HOSTCC)" \
632 BUILDTOOL_CC="$(HOSTCC)" \
633 BUILDTOOL_CCLD="$(HOSTCC)" \
634 CC="$(TOOLCHAIN_DIR)/bin/$(TARGET_CC)" \
635 CXX="$(TOOLCHAIN_DIR)/bin/$(TARGET_CXX)" \
636 AR="$(TOOLCHAIN_DIR)/bin/$(TARGET_CROSS)ar" \
637 RANLIB="$(TOOLCHAIN_DIR)/bin/$(TARGET_CROSS)ranlib" \
638 CFLAGS="$(FS_TARGET_CPPFLAGS) $(FS_TARGET_CFLAGS)" \
639 CXXFLAGS="$(FS_TARGET_CPPFLAGS) $(FS_TARGET_CXXFLAGS)" \
640 CPPFLAGS="$(FS_TARGET_CPPFLAGS)" \
641 LDFLAGS="-L$(STAGING_DIR)/usr/lib/perl5/5.20/CORE -Wl,-rpath-link=\"$(STAGING_DIR)/usr/lib\" -Wl,-rpath-link=\"$(STAGING_DIR)/usr/lib$(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-perl),/perl5/5.20/CORE)\" -Wl,-rpath,/usr/lib -Wl,-rpath,/usr/lib$(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-perl),/perl5/5.20/CORE -lperl -lpthread -lnsl -lgdbm -ldb -ldl -lm -lcrypt -lutil -lc)" \
642 HOST_CC="/usr/bin/cc" \
643 HOST_CXX="/usr/bin/g++" \
644 CROSS_COMPILE="1" \
645 $(if $(CONFIG_FS_WITH_APR_SCTP),ac_cv_header_netinet_sctp_h="yes") \
646
647
648 define Build/Prepare
649 $(call Build/Prepare/Default)
650 $(call Prepare/celt)
651 $(call Prepare/event-zmq)
652 $(call Prepare/flite)
653 $(call Prepare/json-cdr)
654 $(call Prepare/ldap)
655 $(call Prepare/mongo)
656 $(call Prepare/opus)
657 $(if $(CONFIG_PACKAGE_$(PKG_NAME)-sounds-en-08KHz),$(call Prepare/sounds-en-08KHz))
658 $(if $(CONFIG_PACKAGE_$(PKG_NAME)-sounds-en-16KHz),$(call Prepare/sounds-en-16KHz))
659 $(if $(CONFIG_PACKAGE_$(PKG_NAME)-sounds-en-32KHz),$(call Prepare/sounds-en-32KHz))
660 $(if $(CONFIG_PACKAGE_$(PKG_NAME)-sounds-en-48KHz),$(call Prepare/sounds-en-48KHz))
661 $(if $(CONFIG_PACKAGE_$(PKG_NAME)-sounds-moh-08KHz),$(call Prepare/sounds-moh-08KHz))
662 $(if $(CONFIG_PACKAGE_$(PKG_NAME)-sounds-moh-16KHz),$(call Prepare/sounds-moh-16KHz))
663 $(if $(CONFIG_PACKAGE_$(PKG_NAME)-sounds-moh-32KHz),$(call Prepare/sounds-moh-32KHz))
664 $(if $(CONFIG_PACKAGE_$(PKG_NAME)-sounds-moh-48KHz),$(call Prepare/sounds-moh-48KHz))
665 ifeq ($(CONFIG_FS_WITH_LOCAL_SOURCE),y)
666 (cd $(PKG_BUILD_DIR); $(if $(CONFIG_FS_WITH_LATEST_HEAD),if $(QUILT_CMD) top > /dev/null 2>&1 && [ -f $(PKG_BUILD_DIR)/patches/series ]; then $(QUILT_CMD) pop -a; fi; git pull;) if $(QUILT_CMD) next > /dev/null 2>&1; then $(QUILT_CMD) push -a; fi)
667 endif
668 endef
669
670
671 define Build/Configure
672 (cd $(PKG_BUILD_DIR); $(if $(CONFIG_FS_WITH_LATEST_HEAD),if $(QUILT_CMD) top > /dev/null 2>&1 && [ -f $(PKG_BUILD_DIR)/patches/series ]; then $(QUILT_CMD) pop -a; fi; git pull;) if $(QUILT_CMD) next > /dev/null 2>&1; then $(QUILT_CMD) push -a; fi)
673 (cd $(PKG_BUILD_DIR); $(AM_TOOL_PATHS) ./bootstrap.sh)
674 $(foreach m,$(FS_MOD_AVAILABLE),
675 $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-$(m)),
676 $(SED) 's|^[ #]*\([^#]*/mod_$(subst -,_,$(m))\)$$$$|\1|g' $(PKG_BUILD_DIR)/modules.conf
677 ,
678 $(SED) 's|^\([^#]*/mod_$(subst -,_,$(m))\)$$$$|#\1|g' $(PKG_BUILD_DIR)/modules.conf
679 )
680 )
681 $(call Build/Configure/Default)
682 endef
683
684
685 define Build/Compile
686 $(call Build/Compile/Default, \
687 DESTDIR="$(PKG_INSTALL_DIR)" \
688 all $(MAKE_INSTALL_TARGETS) \
689 )
690 $(SED) 's|^\([ \t]*\)\(.*\)"mod_console"\(.*\)$$$$|\1<!-- \2"mod_console"\3 -->|' $(PKG_INSTALL_DIR)/etc/$(PKG_NAME)/autoload_configs/modules.conf.xml
691 $(SED) 's|^\([ \t]*\)<!-- *\(.*\)"mod_syslog"\(.*\) *-->\(.*\)$$$$|\1\2"mod_syslog"\3\4|' $(PKG_INSTALL_DIR)/etc/$(PKG_NAME)/autoload_configs/modules.conf.xml
692 endef
693
694
695 define Build/InstallDev
696 $(INSTALL_DIR) $(1)/usr/include
697 $(INSTALL_DIR) $(1)/usr/lib
698 $(CP) $(PKG_INSTALL_DIR)/usr/include $(1)/usr
699 $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib$(PKG_NAME).{a,so*} $(1)/usr/lib/
700 endef
701
702
703 define Package/$(PKG_NAME)/install
704 $(INSTALL_DIR) $(1)/etc/config
705 $(INSTALL_DIR) $(1)/etc/default
706 $(INSTALL_DIR) $(1)/etc/$(PKG_NAME)
707 $(INSTALL_DIR) $(1)/etc/$(PKG_NAME)/scripts
708 $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
709 $(INSTALL_DIR) $(1)/etc/init.d
710 $(INSTALL_DIR) $(1)/usr/bin
711 $(INSTALL_DIR) $(1)/usr/include
712 $(INSTALL_DIR) $(1)/usr/lib
713 $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
714 $(INSTALL_BIN) ./files/$(PKG_NAME).init $(1)/etc/init.d/$(PKG_NAME)
715 $(INSTALL_DATA) ./files/$(PKG_NAME).config $(1)/etc/config/$(PKG_NAME)
716 $(INSTALL_DATA) ./files/$(PKG_NAME).default $(1)/etc/default/$(PKG_NAME)
717 $(INSTALL_DATA) ./files/$(PKG_NAME).hotplug $(1)/etc/hotplug.d/iface/90-$(PKG_NAME)
718 $(CP) $(PKG_INSTALL_DIR)/usr/bin/$(PKG_NAME) $(1)/usr/bin/
719 $(CP) $(PKG_INSTALL_DIR)/usr/include $(1)/usr/
720 $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib$(PKG_NAME)* $(1)/usr/lib/
721 $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/$(PKG_NAME).pc $(1)/usr/lib/pkgconfig/
722 $(if $(1)/usr/lib/lib$(PKG_NAME).la,$(STAGING_DIR_HOST)/bin/sed -i -re 's|$(STAGING_DIR)||g;s|$(TOOLCHAIN_DIR)||g;s|$(TARGET_CROSS)|usr|g;s|$(REAL_GNU_TARGET_NAME)|usr|g;s|-L$(PKG_BUILD_DIR)(.*)libzrtp ||g;:a;s|((-[IL]/\S+\s).*)\2|\1|;ta' $(1)/usr/lib/lib$(PKG_NAME).la)
723 endef
724
725
726 define Package/$(PKG_NAME)-collection-upstream-defaults/install
727 $(INSTALL_DIR) $(1)/etc/$(PKG_NAME)
728 endef
729
730
731 define Package/$(PKG_NAME)-example-config/install
732 $(INSTALL_DIR) $(1)/usr/share/$(PKG_NAME)/examples/conf
733 $(CP) $(PKG_INSTALL_DIR)/etc/$(PKG_NAME)/* $(1)/usr/share/$(PKG_NAME)/examples/conf/
734 endef
735
736
737 define Package/$(PKG_NAME)-config-upstream-defaults/install
738 $(INSTALL_DIR) $(1)/etc/$(PKG_NAME)
739 $(CP) $(PKG_INSTALL_DIR)/etc/$(PKG_NAME) $(1)/etc
740 endef
741
742
743 define Package/$(PKG_NAME)-collection-minimal/install
744 $(INSTALL_DIR) $(1)/etc/$(PKG_NAME)
745 endef
746
747
748 define Package/$(PKG_NAME)-collection-uci-minimal/install
749 $(INSTALL_DIR) $(1)/etc/$(PKG_NAME)
750 endef
751
752
753 define Package/$(PKG_NAME)-config-minimal/install
754 $(INSTALL_DIR) $(1)/etc/$(PKG_NAME)/autoload_configs
755
756 #
757 # Copying dialplan directory jingle_profiles sip_profiles $(PKG_NAME).xml
758 # fur_elise.ttml mime.types tetris.ttml tones.conf vars.xml
759 #
760 $(foreach f,dialplan directory jingle_profiles sip_profiles $(PKG_NAME).xml fur_elise.ttml mime.types tetris.ttml vars.xml,$(if $(PKG_BUILD_DIR)/conf/vanilla/$(f),$(CP) $(PKG_BUILD_DIR)/conf/vanilla/$(f) $(1)/etc/$(PKG_NAME);))
761
762 #
763 # Copying acl ivr modules post_load_modules switch timezones
764 #
765 $(foreach f,acl ivr modules post_load_modules switch timezones,$(if $(PKG_BUILD_DIR)/conf/vanilla/autoload_configs/$(f).conf.xml,$(CP) $(PKG_BUILD_DIR)/conf/vanilla/autoload_configs/$(f).conf.xml $(1)/etc/$(PKG_NAME)/autoload_configs;))
766 endef
767
768
769 define Package/$(PKG_NAME)-sounds-en-08KHz/install
770 #
771 # sounds-en-8KHz
772 #
773 for dir in `(cd $(PKG_INSTALL_DIR)/usr/share/$(PKG_NAME)/sounds/en/us/callie;ls)`; \
774 do \
775 [ -d $(1)/usr/share/$(PKG_NAME)/sounds/en/us/callie/$$$${dir}/8000 ] || $(INSTALL_DIR) $(1)/usr/share/$(PKG_NAME)/sounds/en/us/callie/$$$${dir}/8000; \
776 $(CP) $(PKG_INSTALL_DIR)/usr/share/$(PKG_NAME)/sounds/en/us/callie/$$$${dir}/8000/* $(1)/usr/share/$(PKG_NAME)/sounds/en/us/callie/$$$${dir}/8000; \
777 done
778 endef
779
780
781 define Package/$(PKG_NAME)-sounds-en-16KHz/install
782 #
783 # sounds-en-16KHz
784 #
785 for dir in `(cd $(PKG_INSTALL_DIR)/usr/share/$(PKG_NAME)/sounds/en/us/callie;ls)`; \
786 do \
787 [ -d $(1)/usr/share/$(PKG_NAME)/sounds/en/us/callie/$$$${dir}/16000 ] || $(INSTALL_DIR) $(1)/usr/share/$(PKG_NAME)/sounds/en/us/callie/$$$${dir}/16000; \
788 $(CP) $(PKG_INSTALL_DIR)/usr/share/$(PKG_NAME)/sounds/en/us/callie/$$$${dir}/16000/* $(1)/usr/share/$(PKG_NAME)/sounds/en/us/callie/$$$${dir}/16000; \
789 done
790 endef
791
792
793 define Package/$(PKG_NAME)-sounds-en-32KHz/install
794 #
795 # sounds-en-32KHz
796 #
797 for dir in `(cd $(PKG_INSTALL_DIR)/usr/share/$(PKG_NAME)/sounds/en/us/callie;ls)`; \
798 do \
799 [ -d $(1)/usr/share/$(PKG_NAME)/sounds/en/us/callie/$$$${dir}/32000 ] || $(INSTALL_DIR) $(1)/usr/share/$(PKG_NAME)/sounds/en/us/callie/$$$${dir}/32000; \
800 $(CP) $(PKG_INSTALL_DIR)/usr/share/$(PKG_NAME)/sounds/en/us/callie/$$$${dir}/32000/* $(1)/usr/share/$(PKG_NAME)/sounds/en/us/callie/$$$${dir}/32000; \
801 done
802 endef
803
804
805 define Package/$(PKG_NAME)-sounds-en-48KHz/install
806 #
807 # sounds-en-48KHz
808 #
809 for dir in `(cd $(PKG_INSTALL_DIR)/usr/share/$(PKG_NAME)/sounds/en/us/callie;ls)`; \
810 do \
811 [ -d $(1)/usr/share/$(PKG_NAME)/sounds/en/us/callie/$$$${dir}/48000 ] || $(INSTALL_DIR) $(1)/usr/share/$(PKG_NAME)/sounds/en/us/callie/$$$${dir}/48000; \
812 $(CP) $(PKG_INSTALL_DIR)/usr/share/$(PKG_NAME)/sounds/en/us/callie/$$$${dir}/48000/* $(1)/usr/share/$(PKG_NAME)/sounds/en/us/callie/$$$${dir}/48000; \
813 done
814 endef
815
816
817 define Package/$(PKG_NAME)-sounds-moh-08KHz/install
818 #
819 # sounds-moh-8KHz
820 #
821 [ -d $(1)/usr/share/$(PKG_NAME)/sounds/music/8000 ] || $(INSTALL_DIR) $(1)/usr/share/$(PKG_NAME)/sounds/music/8000;
822 $(CP) $(PKG_INSTALL_DIR)/usr/share/$(PKG_NAME)/sounds/music/8000 $(1)/usr/share/$(PKG_NAME)/sounds/music;
823 endef
824
825
826 define Package/$(PKG_NAME)-sounds-moh-16KHz/install
827 #
828 # sounds-moh-16KHz
829 #
830 [ -d $(1)/usr/share/$(PKG_NAME)/sounds/music/16000 ] || $(INSTALL_DIR) $(1)/usr/share/$(PKG_NAME)/sounds/music/16000;
831 $(CP) $(PKG_INSTALL_DIR)/usr/share/$(PKG_NAME)/sounds/music/16000 $(1)/usr/share/$(PKG_NAME)/sounds/music;
832 endef
833
834
835 define Package/$(PKG_NAME)-sounds-moh-32KHz/install
836 #
837 # sounds-moh-32KHz
838 #
839 [ -d $(1)/usr/share/$(PKG_NAME)/sounds/music/32000 ] || $(INSTALL_DIR) $(1)/usr/share/$(PKG_NAME)/sounds/music/32000;
840 $(CP) $(PKG_INSTALL_DIR)/usr/share/$(PKG_NAME)/sounds/music/32000 $(1)/usr/share/$(PKG_NAME)/sounds/music;
841 endef
842
843
844 define Package/$(PKG_NAME)-sounds-moh-48KHz/install
845 #
846 # sounds-moh-48KHz
847 #
848 [ -d $(1)/usr/share/$(PKG_NAME)/sounds/music/48000 ] || $(INSTALL_DIR) $(1)/usr/share/$(PKG_NAME)/sounds/music/48000;
849 $(CP) $(PKG_INSTALL_DIR)/usr/share/$(PKG_NAME)/sounds/music/48000 $(1)/usr/share/$(PKG_NAME)/sounds/music;
850 endef
851
852
853 define Package/$(PKG_NAME)-tools/install
854 $(INSTALL_DIR) $(1)/usr/bin
855 $(CP) $(PKG_INSTALL_DIR)/usr/bin/fs_cli $(1)/usr/bin/
856 $(CP) $(PKG_INSTALL_DIR)/usr/bin/fs_encode $(1)/usr/bin/
857 $(CP) $(PKG_INSTALL_DIR)/usr/bin/fs_ivrd $(1)/usr/bin/
858 $(CP) $(PKG_INSTALL_DIR)/usr/bin/fsxs $(1)/usr/bin/
859 $(CP) $(PKG_INSTALL_DIR)/usr/bin/gentls_cert $(1)/usr/bin/
860 $(CP) $(PKG_INSTALL_DIR)/usr/bin/tone2wav $(1)/usr/bin/
861 endef
862
863
864 # 1. Name
865 # 2. Title
866 # 3. Selection on module configuration file
867 # 4. Files (module files include different names)
868 # 5. Files (supporting files include different names)
869 # 6. Inter module depends
870 # 7. Extra depends
871 #
872 define BuildPlugin
873 define Package/$(PKG_NAME)-mod-$(1)
874 $$(call Package/$(PKG_NAME)/Default)
875 TITLE:= FS $(2) module
876 DEPENDS:= $(PKG_NAME) $(foreach m,$(6),+$(PKG_NAME)-mod-$(m)) $(7)
877 endef
878
879 define Package/$(PKG_NAME)-mod-$(1)/install
880 [ -z "mod_$(subst -,_,$(1))" ] || $(INSTALL_DIR) $$(1)/usr/lib/$(PKG_NAME)
881
882 for f in $$$$(realpath $$$$(wildcard $(PKG_INSTALL_DIR)/usr/lib/$(PKG_NAME)/mod_$(subst -,_,$(1)).*)) $$$$(wildcard $(PKG_INSTALL_DIR)/usr/lib/$(PKG_NAME)/$(4)_*); \
883 do \
884 $(CP) $$$$$$$${f} $$(1)/usr/lib/$(PKG_NAME)/; \
885 done
886
887 #
888 # mod_$(subst -,_,$(1)): $(5)
889 #
890 $(foreach f,$(5),[ -d $(dir $$(1)/usr/${f}) ] || $(INSTALL_DIR) $(dir $$(1)/usr/${f});$(CP) $$$$(wildcard $(PKG_INSTALL_DIR)/usr/${f}*) $(dir $$(1)/usr/${f});)
891
892 #
893 # mod_$(subst -,_,$(1)): Clean installed library control files from referencig to OpenWRT PATH.
894 #
895 $(STAGING_DIR_HOST)/bin/sed -i -re 's|$(STAGING_DIR)||g;s|$(TOOLCHAIN_DIR)||g;s|$(TARGET_CROSS)|usr|g;s|$(REAL_GNU_TARGET_NAME)|usr|g;s|-L$(PKG_BUILD_DIR)(.*)libzrtp ||g;s|-L$(PKG_BUILD_DIR)(.*)libtiff ||g;:a;s|((-[IL]/\S+\s).*)\2|\1|;ta' $(foreach l,`find $$(1)/usr/lib -name "*.la" -print`,$(l))
896
897 #
898 # 1. mod_$(subst -,_,$(1)) XML configuration files from: $$$$(patsubst $(PKG_BUILD_DIR)/%,%,$$$$(firstword $$$$(wildcard $(PKG_BUILD_DIR)/conf/$(3)/autoload_configs/$(subst -,_,$(1)).conf.xml)))
899 #
900 $$$$(if $$$$(firstword $$$$(wildcard $(PKG_BUILD_DIR)/conf/$(3)/autoload_configs/$(subst -,_,$(1)).conf.xml)),[ -d $$(1)/etc/$(PKG_NAME)/autoload_configs ] || $(INSTALL_DIR) $$(1)/etc/$(PKG_NAME)/autoload_configs;$(CP) $$$$(firstword $$$$(wildcard $(PKG_BUILD_DIR)/conf/$(3)/autoload_configs/$(subst -,_,$(1)).conf.xml)) $$(1)/etc/$(PKG_NAME)/autoload_configs;$(SED) 's|/usr/local/lib|/usr/lib|g;s|/usr/local|/etc|g' $$(1)/etc/$(PKG_NAME)/autoload_configs/$(subst -,_,$(1)).conf.xml)
901
902 #
903 # 2. mod_$(subst -,_,$(1)) XML configuration files from: $$$$(patsubst $(PKG_BUILD_DIR)/%,%,$$$$(firstword $$$$(wildcard $(PKG_BUILD_DIR)/$(3)/$(1)/*/$(subst -,_,$(1)).conf.xml)))
904 #
905 $$$$(if $$$$(firstword $$$$(wildcard $(PKG_BUILD_DIR)/$(3)/$(1)/*/$(subst -,_,$(1)).conf.xml)),[ -d $$(1)/etc/$(PKG_NAME)/autoload_configs ] || $(INSTALL_DIR) $$(1)/etc/$(PKG_NAME)/autoload_configs;$(CP) $$$$(firstword $$$$(wildcard $(PKG_BUILD_DIR)/$(3)/$(1)/*/$(subst -,_,$(1)).conf.xml)) $$(1)/etc/$(PKG_NAME)/autoload_configs;$(SED) 's|/usr/local/lib|/usr/lib|g;s|/usr/local|/etc|g' $$(1)/etc/$(PKG_NAME)/autoload_configs/$(subst -,_,$(1)).conf.xml)
906
907 #
908 # 3. mod_$(subst -,_,$(1)) XML configuration files from: $$$$(patsubst $(PKG_BUILD_DIR)/%,%,$$$$(firstword $$$$(wildcard $(PKG_BUILD_DIR)/src/$(3)/*/mod_$(subst -,_,$(1))/conf/autoload_configs/$(subst -,_,$(1)).conf.xml)))
909 #
910 $$$$(if $$$$(firstword $$$$(wildcard $(PKG_BUILD_DIR)/src/$(3)/*/mod_$(subst -,_,$(1))/conf/autoload_configs/$(subst -,_,$(1)).conf.xml)),[ -d $$(1)/etc/$(PKG_NAME)/autoload_configs ] || $(INSTALL_DIR) $$(1)/etc/$(PKG_NAME)/autoload_configs;$(CP) $$$$(firstword $$$$(wildcard $(PKG_BUILD_DIR)/src/$(3)/*/mod_$(subst -,_,$(1))/conf/autoload_configs/$(subst -,_,$(1)).conf.xml)) $$(1)/etc/$(PKG_NAME)/autoload_configs;$(SED) 's|/usr/local/lib|/usr/lib|g;s|/usr/local|/etc|g' $$(1)/etc/$(PKG_NAME)/autoload_configs/$(subst -,_,$(1)).conf.xml)
911
912 #
913 # 4. mod_$(subst -,_,$(1)) XML configuration files from: $$$$(patsubst $(PKG_BUILD_DIR)/%,%,$$$$(firstword $$$$(wildcard $(PKG_BUILD_DIR)/src/$(3)/*/mod_$(subst -,_,$(1))/conf*/$(subst -,_,$(1)).conf.xml)))
914 #
915 $$$$(if $$$$(firstword $$$$(wildcard $(PKG_BUILD_DIR)/src/$(3)/*/mod_$(subst -,_,$(1))/conf*/$(subst -,_,$(1)).conf.xml)),[ -d $$(1)/etc/$(PKG_NAME)/autoload_configs ] || $(INSTALL_DIR) $$(1)/etc/$(PKG_NAME)/autoload_configs;$(CP) $$$$(firstword $$$$(wildcard $(PKG_BUILD_DIR)/src/$(3)/*/mod_$(subst -,_,$(1))/conf*/$(subst -,_,$(1)).conf.xml)) $$(1)/etc/$(PKG_NAME)/autoload_configs;$(SED) 's|/usr/local/lib|/usr/lib|g;s|/usr/local|/etc|g' $$(1)/etc/$(PKG_NAME)/autoload_configs/$(subst -,_,$(1)).conf.xml)
916
917 #
918 # 5. mod_$(subst -,_,$(1)) XML configuration files from: $$$$(patsubst $(PKG_BUILD_DIR)/%,%,$$$$(firstword $$$$(wildcard $(PKG_BUILD_DIR)/src/$(3)/*/mod_$(subst -,_,$(1))/$(subst -,_,$(1)).conf.xml)))
919 #
920 $$$$(if $$$$(firstword $$$$(wildcard $(PKG_BUILD_DIR)/src/$(3)/*/mod_$(subst -,_,$(1))/$(subst -,_,$(1)).conf.xml)),[ -d $$(1)/etc/$(PKG_NAME)/autoload_configs ] || $(INSTALL_DIR) $$(1)/etc/$(PKG_NAME)/autoload_configs;$(CP) $$$$(firstword $$$$(wildcard $(PKG_BUILD_DIR)/src/$(3)/*/mod_$(subst -,_,$(1))/$(subst -,_,$(1)).conf.xml)) $$(1)/etc/$(PKG_NAME)/autoload_configs;$(SED) 's|/usr/local/lib|/usr/lib|g;s|/usr/local|/etc|g' $$(1)/etc/$(PKG_NAME)/autoload_configs/$(subst -,_,$(1)).conf.xml)
921
922 #
923 # 6. Additional configuration files for mod_$(subst -,_,$(1)) from: $$$$(patsubst $(PKG_BUILD_DIR)/%,%,$$$$(firstword $$$$(wildcard $(PKG_BUILD_DIR)/conf/$(3)/$(1)/*.$(1))))
924 #
925 $$$$(if $$$$(firstword $$$$(wildcard $(PKG_BUILD_DIR)/conf/$(3)/$(1)/*.$(1))),[ -d $$(1)/etc/$(PKG_NAME)/$(1) ] || $(INSTALL_DIR) $$(1)/etc/$(PKG_NAME)/$(1);$(CP) $(PKG_BUILD_DIR)/conf/$(3)/$(1) $$(1)/etc/$(PKG_NAME))
926 endef
927
928 define Package/$(PKG_NAME)-mod-$(1)/postinst
929 #!/bin/sh
930 sed -i -e 's|^\([ \t]*\)<!-- *\(.*\)"mod_$(subst -,_,$(1))"\(.*\) *-->\(.*\)$$$$|\1\2"mod_$(subst -,_,$(1))"\3\4|' $$$${IPKG_INSTROOT}/etc/$(PKG_NAME)/autoload_configs/modules.conf.xml
931 endef
932
933 define Package/$(PKG_NAME)-mod-$(1)/prerm
934 #!/bin/sh
935 sed -i -e 's|^\([ \t]*\)\(.*\)"mod_$(subst -,_,$(1))"\(.*\)$$$$|\1<!-- \2"mod_$(subst -,_,$(1))"\3 -->|' $$$${IPKG_INSTROOT}/etc/$(PKG_NAME)/autoload_configs/modules.conf.xml
936 endef
937
938 $$(eval $$(call BuildPackage,$(PKG_NAME)-mod-$(1)))
939 endef
940
941
942 $(eval $(call BuildPackage,$(PKG_NAME)))
943 $(eval $(call BuildPackage,$(PKG_NAME)-collection-upstream-defaults))
944 $(eval $(call BuildPackage,$(PKG_NAME)-collection-minimal))
945 $(eval $(call BuildPackage,$(PKG_NAME)-sounds-en-08KHz))
946 $(eval $(call BuildPackage,$(PKG_NAME)-sounds-en-16KHz))
947 $(eval $(call BuildPackage,$(PKG_NAME)-sounds-en-32KHz))
948 $(eval $(call BuildPackage,$(PKG_NAME)-sounds-en-48KHz))
949 $(eval $(call BuildPackage,$(PKG_NAME)-sounds-moh-08KHz))
950 $(eval $(call BuildPackage,$(PKG_NAME)-sounds-moh-16KHz))
951 $(eval $(call BuildPackage,$(PKG_NAME)-sounds-moh-32KHz))
952 $(eval $(call BuildPackage,$(PKG_NAME)-sounds-moh-48KHz))
953 $(eval $(call BuildPackage,$(PKG_NAME)-tools))
954 $(eval $(call BuildPackage,$(PKG_NAME)-example-config))
955 $(eval $(call BuildPackage,$(PKG_NAME)-config-upstream-defaults))
956 $(eval $(call BuildPackage,$(PKG_NAME)-config-minimal))
957
958
959 #
960 # $(eval $(call BuildPlugin,Name,Title,Selection on module Conf File,Files,Inter Depends,Extra Depends))
961 #
962 $(eval $(call BuildPlugin,abstraction,An Abstraction To API Call,vanilla,,,,))
963 $(eval $(call BuildPlugin,alsa,Alsa Endpoint,vanilla,,,,+FS_WITH_ALSA:alsa-lib @FS_WITH_ALSA))
964 $(eval $(call BuildPlugin,amr,Adaptive Multi-Rate On Bandwidth Codec,vanilla,,,,))
965 $(eval $(call BuildPlugin,amrwb,Wide Band AMR,vanilla,,,,))
966 $(eval $(call BuildPlugin,avmd,Advanced Voice Mail Detection,vanilla,,,,))
967 $(eval $(call BuildPlugin,basic,BASIC,vanilla,,,,))
968 $(eval $(call BuildPlugin,bert,Naive Bit Error Rate Tester,vanilla,,,,))
969 $(eval $(call BuildPlugin,blacklist,Blacklist,vanilla,,,,))
970 $(eval $(call BuildPlugin,bv,BroadVoice 16/32-bit Audio Codec,vanilla,,,,))
971 $(eval $(call BuildPlugin,callcenter,Call Center,vanilla,,,,))
972 $(eval $(call BuildPlugin,cdr-csv,CSV-CDR Handler,mod,,,,)) # ~/conf
973 $(eval $(call BuildPlugin,cdr-mongodb,MongoDB CDR logger,vanilla,,,,))
974 $(eval $(call BuildPlugin,cdr-pg-csv,PostgreSQL CDR Handler,vanilla,,,,+coreutils +FS_WITH_POSTGRESQL:libpq @FS_WITH_POSTGRESQL))
975 $(eval $(call BuildPlugin,cdr-sqlite,SQLite3 CDR Handler,vanilla,,,,@FS_WITH_SQLITE3))
976 $(eval $(call BuildPlugin,celt,CELT Ultra-Low Delay Codec,vanilla,,,,+libogg))
977 $(eval $(call BuildPlugin,cepstral,Cepstral Interface,vanilla,,,,@BROKEN)) # needs <swift.h>
978 $(eval $(call BuildPlugin,cidlookup,Data Query For CID->NAME Services,mod,,,,+libcurl)) # ~/conf
979 $(eval $(call BuildPlugin,cluechoo,Framework Demo,vanilla,,,,))
980 $(eval $(call BuildPlugin,codec2,CoDec 2,,,,,))
981 $(eval $(call BuildPlugin,commands,API Commands,vanilla,,,,))
982 $(eval $(call BuildPlugin,conference,Conference Room,vanilla,,,,))
983 $(eval $(call BuildPlugin,console,Console Logger,vanilla,,,,))
984 $(eval $(call BuildPlugin,curl,HTTP Request,vanilla,,,,+libcurl))
985 $(eval $(call BuildPlugin,dahdi-codec,DAHDI Codecs,vanilla,,,,))
986 $(eval $(call BuildPlugin,db,Database Backend,vanilla,,,,+libdb47))
987 $(eval $(call BuildPlugin,dialplan-asterisk,Asterisk Dialplan Parser,vanilla,,,,))
988 $(eval $(call BuildPlugin,dialplan-directory,Dialplan Directory,vanilla,,,,))
989 $(eval $(call BuildPlugin,dialplan-xml,Dialplan-XML Interface,vanilla,,,,))
990 $(eval $(call BuildPlugin,dingaling,Jabber Interface,vanilla,,,,+libopenssl))
991 $(eval $(call BuildPlugin,directory,Search By Name Directory IVR,vanilla,,,,))
992 $(eval $(call BuildPlugin,distributor,Simple Robin-Round Load,vanilla,,,,))
993 $(eval $(call BuildPlugin,dptools,Dialplan Tools,vanilla,,,,))
994 $(eval $(call BuildPlugin,easyroute,Simple DID Routing,vanilla,,,,))
995 $(eval $(call BuildPlugin,enum,ENUM Routing,,,,,+libldns @BROKEN))
996 $(eval $(call BuildPlugin,erlang-event,Erlang Event Handler,vanilla,,,,+erlang))
997 $(eval $(call BuildPlugin,esf,Extra SIP Functionality,vanilla,,,,))
998 $(eval $(call BuildPlugin,event-multicast,Multicast Event Handler,vanilla,,,,))
999 $(eval $(call BuildPlugin,event-socket,Socket Event Handler,vanilla,,,,))
1000 $(eval $(call BuildPlugin,event-zmq,Socket Event Handler By Zero MQ,vanilla,,,,+libuuid))
1001 $(eval $(call BuildPlugin,expr,Expression Evaluation,vanilla,,,,))
1002 $(eval $(call BuildPlugin,fifo,FIFO,vanilla,,,,))
1003 $(eval $(call BuildPlugin,file-string,Streaming Multiple Sound Files Sequentially,vanilla,,,,@OBSOLETE)) # merged into dptools
1004 $(eval $(call BuildPlugin,flite,Festival TTS,vanilla,,,,@(!(armeb||avr32)||BROKEN)))
1005 $(eval $(call BuildPlugin,format-cdr,XML CDR Module to files or curl,vanilla,,,,))
1006 $(eval $(call BuildPlugin,fsk,Bell-202 1200-Baud FSK Decoder,vanilla,,,,))
1007 $(eval $(call BuildPlugin,fsv,Video Player / Recorder,vanilla,,,,))
1008 $(eval $(call BuildPlugin,g723-1,G.723.1 Codec,vanilla,,,,))
1009 $(eval $(call BuildPlugin,g729,G.729 Codec,vanilla,,,,))
1010 $(eval $(call BuildPlugin,gsmopen,GSM Modem compatible Endpoint,mod,,,alsa,+FS_WITH_ALSA:alsa-lib +FS_WITH_LZMA:liblzma @FS_WITH_ALSA @BROKEN)) # needs gsmlib
1011 $(eval $(call BuildPlugin,h26x,H26X Linear Codec,vanilla,,,,))
1012 $(eval $(call BuildPlugin,h323,H323 Endpoint,mod,,,,@BROKEN)) # Req. H323Plus v1.24.x or newer
1013 $(eval $(call BuildPlugin,hash,API For Manipulating A Hash Table,vanilla,,,,))
1014 #$(eval $(call BuildPlugin,html5,HTML5 Endpoint Module,vanilla,,,,)) # defunct?
1015 $(eval $(call BuildPlugin,httapi,HT Telephony API and HTTP Caching,mod,,,,)) # ~/conf
1016 $(eval $(call BuildPlugin,http-cache,HTTP GET With Caching,mod,,,,+libcurl)) # ~/conf
1017 $(eval $(call BuildPlugin,ilbc,ILBC Codec,vanilla,,,,))
1018 $(eval $(call BuildPlugin,isac,iSAC Codec,vanilla,,,,))
1019 $(eval $(call BuildPlugin,java,Java Language Interface,vanilla,,,,@BROKEN)) # needs java
1020 $(eval $(call BuildPlugin,json-cdr,JSon-CDR Interface,mod,,,,+libcurl))
1021 $(eval $(call BuildPlugin,ldap,LDAP interface,vanilla,,,,+libopenldap))
1022 $(eval $(call BuildPlugin,lcr,Least Cost Routing,vanilla,,,,))
1023 $(eval $(call BuildPlugin,local-stream,Multi-Channel On Same Stream,vanilla,,,,))
1024 $(eval $(call BuildPlugin,logfile,File Logger,vanilla,,,,))
1025 $(eval $(call BuildPlugin,loopback,Loopback to Dialplan Endpoint,vanilla,,,,))
1026 $(eval $(call BuildPlugin,lua,LUA Language Interface,vanilla,,,,))
1027 $(eval $(call BuildPlugin,managed,Media Switching Software Library,vanilla,,,,+glib2 @BROKEN)) # needs Mono
1028 $(eval $(call BuildPlugin,memcache,MemCached Interface,vanilla,,,,+libmemcached @BROKEN)) # Req host libmemcached
1029 $(eval $(call BuildPlugin,mongo,A Document-Oriented Database,vanilla,,,,@BROKEN))
1030 $(eval $(call BuildPlugin,mp4,MP4 File Format Support For Video,vanilla,,,,@BROKEN)) # needs host libmp4v2
1031 $(eval $(call BuildPlugin,mp4v,MP4 CoDec Support For Video,vanilla,,,,))
1032 $(eval $(call BuildPlugin,native-file,WAV Format Sound Player,vanilla,,,,))
1033 $(eval $(call BuildPlugin,nibblebill,Credit / Debit Billing,vanilla,,,,))
1034 $(eval $(call BuildPlugin,opus,Opus CoDec,vanilla,,,,))
1035 $(eval $(call BuildPlugin,oreka,Media Recording with Oreka,vanilla,,,,))
1036 $(eval $(call BuildPlugin,perl,Perl Language Interface,vanilla,,lib/perl5/5.20/$(PKG_NAME).la lib/perl5/5.20/$(PKG_NAME).pm lib/perl5/5.20/$(PKG_NAME).so,,+perl +libdb47 +libgdbm))
1037 $(eval $(call BuildPlugin,portaudio,Portaudio To Sound Card Interface,vanilla,,,alsa,+FS_WITH_ALSA:alsa-lib @FS_WITH_ALSA @BROKEN)) # needs portaudio
1038 $(eval $(call BuildPlugin,portaudio-stream,Portaudio Streaming Interface,vanilla,,,alsa,+FS_WITH_ALSA:alsa-lib @FS_WITH_ALSA @BROKEN)) # needs portaudio
1039 $(eval $(call BuildPlugin,posix-timer,POSIX Compliant Soft Timer,vanilla,,,,))
1040 $(eval $(call BuildPlugin,radius-cdr,Radius-CDR interface,vanilla,,,,@BROKEN)) # fails in freeradius-client
1041 $(eval $(call BuildPlugin,rayo,Rayo server & node implementation,vanilla,,,,))
1042 $(eval $(call BuildPlugin,redis,Redis Limited Backend,vanilla,,,,))
1043 $(eval $(call BuildPlugin,rss,RRS Feeds via TTS,vanilla,,,,))
1044 $(eval $(call BuildPlugin,rtc,RTC endpoint,vanilla,,,,))
1045 $(eval $(call BuildPlugin,rtmp,RTMP Protocol Handler,vanilla,,,,))
1046 $(eval $(call BuildPlugin,sangoma-codec,Sangoma Codec,vanilla,,,,@BROKEN)) # Req. Sangoma CoDec source
1047 $(eval $(call BuildPlugin,say-de,German Say,vanilla,,,,))
1048 $(eval $(call BuildPlugin,say-en,English Say,vanilla,,,,))
1049 $(eval $(call BuildPlugin,say-es,Spanish Say,vanilla,,,,))
1050 $(eval $(call BuildPlugin,say-fa,Persian Say,vanilla,,,,))
1051 $(eval $(call BuildPlugin,say-fr,French Say,vanilla,,,,))
1052 $(eval $(call BuildPlugin,say-hu,Hungarian Say,vanilla,,,,))
1053 $(eval $(call BuildPlugin,say-it,Italian Say,vanilla,,,,))
1054 $(eval $(call BuildPlugin,say-nl,Dutch Say,vanilla,,,,))
1055 $(eval $(call BuildPlugin,say-pt,Portugeese Say,vanilla,,,,))
1056 $(eval $(call BuildPlugin,say-ru,Russian Say,vanilla,,,,))
1057 $(eval $(call BuildPlugin,say-th,Thai Say,vanilla,,,,))
1058 $(eval $(call BuildPlugin,say-zh,Chineese Say,vanilla,,,,))
1059 $(eval $(call BuildPlugin,shell-stream,Streaming Audio Through CLI,vanilla,,,,))
1060 $(eval $(call BuildPlugin,silk,Skype(TM) SILK Codec Module,vanilla,,,,))
1061 $(eval $(call BuildPlugin,siren,G.722.1 Codec,vanilla,,,,))
1062 $(eval $(call BuildPlugin,skel,Template For New Module,vanilla,,,,))
1063 $(eval $(call BuildPlugin,skinny,Skinny Call Control Protocol (SCCP),vanilla,,,,))
1064 $(eval $(call BuildPlugin,skypopen,Skype Compatible Endpoint,mod,,,,@FEATURE_drawing-backend_libX11))
1065 $(eval $(call BuildPlugin,sms,SMS,vanilla,,,,))
1066 $(eval $(call BuildPlugin,snapshot,Record Audio Snapshot to File,vanilla,,,,))
1067 $(eval $(call BuildPlugin,sndfile,Multi-Format Sound File,vanilla,,,,))
1068 $(eval $(call BuildPlugin,snipe-hunt,Snipe Hunt (Simple Example Module),vanilla,,,,))
1069 $(eval $(call BuildPlugin,snmp,SNMP AgentX Subagent,vanilla,,,,+libnetsnmp))
1070 $(eval $(call BuildPlugin,snom,SNOM specific features,vanilla,,,,))
1071 $(eval $(call BuildPlugin,sofia,SOFIA SIP,mod,,,,)) # ~/conf
1072 $(eval $(call BuildPlugin,sonar,Sonar Ping Timer,vanilla,,,,))
1073 $(eval $(call BuildPlugin,spandsp,Span DSP,mod,,,,+libjpeg +FS_WITH_LZMA:liblzma @FS_WITH_LZMA)) # ~/conf
1074 $(eval $(call BuildPlugin,spidermonkey,JavaScript,vanilla,,,,@BROKEN)) # fails in js
1075 $(eval $(call BuildPlugin,spidermonkey-core_db,JavaScript DB,vanilla,,,,@BROKEN))
1076 $(eval $(call BuildPlugin,spidermonkey-curl,JavaScript Curl,vanilla,,,,@BROKEN))
1077 $(eval $(call BuildPlugin,spidermonkey-odbc,JavaScript ODBC,vanilla,,,,@BROKEN))
1078 $(eval $(call BuildPlugin,spidermonkey-socket,JavaScript Socket,vanilla,,,,@BROKEN))
1079 $(eval $(call BuildPlugin,spidermonkey-teletone,JavaScript Teletone,vanilla,,,,@BROKEN))
1080 $(eval $(call BuildPlugin,spy,User Spy,vanilla,,,,))
1081 $(eval $(call BuildPlugin,ssml,SSML audio rendering format,mod,,,rayo,))
1082 $(eval $(call BuildPlugin,stress,Voice Stress Detection,vanilla,,,,))
1083 $(eval $(call BuildPlugin,syslog,SysLog logger,vanilla,,,,))
1084 $(eval $(call BuildPlugin,timerfd,Linux Kernel timerfd API,vanilla,,,,))
1085 $(eval $(call BuildPlugin,tone-stream,Tone Generation Stream,vanilla,,,,))
1086 $(eval $(call BuildPlugin,tts-commandline,ASR TTS Command Interface,vanilla,,,,))
1087 $(eval $(call BuildPlugin,unimrcp,UniMRCP (MRCP Client),vanilla,,,,@BROKEN))
1088 $(eval $(call BuildPlugin,valet-parking,Valet Parking Application,vanilla,,,,))
1089 $(eval $(call BuildPlugin,verto,HTML5 Verto interface,vanilla,,lib/perl5/5.20/MCAST.so lib/perl5/5.20/MCAST.la lib/perl5/5.20/MCAST.pm,perl rtc,))
1090 $(eval $(call BuildPlugin,vmd,VoiceMail Beep Detection,vanilla,,,,))
1091 $(eval $(call BuildPlugin,voicemail,VoiceMail,vanilla,,,,))
1092 $(eval $(call BuildPlugin,voicemail-ivr,VoiceMail IVR,vanilla,,,,))
1093 $(eval $(call BuildPlugin,vp8,VP8 Video Codec,vanilla,,,,))
1094 $(eval $(call BuildPlugin,xml-cdr,XML-CDR Handler,vanilla,,,,+libcurl))
1095 $(eval $(call BuildPlugin,xml-curl,XML-Curl Gateway,vanilla,,,,+libcurl))
1096 $(eval $(call BuildPlugin,xml-ldap,LDAP-XML Gateway,vanilla,,,,+PACKAGE_$(PKG_NAME)-mod-ldap:libopenldap))
1097 $(eval $(call BuildPlugin,xml-rpc,XML-RPC Interface,vanilla,,,,))
1098 $(eval $(call BuildPlugin,xml-radius,Radius authentication and authorization,vanilla,,,,+freeradius-client @BROKEN)) # freeradius-client isn't yet supported by OpenWRT.
1099 $(eval $(call BuildPlugin,xml-scgi,SCGI XML Gateway,vanilla,,,,))
1100 $(eval $(call BuildPlugin,yaml,YAML language,vanilla,,,,+libyaml @BROKEN))