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