updated with zeromq-2.1.9
[openwrt/svn-archive/archive.git] / net / freeswitch / Makefile
index 0d55a2669277aa368ffb772e109a4330f9aba17e..db98e48db7e020d1995d1ffffba8c8b770845b49 100644 (file)
@@ -1,37 +1,55 @@
-# (C) 2009 OpenWrt.org
+#
+# Copyright (C) 2009-2010 OpenWrt.org
 #
 # This is free software, licensed under the GNU General Public License v2.
 # See /LICENSE for more information.
 #
-
+#
 include $(TOPDIR)/rules.mk
 
+
 PKG_NAME:=freeswitch
-PKG_VERSION:=1.0.6
+PKG_VERSION:=1.0.7
 PKG_RELEASE:=1
 
-PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
+
+#
+# The latest FS git hash in PKG_REV can be obtained from http://fisheye.freeswitch.org
+#
+PKG_REV:=cf9859ea6959699260ef928d2b9fb79f9f0c3389
+PKG_SOURCE_VERSION:=$(PKG_REV)
+PKG_SOURCE_PROTO:=git
+PKG_SOURCE_URL:=git://git.$(PKG_NAME).org/$(PKG_NAME).git
+PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
+PKG_SOURCE:=$(PKG_SOURCE_SUBDIR)_git-$(shell echo $(PKG_REV)|cut -b -9).tar.bz2
 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
-PKG_SOURCE_URL:=http://files.freeswitch.org/
-PKG_MD5SUM:=388effee587887a81fe7f411b7350590
+
 
 PKG_FIXUP:=libtool
+PKG_BUILD_PARALLEL:=1
+
 
 FS_MOD_AVAILABLE:= \
        alsa \
        amr \
        amrwb \
+       avmd \
        bv \
+       callcenter \
        cdr-csv \
+       cdr-pg-csv \
+       cdr-sqlite \
        celt \
        cepstral \
        cidlookup \
        cluechoo \
+       codec2 \
        commands \
        conference \
        console \
        curl \
        dahdi-codec \
+       db \
        dialplan-asterisk \
        dialplan-directory \
        dialplan-xml \
@@ -45,59 +63,61 @@ FS_MOD_AVAILABLE:= \
        esf \
        event-multicast \
        event-socket \
+       event-zmq \
        expr \
-       fax \
        fifo \
        file-string \
        flite \
+       fsk \
        fsv \
        g723-1 \
        g729 \
+       gsmopen \
        h26x \
        h323 \
+       hash \
        ilbc \
+       java \
+       json-cdr \
        lcr \
-       ldap \
-       limit \
        local-stream \
        logfile \
        loopback \
        lua \
        managed \
-       memcache \
+       mp4 \
        native-file \
        nibblebill \
-       opal \
        openzap \
-       perl \
-       pocketsphinx \
+       opus \
        portaudio \
        portaudio-stream \
-       python \
        radius-cdr \
        rss \
+       rtmp \
        say-de \
        say-en \
        say-es \
        say-fr \
+       say-hu \
        say-it \
        say-nl \
+       say-pt \
        say-ru \
        say-th \
        say-zh \
        shell-stream \
-       shout \
        silk \
        siren \
        skinny \
        skypopen \
-       sangoma-codec \
        snapshot \
+       snmp \
        snipe-hunt \
        sndfile \
        snom \
        sofia \
-       soundtouch \
+       spandsp \
        speex \
        spidermonkey \
        spidermonkey-core-db \
@@ -109,187 +129,295 @@ FS_MOD_AVAILABLE:= \
        stress \
        syslog \
        tone-stream \
+       tts-commandline \
        unimrcp \
        valet-parking \
        vmd \
        voicemail \
-       voipcodecs \
        xml-cdr \
        xml-curl \
-       xml-ldap \
        xml-rpc \
        yaml \
 
+
 PKG_CONFIG_DEPENDS:= \
-       $(patsubst %,CONFIG_PACKAGE_freeswitch-mod-%,$(FS_MOD_AVAILABLE)) \
+       CONFIG_FS_SOFIA_WITH_GNUTLS \
+       CONFIG_FS_SOFIA_WITH_IPV6 \
+       CONFIG_FS_SOFIA_WITH_ODBC \
+       CONFIG_FS_SOFIA_WITH_OPT \
+       CONFIG_FS_SOFIA_WITH_SCTP \
+       CONFIG_FS_SOFIA_WITH_ZRTP_GIT \
+       CONFIG_FS_SOFIA_WITHOUT_MYSQL \
+       $(patsubst %,CONFIG_PACKAGE_$(PKG_NAME)-mod-%,$(FS_MOD_AVAILABLE)) \
+
 
 include $(INCLUDE_DIR)/package.mk
+include $(INCLUDE_DIR)/nls.mk
+
 
-define Package/freeswitch/Default
+define Package/$(PKG_NAME)/Default
   SECTION:=net
   CATEGORY:=Network
-  URL:=http://www.freeswitch.org/
-  MAINTAINER:=Daniel Dickinson <ddickinson@vertical.com>
+  SUBMENU:=Telephony
+  URL:=http://www.$(PKG_NAME).org/
+  MAINTAINER:=Mazilo <OpenWRT@slickdeals.endjunk.com>
 endef
 
 
-define Package/freeswitch
-$(call Package/freeswitch/Default)
+define Package/$(PKG_NAME)
+$(call Package/$(PKG_NAME)/Default)
   TITLE:=FreeSWITCH open source telephony platform
-  DEPENDS:= +libopenssl +libreadline +libncurses +libpthread +libstdcpp
+  DEPENDS:= +libreadline +libncurses +libpthread +libstdcpp
   MENU:=1
 endef
 
-define Package/freeswitch/description
+
+define Package/$(PKG_NAME)/description
   FreeSWITCH is an open source telephony platform designed to 
   facilitate the creation of voice and chat driven products scaling 
-  from a soft-phone up to a soft-switch.
+  from a soft-phone up to a soft-switch.  See http://wiki.$(PKG_NAME).org
+endef
+
+
+define Package/$(PKG_NAME)/config
+    config FS_SOFIA_WITH_IPV6
+    depends on PACKAGE_$(PKG_NAME)
+    bool "Compile with IPV6 support"
+    default y
+    help
+            Compile $(PKG_NAME) with IPV6 Support.
+
+    config FS_SOFIA_WITH_OPT
+    depends on PACKAGE_$(PKG_NAME)
+    bool "Compile with optimization"
+    default y
+    help
+            Compile $(PKG_NAME) with optimization enabled.
+
+    config FS_SOFIA_WITHOUT_MYSQL
+    depends on PACKAGE_$(PKG_NAME)
+    bool "Compile without MySQL"
+    default y
+    help
+            Compile $(PKG_NAME) without MySQL.
+endef
+
+
+define Package/$(PKG_NAME)-mod-dingaling/config
+    config FS_SOFIA_WITH_GNUTLS
+    depends on PACKAGE_$(PKG_NAME)-mod-dingaling
+    bool "Compile with GNU TLS (Requires libgnutls-openssl)"
+    default y
+    select PACKAGE_libgnutls-openssl
+    help
+            Compile $(PKG_NAME)-mod-dingaling with GNU TLS Support (Requires libgnutls-openssl package).
+endef
+
+
+define Package/$(PKG_NAME)-mod-sofia/config
+    config FS_SOFIA_WITH_ODBC
+    depends on PACKAGE_$(PKG_NAME)-mod-sofia
+    bool "Compile with ODBC support (BROKEN: Requires unixodbc_svn)"
+    default n
+    select PACKAGE_unixodbc_svn
+    help
+            Compile $(PKG_NAME)-mod-sofia with ODBC Support (Requires unixodbc_svn package).
+
+    config FS_SOFIA_WITH_SCTP
+    depends on PACKAGE_$(PKG_NAME)-mod-sofia
+    bool "Compile with SCTP support (BROKEN)"
+    default n
+    select PACKAGE_sctp
+    help
+            Compile $(PKG_NAME)-mod-sofia with SCTP (Stream Control Transfer Protocol) support.
+
+    config FS_SOFIA_WITH_ZRTP_GIT
+    depends on PACKAGE_$(PKG_NAME)-mod-sofia
+    bool "Compile with ZRTP support (BROKEN: Requires libzrtpcpp)"
+    default n
+    select PACKAGE_libzrtpcpp
+    help
+            Compile $(PKG_NAME)-mod-sofia with ZRTP Support (Requires libzrtpcpp package).
 endef
 
-define Package/freeswitch-example-config
-$(call Package/freeswitch/Default)
+
+define Package/$(PKG_NAME)-example-config
+$(call Package/$(PKG_NAME)/Default)
   TITLE:=FreeSWITCH example config (commented)
-  DEPENDS:= freeswitch
+  DEPENDS:= $(PKG_NAME)
 endef
 
-define Package/freeswitch-example-config/description
+
+define Package/$(PKG_NAME)-example-config/description
   The default configuration included with FreeSWITCH. It is not intended to be
-  a final product, and is thus moved to /usr/share/freeswitch/examples/conf to
+  a final product, and is thus moved to /usr/share/$(PKG_NAME)/examples/conf to
   be an example of how FreeSWITCH can be configured.
 endef
 
-define Package/freeswitch-config-upstream-defaults
-$(call Package/freeswitch/Default)
+
+define Package/$(PKG_NAME)-config-upstream-defaults
+$(call Package/$(PKG_NAME)/Default)
   TITLE:=FreeSWITCH upstream config
-  DEPENDS:= freeswitch
+  DEPENDS:= $(PKG_NAME)
 endef
 
-define Package/freeswitch-config-upstream-defaults/description
+
+define Package/$(PKG_NAME)-config-upstream-defaults/description
   The default configuration included with FreeSWITCH. It is not intended to be
   a final product, and but is included for those who don't want to use the 
   OpenWRT configuration and/or want to try things as prepared by upstream.
 endef
 
-define Package/freeswitch-config-minimal
-$(call Package/freeswitch/Default)
-  TITLE:=FreeSWITCH minimal OpenWRT config
-  DEPENDS:= freeswitch
-endef
-
-define Package/freeswitch-config-minimal/description
-  The OpenWRT configuration for the OpenWRT FreeSWITCH minimal package collection.
-endef
-
-define Package/freeswitch-collection-upstream-defaults
-$(call Package/freeswitch/Default)
-  TITLE:=FreeSWITCH upstream default (sample) config
-  DEPENDS:= freeswitch \
-               +freeswitch-config-upstream-defaults \
-               +freeswitch-mod-commands \
-               +freeswitch-mod-conference \
-               +freeswitch-mod-syslog \
-               +freeswitch-mod-curl \
-               +freeswitch-mod-dialplan-xml \
-               +freeswitch-mod-dptools \
-               +freeswitch-mod-event-socket \
-               +freeswitch-mod-g723-1 \
-               +freeswitch-mod-ilbc \
-               +freeswitch-mod-local-stream \
-               +freeswitch-mod-logfile \
-               +freeswitch-mod-lua \
-               +freeswitch-mod-native-file \
-               +freeswitch-mod-sndfile \
-               +freeswitch-mod-sofia \
-               +freeswitch-mod-speex \
-               +freeswitch-mod-tone-stream \
-               +freeswitch-mod-voipcodecs \
-               +freeswitch-mod-xml-curl \
-               +freeswitch-mod-xml-rpc \
-               +freeswitch-tools
-endef
-
-# mod_lua is included in FreeSWITCH minimal because it is intended to be used
-# by the LuCI / ucitrigger interface to FreeSWITCH on OpenWRT
-
-define Package/freeswitch-collection-minimal
-$(call Package/freeswitch/Default)
-  TITLE:=FreeSWITCH on OpenWRT minimal config
-  DEPENDS:= freeswitch \
-               +freeswitch-config-minimal \
-               +freeswitch-mod-commands \
-               +freeswitch-mod-syslog \
-               +freeswitch-mod-dialplan-xml \
-               +freeswitch-mod-dptools \
-               +freeswitch-mod-event-socket \
-               +freeswitch-mod-local-stream \
-               +freeswitch-mod-sndfile \
-               +freeswitch-mod-sofia \
-               +freeswitch-mod-tone-stream \
-               +freeswitch-mod-voipcodecs \
-               +freeswitch-mod-lua \
-               +freeswitch-tools
-endef
-
-define Package/freeswitch-sounds-en
-$(call Package/freeswitch/Default)
+
+define Package/$(PKG_NAME)-config-minimal
+$(call Package/$(PKG_NAME)/Default)
+  TITLE:=FreeSWITCH minimal config
+  DEPENDS:= $(PKG_NAME)
+endef
+
+
+define Package/$(PKG_NAME)-config-minimal/description
+  A minimal configuration of FreeSWITCH for OpenWRT devices.  Is what the UCI 
+  configuration began with.
+endef
+
+
+define Package/$(PKG_NAME)-collection-upstream-defaults
+$(call Package/$(PKG_NAME)/Default)
+  TITLE:=FS upstream def sample conf
+  DEPENDS:= $(PKG_NAME) \
+               +$(PKG_NAME)-config-upstream-defaults \
+               +$(PKG_NAME)-mod-callcenter \
+               +$(PKG_NAME)-mod-codec2 \
+               +$(PKG_NAME)-mod-commands \
+               +$(PKG_NAME)-mod-conference \
+               +$(PKG_NAME)-mod-curl \
+               +$(PKG_NAME)-mod-dialplan-xml \
+               +$(PKG_NAME)-mod-dingaling \
+               +$(PKG_NAME)-mod-dptools \
+               +$(PKG_NAME)-mod-event-socket \
+               +$(PKG_NAME)-mod-g723-1 \
+               +$(PKG_NAME)-mod-g729 \
+               +$(PKG_NAME)-mod-hash \
+               +$(PKG_NAME)-mod-ilbc \
+               +$(PKG_NAME)-mod-local-stream \
+               +$(PKG_NAME)-mod-lua \
+               +$(PKG_NAME)-mod-native-file \
+               +$(PKG_NAME)-mod-sndfile \
+               +$(PKG_NAME)-mod-sofia \
+               +$(PKG_NAME)-mod-spandsp \
+               +$(PKG_NAME)-mod-speex \
+               +$(PKG_NAME)-mod-syslog \
+               +$(PKG_NAME)-mod-tone-stream \
+               +$(PKG_NAME)-mod-xml-curl \
+               +$(PKG_NAME)-mod-xml-rpc \
+               +$(PKG_NAME)-tools
+endef
+
+
+define Package/$(PKG_NAME)-collection-minimal
+$(call Package/$(PKG_NAME)/Default)
+  TITLE:=FreeSWITCH minimal package collection
+  DEFAULT:=y
+  DEPENDS:= $(PKG_NAME) \
+               +$(PKG_NAME)-config-minimal \
+               +$(PKG_NAME)-mod-codec2 \
+               +$(PKG_NAME)-mod-commands \
+               +$(PKG_NAME)-mod-dialplan-xml \
+               +$(PKG_NAME)-mod-dptools \
+               +$(PKG_NAME)-mod-event-socket \
+               +$(PKG_NAME)-mod-hash \
+               +$(PKG_NAME)-mod-local-stream \
+               +$(PKG_NAME)-mod-sndfile \
+               +$(PKG_NAME)-mod-sofia \
+               +$(PKG_NAME)-mod-syslog \
+               +$(PKG_NAME)-mod-tone-stream \
+               +$(PKG_NAME)-tools
+endef
+
+
+define Package/$(PKG_NAME)-sounds-en
+$(call Package/$(PKG_NAME)/Default)
   TITLE:=FreeSWITCH english sounds
-  DEPENDS:= freeswitch
+  DEPENDS:= $(PKG_NAME)
 endef
 
 
-define Package/freeswitch-sounds-moh
-$(call Package/freeswitch/Default)
+define Package/$(PKG_NAME)-sounds-moh
+$(call Package/$(PKG_NAME)/Default)
   TITLE:=FreeSWITCH music-on-hold sounds
-  DEPENDS:= freeswitch
+  DEPENDS:= $(PKG_NAME)
 endef
 
 
-define Package/freeswitch-tools
-$(call Package/freeswitch/Default)
+define Package/$(PKG_NAME)-tools
+$(call Package/$(PKG_NAME)/Default)
   TITLE:=FreeSWITCH control tools
-  DEPENDS:= freeswitch
+  DEPENDS:= $(PKG_NAME)
 endef
 
 
 define Download/files
  define Download/$(1)
   FILE:=$(2)
-  URL:=http://files.freeswitch.org/$(4)
+  URL:=$(if $(4),$(4),http://files.$(PKG_NAME).org)/$(5)
   MD5SUM:=$(3)
  endef
  define Prepare/$(1)
-  $(CP) $(DL_DIR)/$(2) $(PKG_BUILD_DIR)/$(5)
+  $(LN) $(DL_DIR)/$(2) $(PKG_BUILD_DIR)/$(6)
  endef
  $$(eval $$(call Download,$(1)))
 endef
 
+
 MAKE_INSTALL_TARGETS:=install
 
-ifneq ($(CONFIG_PACKAGE_freeswitch-mod-celt),)
- $(eval $(call Download/files,celt,celt-0.6.1.tar.gz,2961ffb6fadb5f905d20de9f0d86e44c,downloads/libs/,libs/))
+
+ifneq ($(CONFIG_PACKAGE_$(PKG_NAME)-mod-celt),)
+ $(eval $(call Download/files,celt,celt-0.10.0.tar.gz,a656f6176e9be84027c0e51ceedd710f,,downloads/libs/,libs/))
 endif
 
-ifneq ($(CONFIG_PACKAGE_freeswitch-mod-curl),)
- $(eval $(call Download/files,json-c,json-c-0.8.tar.gz,9c7b90dff16eec3063084829c382ebac,downloads/libs/,libs/))
+
+ifneq ($(CONFIG_PACKAGE_$(PKG_NAME)-mod-curl),)
+ $(eval $(call Download/files,json-cdr,json-c-0.9.tar.gz,4653b3b9c568bb9c782178abfaac128d,,downloads/libs/,libs/))
 endif
 
-ifneq ($(CONFIG_PACKAGE_freeswitch-mod-flite),)
- $(eval $(call Download/files,flite,flite-1.3.99.tar.gz,,downloads/libs/,libs/))
+
+ifneq ($(CONFIG_PACKAGE_$(PKG_NAME)-mod-event-zmq),)
+ $(eval $(call Download/files,event-zmq,zeromq-2.1.9.tar.gz,94c5e0262a79c5f82bc0b178c1f8a33d,http://download.zeromq.org,,libs/))
 endif
 
-ifneq ($(CONFIG_PACKAGE_freeswitch-sounds-en),)
- $(eval $(call Download/files,sounds-en,freeswitch-sounds-en-us-callie-8000-1.0.10.tar.gz,f7f85aaf3763673c884ec3451f1c1c3e,,))
+
+ifneq ($(CONFIG_PACKAGE_$(PKG_NAME)-mod-flite),)
+ $(eval $(call Download/files,flite,flite-1.3.99-latest.tar.gz,365b60881715c5e13c0d8bc37d9be6ff,,downloads/libs/,libs/))
+endif
+
+
+ifneq ($(CONFIG_PACKAGE_$(PKG_NAME)-mod-opus),)
+ $(eval $(call Download/files,opus,opus-0.9.0.tar.gz,8a729db587430392e64280a499e9d061,,downloads/libs/,libs/))
+endif
+
+
+ifneq ($(CONFIG_PACKAGE_$(PKG_NAME)-sounds-en),)
+ $(eval $(call Download/files,sounds-en,$(PKG_NAME)-sounds-en-us-callie-8000-1.0.16.tar.gz,bde0883eb75fe06f39bde11f50a1f858,,,))
        MAKE_INSTALL_TARGETS+= sounds-install
 endif
 
-ifneq ($(CONFIG_PACKAGE_freeswitch-sounds-moh),)
- $(eval $(call Download/files,sounds-moh,freeswitch-sounds-music-8000-1.0.8.tar.gz,f63ef3cc3507af079ae5c7b8b8a01e42,,))
+
+ifneq ($(CONFIG_PACKAGE_$(PKG_NAME)-sounds-moh),)
+ $(eval $(call Download/files,sounds-moh,$(PKG_NAME)-sounds-music-8000-1.0.8.tar.gz,f63ef3cc3507af079ae5c7b8b8a01e42,,,))
        MAKE_INSTALL_TARGETS+= moh-install
 endif
 
-FS_TARGET_CFLAGS = ${TARGET_CFLAGS} -DLUA_USE_LINUX $(FPIC) -std=gnu99
-FS_TARGET_CXXFLAGS = ${TARGET_CXXFLAGS} -DLUA_USE_LINUX $(FPIC)
-FS_TARGET_CPPFLAGS = -I. -I./lua ${TARGET_CPPFLAGS}
+
+#
+# XXX: -fgnu89-inline is not supported on all compiler versions, so only enable it on avr32 where it solves build issues
+#
+ifneq ($(CONFIG_avr32),)
+  TARGET_CFLAGS += -fgnu89-inline
+  TARGET_CXXFLAGS += -fgnu89-inline
+endif
+
 
 ifneq ($(CONFIG_USE_EGLIBC),)
   ifeq ($(CONFIG_EGLIBC_OPTION_EGLIBC_UTMP),)
@@ -297,23 +425,35 @@ ifneq ($(CONFIG_USE_EGLIBC),)
   endif
 endif
 
+
+FS_TARGET_CFLAGS:= ${TARGET_CFLAGS} -DLUA_USE_LINUX $(FPIC) -std=gnu99 -Wno-format
+FS_TARGET_CXXFLAGS:= ${TARGET_CXXFLAGS} -DLUA_USE_LINUX $(FPIC) -Wno-format
+FS_TARGET_CPPFLAGS:= -I. -I./lua $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-erlang-event),-I$(STAGING_DIR_HOST)/lib/erlang/lib/erl_interface-3.6/include) $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-json-cdr),-Wno-error) ${TARGET_CPPFLAGS}
+
+
 CONFIGURE_ARGS+= \
-       --prefix="/usr/freeswitch" \
+       --host=$(GNU_TARGET_NAME) \
+       --build=$(GNU_HOST_NAME) \
+       --prefix="/usr/share/$(PKG_NAME)" \
        --bindir="/usr/bin" \
        --libdir="/usr/lib" \
-       --sysconfdir="/etc/freeswitch" \
-       --with-modinstdir="/usr/lib/freeswitch" \
-       --enable-ipv6 \
-       \
-       --with-libcurl="$(STAGING_DIR)/usr" \
-       --with-openssl="$(STAGING_DIR)/usr" \
+       --srcdir="$(PKG_BUILD_DIR)" \
+       --sysconfdir="/etc/$(PKG_NAME)" \
+       --with-modinstdir="/usr/lib/$(PKG_NAME)" \
        --with-random="/dev/urandom" \
-       --without-erlang \
-       --without-java \
-       --without-mysql \
-       --without-pgsql \
-       --without-python \
-       --disable-zrtp \
+       $(if $(CONFIG_FS_SOFIA_WITHOUT_MYSQL),--without-mysql) \
+       $(call autoconf_bool,CONFIG_FS_SOFIA_WITH_IPV6,ipv6) \
+       $(call autoconf_bool,CONFIG_FS_SOFIA_WITH_OPT,optimization) \
+       $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-celt),--with-ogg="$(STAGING_DIR)/usr",--without-iogg) \
+       $(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) \
+       $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-dingaling)|$(CONFIG_FS_SOFIA_WITH_GNUTLS),--with-libgnutls="$(STAGING_DIR)/usr") \
+       $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-java),--with-java="$(STAGING_DIR)/usr",--without-java) \
+       $(call autoconf_bool,CONFIG_PACKAGE_$(PKG_NAME)-mod-spandsp,builtin-tiff) \
+       $(call autoconf_bool,CONFIG_FS_SOFIA_WITH_SCTP,sctp) \
+       $(call autoconf_bool,CONFIG_FS_SOFIA_WITH_ZRTP_GIT,zrtp) \
+       $(call autoconf_bool,CONFIG_FS_SOFIA_WITH_ODBC,core-odbc-support) \
+       $(if $(CONFIG_FS_SOFIA_WITH_ODBC),--with-odbc="$(STAGING_DIR)/usr") \
+
 
 CONFIGURE_VARS+= \
        config_TARGET_CC="${TARGET_CC}" \
@@ -321,11 +461,13 @@ CONFIGURE_VARS+= \
        config_TARGET_CXX="${TARGET_CXX}" \
        config_TARGET_CXXFLAGS="${FS_TARGET_CPPFLAGS} ${FS_TARGET_CXXFLAGS}" \
        config_TARGET_CPPFLAGS="${FS_TARGET_CPPFLAGS}" \
-       config_BUILD_CC="${HOSTCC}" \
        config_TARGET_READLINE_INC="${FS_TARGET_CPPFLAGS}" \
        config_TARGET_READLINE_LIBS="${TARGET_LDFLAGS} -lreadline -lncurses" \
        config_TARGET_LIBS="${TARGET_LDFLAGS} -lpthread" \
+       config_BUILD_CC="${HOSTCC}" \
+       config_BUILD_CFLAGS="${HOST_CFLAGS}" \
        CC_FOR_BUILD="${HOSTCC}" \
+       LDFLAGS="$$$$LDFLAGS" \
        LDFLAGS_FOR_BUILD="${HOST_LDFLAGS}" \
        CC="${TARGET_CC}" \
        CXX="${TARGET_CXX}" \
@@ -333,6 +475,11 @@ CONFIGURE_VARS+= \
        CXXFLAGS="${FS_TARGET_CPPFLAGS} ${FS_TARGET_CXXFLAGS}" \
        CPPFLAGS="${FS_TARGET_CPPFLAGS}" \
        LDFLAGS="${TARGET_LDFLAGS} -Wl,-rpath-link=\"${STAGING_DIR}/usr/lib\"" \
+       PATH="${PATH}:${STAGING_DIR}" \
+       HOST_CC="/usr/bin/cc" \
+       HOST_CXX="/usr/bin/g++" \
+       CROSS_COMPILE="1" \
+       ax_cv_c_compiler_vendor="gnu" \
        ac_cv_dev_urandom="yes" \
        ac_cv_file_dbd_apr_dbd_mysql_c="no" \
        ac_cv_file__dev_random="no" \
@@ -346,21 +493,28 @@ CONFIGURE_VARS+= \
        apr_cv_tcp_nodelay_with_cork="yes" \
        apr_cv_type_rwlock_t="yes" \
        ac_cv_path_LIBGNUTLS_CONFIG="no" \
+       $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-perl),ac_cv_path_PERL="yes",) \
+       libzmq_cv_cxx_werror_flag="" \
 
 
 define Build/Prepare
-$(call Build/Prepare/Default)
+       (cd $(PKG_BUILD_DIR); [ -h noreg ] || touch noreg)
+       $(call Build/Prepare/Default)
        $(call Prepare/celt)
+       $(call Prepare/event-zmq)
        $(call Prepare/flite)
-       $(call Prepare/json-c)
+       $(call Prepare/json-cdr)
+       $(call Prepare/opus)
        $(call Prepare/sounds-en)
        $(call Prepare/sounds-moh)
 endef
 
+
 define Build/Configure
-$(call Build/Configure/Default)
+       (cd $(PKG_BUILD_DIR); $(AM_TOOL_PATHS) ./bootstrap.sh)
+       $(call Build/Configure/Default,)
        $(foreach m,$(FS_MOD_AVAILABLE),
-               $(if $(CONFIG_PACKAGE_freeswitch-mod-$(m)),
+               $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-$(m)),
                        $(SED) 's|^[ #]*\([^#]*/mod_$(subst -,_,$(m))\)$$$$|\1|g' $(PKG_BUILD_DIR)/modules.conf
                ,
                        $(SED) 's|^\([^#]*/mod_$(subst -,_,$(m))\)$$$$|#\1|g' $(PKG_BUILD_DIR)/modules.conf
@@ -368,192 +522,248 @@ $(call Build/Configure/Default)
        )
 endef
 
+
 define Build/Compile
        $(MAKE) -C $(PKG_BUILD_DIR) \
+               AR="$(TARGET_CROSS)ar" \
+               RANLIB="$(TARGET_CROSS)ranlib" \
+               CC="$(TARGET_CC)" \
+               CXX="$(TARGET_CXX)" \
                DESTDIR="$(PKG_INSTALL_DIR)" \
                LDFLAGS_FOR_BUILD="$(HOST_LDFLAGS)" \
-               all $(MAKE_INSTALL_TARGETS)
-       $(SED) 's|^\([:blank:]*\)\(.*\)"mod_console"\(.*\)$$$$|\1<!-- \2"mod_console"\3 -->|' $(PKG_INSTALL_DIR)/etc/freeswitch/autoload_configs/modules.conf.xml
-       $(SED) 's|^\([:blank:]*\)<!-- \(.*\)"mod_syslog"\(.*\) -->\(.*\)$$$$|\1\2"mod_syslog"\3\4 -->|' $(PKG_INSTALL_DIR)/etc/freeswitch/autoload_configs/modules.conf.xml
+               spandsp-reconf all $(MAKE_INSTALL_TARGETS)
+       $(SED) 's|^\([ \t]*\)\(.*\)"mod_console"\(.*\)$$$$|\1<!-- \2"mod_console"\3 -->|' $(PKG_INSTALL_DIR)/etc/$(PKG_NAME)/autoload_configs/modules.conf.xml
+       $(SED) 's|^\([ \t]*\)<!-- *\(.*\)"mod_syslog"\(.*\) *-->\(.*\)$$$$|\1\2"mod_syslog"\3\4|' $(PKG_INSTALL_DIR)/etc/$(PKG_NAME)/autoload_configs/modules.conf.xml
 endef
 
+
 define Build/InstallDev
-       $(INSTALL_DIR) $(1)/usr/include/freeswitch
-       $(CP) $(PKG_INSTALL_DIR)/usr/freeswitch/include/* $(1)/usr/include/freeswitch/
+       $(INSTALL_DIR) $(1)/usr/include/$(PKG_NAME)
+       $(CP) $(PKG_INSTALL_DIR)/usr/share/$(PKG_NAME)/include/* $(1)/usr/include/$(PKG_NAME)/
        $(INSTALL_DIR) $(1)/usr/lib
-       $(CP) $(PKG_INSTALL_DIR)/usr/lib/libfreeswitch.{a,so*} $(1)/usr/lib/
+       $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib$(PKG_NAME).{a,so*} $(1)/usr/lib/
 endef
 
-define Package/freeswitch/install
+
+define Package/$(PKG_NAME)/install
        $(INSTALL_DIR) $(1)/usr/bin
-       $(CP) $(PKG_INSTALL_DIR)/usr/bin/freeswitch $(1)/usr/bin/
+       $(CP) $(PKG_INSTALL_DIR)/usr/bin/$(PKG_NAME) $(1)/usr/bin/
        $(INSTALL_DIR) $(1)/usr/lib
-       $(CP) $(PKG_INSTALL_DIR)/usr/lib/libfreeswitch.so.* $(1)/usr/lib/
-       $(INSTALL_DIR) $(1)/usr/lib/freeswitch
+       $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib$(PKG_NAME).so.* $(1)/usr/lib/
+       $(INSTALL_DIR) $(1)/usr/lib/$(PKG_NAME)
        $(INSTALL_DIR) $(1)/etc/default
-       $(INSTALL_DATA) ./files/freeswitch.default $(1)/etc/default/freeswitch
+       $(INSTALL_DATA) ./files/$(PKG_NAME).default $(1)/etc/default/$(PKG_NAME)
        $(INSTALL_DIR) $(1)/etc/init.d
-       $(INSTALL_BIN) ./files/freeswitch.init $(1)/etc/init.d/freeswitch
+       $(INSTALL_BIN) ./files/$(PKG_NAME).init $(1)/etc/init.d/$(PKG_NAME)
        $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
-       $(INSTALL_DATA) ./files/freeswitch.hotplug $(1)/etc/hotplug.d/iface/90-freeswitch
+       $(INSTALL_DATA) ./files/$(PKG_NAME).hotplug $(1)/etc/hotplug.d/iface/90-$(PKG_NAME)
        $(INSTALL_DIR) $(1)/etc/config
-       $(INSTALL_DATA) ./files/freeswitch.config $(1)/etc/config/freeswitch
+       $(INSTALL_DATA) ./files/$(PKG_NAME).config $(1)/etc/config/$(PKG_NAME)
 endef
 
-define Package/freeswitch-collection-default/install
-       $(INSTALL_DIR) $(1)/etc/freeswitch
+
+define Package/$(PKG_NAME)-collection-upstream-defaults/install
+       $(INSTALL_DIR) $(1)/etc/$(PKG_NAME)
+endef
+
+
+define Package/$(PKG_NAME)-example-config/install
+       $(INSTALL_DIR) $(1)/usr/share/$(PKG_NAME)/examples/conf
+       #$(INSTALL_DIR) $(1)/var/log/$(PKG_NAME)/xml_cdr
+       $(CP) $(PKG_INSTALL_DIR)/etc/$(PKG_NAME)/* $(1)/usr/share/$(PKG_NAME)/examples/conf/
 endef
 
-define Package/freeswitch-example-config/install
-       $(INSTALL_DIR) $(1)/usr/share/freeswitch/examples/conf
-       $(CP) $(PKG_INSTALL_DIR)/etc/freeswitch/* $(1)/usr/share/freeswitch/examples/conf/
+
+define Package/$(PKG_NAME)-config-upstream-defaults/install
+       $(INSTALL_DIR) $(1)/etc/$(PKG_NAME)
+       $(CP) $(PKG_INSTALL_DIR)/etc/$(PKG_NAME)/* $(1)/etc/$(PKG_NAME)/
 endef
 
-define Package/freeswitch-config-upstream-defaults/install
-       $(INSTALL_DIR) $(1)/etc/freeswitch
-       $(CP) $(PKG_INSTALL_DIR)/etc/freeswitch/* $(1)/etc/freeswitch/
+
+define Package/$(PKG_NAME)-collection-minimal/install
+       $(INSTALL_DIR) $(1)/etc/$(PKG_NAME)
 endef
 
-define Package/freeswitch-collection-minimal/install
-       $(INSTALL_DIR) $(1)/etc/freeswitch
+
+define Package/$(PKG_NAME)-collection-uci-minimal/install
+       $(INSTALL_DIR) $(1)/etc/$(PKG_NAME)
 endef
 
-define Package/freeswitch-config-minimal/install
-       $(INSTALL_DIR) $(1)/etc/freeswitch
-       $(CP) ./files/etc.minimal/* $(1)/etc/freeswitch/
+
+define Package/$(PKG_NAME)-config-minimal/install
+       $(INSTALL_DIR) $(1)/etc/$(PKG_NAME)
+       $(CP) ./files/etc.minimal/* $(1)/etc/$(PKG_NAME)/
 endef
 
-define Package/freeswitch-sounds-en/install
-       $(INSTALL_DIR) $(1)/usr/freeswitch/sounds
-       $(CP) $(PKG_INSTALL_DIR)/usr/freeswitch/sounds/en $(1)/usr/freeswitch/sounds/
+
+define Package/$(PKG_NAME)-sounds-en/install
+       $(INSTALL_DIR) $(1)/usr/share/$(PKG_NAME)/sounds
+       $(CP) $(PKG_INSTALL_DIR)/usr/share/$(PKG_NAME)/sounds/en $(1)/usr/share/$(PKG_NAME)/sounds/
 endef
 
-define Package/freeswitch-sounds-moh/install
-       $(INSTALL_DIR) $(1)/usr/freeswitch/sounds
-       $(CP) $(PKG_INSTALL_DIR)/usr/freeswitch/sounds/music $(1)/usr/freeswitch/sounds/
+
+define Package/$(PKG_NAME)-sounds-moh/install
+       $(INSTALL_DIR) $(1)/usr/share/$(PKG_NAME)/sounds
+       $(CP) $(PKG_INSTALL_DIR)/usr/share/$(PKG_NAME)/sounds/music $(1)/usr/share/$(PKG_NAME)/sounds/
 endef
 
-define Package/freeswitch-tools/install
+
+define Package/$(PKG_NAME)-tools/install
        $(INSTALL_DIR) $(1)/usr/bin
        $(CP) $(PKG_INSTALL_DIR)/usr/bin/fs_cli $(1)/usr/bin/
+       $(CP) $(PKG_INSTALL_DIR)/usr/bin/fs_encode $(1)/usr/bin/
+       $(CP) $(PKG_INSTALL_DIR)/usr/bin/fs_ivrd $(1)/usr/bin/
+       $(CP) $(PKG_INSTALL_DIR)/usr/bin/fsxs $(1)/usr/bin/
+       $(CP) $(PKG_INSTALL_DIR)/usr/bin/gentls_cert $(1)/usr/bin/
+       $(CP) $(PKG_INSTALL_DIR)/usr/bin/tone2wav $(1)/usr/bin/
 endef
 
+
+#
 # 1. Name
 # 2. Title
 # 3. Files
 # 4. Inter Depends
 # 5. Extra Depends
+#
 define BuildPlugin
-  define Package/freeswitch-mod-$(1)
-    $$(call Package/freeswitch/Default)
+  define Package/$(PKG_NAME)-mod-$(1)
+    $$(call Package/$(PKG_NAME)/Default)
     TITLE:= FS $(2) module
-    DEPENDS:= freeswitch $$(foreach m,$(4),+freeswitch-mod-$$m) $(5)
+    DEPENDS:= $(PKG_NAME) $(foreach m,$(4),+$(PKG_NAME)-mod-$(m)) $(5)
   endef
 
-  define Package/freeswitch-mod-$(1)/install
-       [ -z "$(3)" ] || $(INSTALL_DIR) $$(1)/usr/lib/freeswitch
+  define Package/$(PKG_NAME)-mod-$(1)/install
+       [ -z "$(3)" ] || $(INSTALL_DIR) $$(1)/usr/lib/$(PKG_NAME)
        for f in $(3); do \
                $(CP) \
-                       $(PKG_INSTALL_DIR)/usr/lib/freeswitch/$$$$$$$${f}.so \
-                       $$(1)/usr/lib/freeswitch/ ; \
+                       $(PKG_INSTALL_DIR)/usr/lib/$(PKG_NAME)/$$$$$$$${f}.so \
+                       $$(1)/usr/lib/$(PKG_NAME)/ ; \
        done
+       if [ -d "./files/etc.packages/$(1)" ]; then \
+               $(INSTALL_DIR) $$(1)/etc/$(PKG_NAME) ; \
+               $(CP) \
+                       ./files/etc.packages/$(1)/* \
+                       $$(1)/etc/$(PKG_NAME)/ ; \
+       fi
   endef
 
-  $$(eval $$(call BuildPackage,freeswitch-mod-$(1)))
+  define Package/$(PKG_NAME)-mod-$(1)/postinst
+#!/bin/sh
+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
+  endef
+
+  define Package/$(PKG_NAME)-mod-$(1)/postrm
+#!/bin/sh
+sed -i -e 's|^\([ \t]*\)\(.*\)"mod_$(subst -,_,$(1))"\(.*\)$$$$|\1<!-- \2"mod_$(subst -,_,$(1))"\3 -->|' $$$${IPKG_INSTROOT}/etc/$(PKG_NAME)/autoload_configs/modules.conf.xml
+  endef
+
+  $$(eval $$(call BuildPackage,$(PKG_NAME)-mod-$(1)))
 endef
 
-$(eval $(call BuildPackage,freeswitch))
-$(eval $(call BuildPackage,freeswitch-collection-upstream-defaults))
-$(eval $(call BuildPackage,freeswitch-collection-minimal))
-$(eval $(call BuildPackage,freeswitch-sounds-en))
-$(eval $(call BuildPackage,freeswitch-sounds-moh))
-$(eval $(call BuildPackage,freeswitch-tools))
-$(eval $(call BuildPackage,freeswitch-example-config))
-$(eval $(call BuildPackage,freeswitch-config-upstream-defaults))
-$(eval $(call BuildPackage,freeswitch-config-minimal))
 
-#$(eval $(call BuildPlugin,Name,Title,Files,Depends))
-$(eval $(call BuildPlugin,alsa,Alsa endpoint,mod_alsa,,+alsa-lib))
+$(eval $(call BuildPackage,$(PKG_NAME)))
+$(eval $(call BuildPackage,$(PKG_NAME)-collection-upstream-defaults))
+$(eval $(call BuildPackage,$(PKG_NAME)-collection-minimal))
+$(eval $(call BuildPackage,$(PKG_NAME)-sounds-en))
+$(eval $(call BuildPackage,$(PKG_NAME)-sounds-moh))
+$(eval $(call BuildPackage,$(PKG_NAME)-tools))
+$(eval $(call BuildPackage,$(PKG_NAME)-example-config))
+$(eval $(call BuildPackage,$(PKG_NAME)-config-upstream-defaults))
+$(eval $(call BuildPackage,$(PKG_NAME)-config-minimal))
+
+
+#
+# $(eval $(call BuildPlugin,Name,Title,Files,Inter Depends,Extra Depends))
+#
+$(eval $(call BuildPlugin,alsa,Alsa endpoint,mod_alsa,,))
 $(eval $(call BuildPlugin,amr,GSM-AMR codec,mod_amr,,))
 $(eval $(call BuildPlugin,amrwb,GSM-AMRWB,mod_amrwb,,))
+$(eval $(call BuildPlugin,avmd,Advanced Voice Mail Detection,mod_avmd,,))
 $(eval $(call BuildPlugin,bv,codec mod_bv,mod_bv,,))
+$(eval $(call BuildPlugin,callcenter,Call Center,mod_callcenter,,))
 $(eval $(call BuildPlugin,cdr-csv,CSV-CDR handler,mod_cdr_csv,,))
+$(eval $(call BuildPlugin,cdr-pg-csv,Postgress CDR handler,mod_cdr_pg_csv,,+libpq))
+$(eval $(call BuildPlugin,cdr-sqlite,SQLite3 CDR handler,mod_cdr_sqlite,,+sqlite3))
 $(eval $(call BuildPlugin,celt,CELT ultra-low delay codec,mod_celt,,+libogg))
 $(eval $(call BuildPlugin,cepstral,Cepstral interface,mod_cepstral,,@BROKEN)) # needs <swift.h>
 $(eval $(call BuildPlugin,cidlookup,applications mod_cidlookup,mod_cidlookup,,))
 $(eval $(call BuildPlugin,cluechoo,Framework Demo,mod_cluechoo,,))
+$(eval $(call BuildPlugin,codec2,CoDec 2,mod_codec2,,))
 $(eval $(call BuildPlugin,commands,API commands,mod_commands,,))
 $(eval $(call BuildPlugin,conference,Conference room,mod_conference,,))
 $(eval $(call BuildPlugin,console,Console logger,mod_console,,))
 $(eval $(call BuildPlugin,curl,HTTP request,mod_curl,,+libcurl))
 $(eval $(call BuildPlugin,dahdi-codec,DAHDI codecs,mod_dahdi_codec,,))
+$(eval $(call BuildPlugin,db,Database backend,mod_db,,))
 $(eval $(call BuildPlugin,dialplan-asterisk,Asterisk dialplan parser,mod_dialplan_asterisk,,))
-$(eval $(call BuildPlugin,dialplan-directory,Dialplan-Directory interface,mod_dialplan_directory,,))
+$(eval $(call BuildPlugin,dialplan-directory,Dialplan directory,mod_dialplan_directory,,))
 $(eval $(call BuildPlugin,dialplan-xml,Dialplan-XML interface,mod_dialplan_xml,,))
-$(eval $(call BuildPlugin,dingaling,Jabber interface,mod_dingaling,,+libgnutls-openssl)) 
+$(eval $(call BuildPlugin,dingaling,Jabber interface,mod_dingaling,,)) 
 $(eval $(call BuildPlugin,directory,application mod_directory,mod_directory,,))
 $(eval $(call BuildPlugin,distributor,application mod_distributor,mod_distributor,,))
 $(eval $(call BuildPlugin,dptools,Dialplan tools,mod_dptools,,))
 $(eval $(call BuildPlugin,easyroute,DID routing,mod_easyroute,,))
 $(eval $(call BuildPlugin,enum,ENUM routing,mod_enum,,))
-$(eval $(call BuildPlugin,erlang-event,Erlang event handler,mod_erlang_event,,@BROKEN)) # needs <ei.h>
+$(eval $(call BuildPlugin,erlang-event,Erlang event handler,mod_erlang_event,,+erlang))
 $(eval $(call BuildPlugin,esf,Extra SIP Functionality,mod_esf,,))
 $(eval $(call BuildPlugin,event-multicast,Multicast event handler,mod_event_multicast,,))
 $(eval $(call BuildPlugin,event-socket,Socket event handler,mod_event_socket,,))
+$(eval $(call BuildPlugin,event-zmq,Socket event handler by Zero MQ,mod_event_zmq,,))
 $(eval $(call BuildPlugin,expr,Expression evaluation,mod_expr,,))
-$(eval $(call BuildPlugin,fax,Fax,mod_fax,,@BROKEN +libjpeg)) # fails in spandsp
 $(eval $(call BuildPlugin,fifo,FIFO,mod_fifo,,))
-$(eval $(call BuildPlugin,file-string,File streaming,mod_file_string,,))
-$(eval $(call BuildPlugin,flite,Festival TTS,mod_flite,,))
+$(eval $(call BuildPlugin,file-string,File streaming,mod_file_string,,@OBSOLETE)) # merged into dptools
+$(eval $(call BuildPlugin,flite,Festival TTS,mod_flite,,@(!(armeb||avr32)||BROKEN)))
+$(eval $(call BuildPlugin,fsk,Bell-202 1200-baud FSK decoder,mod_fsk,,))
 $(eval $(call BuildPlugin,fsv,Video,mod_fsv,,))
 $(eval $(call BuildPlugin,g723-1,G.723.1 codec,mod_g723_1,,))
 $(eval $(call BuildPlugin,g729,G.729 codec,mod_g729,,))
+$(eval $(call BuildPlugin,gsmopen,Short Message Service (SMS),mod_gsmopen,spandsp,+alsa-lib +gsmlib))
 $(eval $(call BuildPlugin,h26x,H26X linear codec,mod_h26x,,))
 $(eval $(call BuildPlugin,h323,h323 endpoint,mod_h323,,@BROKEN)) # missing header files (other packages needed)
-$(eval $(call BuildPlugin,java,Java language interface,mod_java,,@BROKEN)) # needs java
+$(eval $(call BuildPlugin,hash,API for manipulating a hash table,mod_hash,,))
 $(eval $(call BuildPlugin,ilbc,ILBC codec,mod_ilbc,,))
+$(eval $(call BuildPlugin,java,Java language interface,mod_java,,@BROKEN)) # needs java
+$(eval $(call BuildPlugin,json-cdr,JSon-CDR interface,mod_json_cdr,,))
 $(eval $(call BuildPlugin,lcr,Least Cost Routing,mod_lcr,,))
-$(eval $(call BuildPlugin,ldap,LDAP interface,mod_ldap,,@BROKEN)) # fails in openldap
-$(eval $(call BuildPlugin,limit,Resource limitation,mod_limit,,))
 $(eval $(call BuildPlugin,local-stream,Local streaming,mod_local_stream,,))
 $(eval $(call BuildPlugin,logfile,File logger,mod_logfile,,))
 $(eval $(call BuildPlugin,loopback,Loopback endpoint,mod_loopback,,))
 $(eval $(call BuildPlugin,lua,Lua language interface,mod_lua,,+libstdcpp))
-$(eval $(call BuildPlugin,managed,language mod_managed,mod_managed,,@BROKEN)) # needs Mono
-$(eval $(call BuildPlugin,memcache,MemCached interface,mod_memcache,,@BROKEN)) # fails in libmemcached
+$(eval $(call BuildPlugin,managed,language mod_managed,mod_managed,,+glib2 @BROKEN)) # needs Mono
+$(eval $(call BuildPlugin,mp4,MP4 File Format support for video apps.,mod_mp4,,+libmp4v2))
 $(eval $(call BuildPlugin,native-file,Native files,mod_native_file,,))
 $(eval $(call BuildPlugin,nibblebill,Billing,mod_nibblebill,,))
-$(eval $(call BuildPlugin,opal,Multi-Protocol endpoint,mod_opal,,@BROKEN)) # needs Opal
-$(eval $(call BuildPlugin,openzap,Zaptel hardware interface,mod_openzap ozmod_analog ozmod_analog_em ozmod_isdn ozmod_skel ozmod_ss7_boost ozmod_zt,,+libpcap))
-$(eval $(call BuildPlugin,perl,Perl language interface,mod_perl,,+perl @BROKEN)) # needs Perl
-$(eval $(call BuildPlugin,pocketsphinx,PocketSphinx SR,mod_pocketsphinx,,@BROKEN)) # fails in sphinxbase
+$(eval $(call BuildPlugin,openzap,Zaptel hardware interface,mod_openzap ozmod_analog ozmod_analog_em ozmod_isdn ozmod_skel ozmod_zt,,+libpcap))
+$(eval $(call BuildPlugin,opus,Opus CoDec,mod_opus,,))
 $(eval $(call BuildPlugin,portaudio,Local audio endpoint,mod_portaudio,,+alsa-lib))
-$(eval $(call BuildPlugin,portaudio-stream,format mod_portaudio_stream,mod_portaudio_stream,,))
-$(eval $(call BuildPlugin,python,Python language interface,mod_python,,+python @BROKEN)) # needs Python
-$(eval $(call BuildPlugin,radius-cdr,Radius-CDR interface,mod_radius_cdr,,@BROKEN)) # fails in freeradius-client
+$(eval $(call BuildPlugin,portaudio-stream,portaudio stream format,mod_portaudio_stream,,))
+$(eval $(call BuildPlugin,radius-cdr,Radius-CDR interface,mod_radius_cdr,,+freeradius2 @BROKEN)) # fails in freeradius-client
 $(eval $(call BuildPlugin,rss,RRS feeds via TTS,mod_rss,,))
+$(eval $(call BuildPlugin,rtmp,RTMP Protocol Handler,mod_rtmp,,))
 $(eval $(call BuildPlugin,say-de,German say,mod_say_de,,))
 $(eval $(call BuildPlugin,say-en,English say,mod_say_en,,))
 $(eval $(call BuildPlugin,say-es,Spanish say,mod_say_es,,))
 $(eval $(call BuildPlugin,say-fr,French say,mod_say_fr,,))
+$(eval $(call BuildPlugin,say-hu,Hungarian say,mod_say_hu,,))
 $(eval $(call BuildPlugin,say-it,Italian say,mod_say_it,,))
 $(eval $(call BuildPlugin,say-nl,Dutch say,mod_say_nl,,))
+$(eval $(call BuildPlugin,say-pt,Portugeese say,mod_say_pt,,))
 $(eval $(call BuildPlugin,say-ru,Russian say,mod_say_ru,,))
-$(eval $(call BuildPlugin,say-th,mod_th say,mod_say_th,,))
+$(eval $(call BuildPlugin,say-th,Thai say,mod_say_th,,))
 $(eval $(call BuildPlugin,say-zh,Chineese say,mod_say_zh,,))
-$(eval $(call BuildPlugin,shell-stream,,mod_shell_stream,,))
-$(eval $(call BuildPlugin,shout,MP3 and Shoutcast stream,mod_shout,,@BROKEN)) # needs Ogg/Vorbis
+$(eval $(call BuildPlugin,shell-stream,Shell stream,mod_shell_stream,,))
 $(eval $(call BuildPlugin,silk,codec mod_silk,mod_silk,,))
-$(eval $(call BuildPlugin,siren,G.722.1 codec,mod_siren,,@BROKEN)) # fails in libg722_1 - attempts to execute cross-compiled binary on host
+$(eval $(call BuildPlugin,siren,G.722.1 codec,mod_siren,,))
 $(eval $(call BuildPlugin,skinny,endpoint mod_skinny,mod_skinny,,))
-$(eval $(call BuildPlugin,skypopen,Skype compatible endpoint,mod_skypopen,,@BROKEN)) # needs <X11/Xlib.h>
-$(eval $(call BuildPlugin,sangoma-codec,codec sangoma-codec,mod_sangoma_codec,,@BROKEN)) # Untested
+$(eval $(call BuildPlugin,skypopen,Skype compatible endpoint,mod_skypopen,,+libX11))
 $(eval $(call BuildPlugin,snapshot,application mod_snapshot,mod_snapshot,,))
-$(eval $(call BuildPlugin,snipe-hunt,application mod_snipe_hunt,mod_snipe_hunt,,))
 $(eval $(call BuildPlugin,sndfile,Multi-Format file transcoder,mod_sndfile,,))
+$(eval $(call BuildPlugin,snipe-hunt,application mod_snipe_hunt,mod_snipe_hunt,,))
+$(eval $(call BuildPlugin,snmp,Simple Network Management Protocol,mod_snmp,,+libnetsnmp))
 $(eval $(call BuildPlugin,snom,SNOM specific features,mod_snom,,))
 $(eval $(call BuildPlugin,sofia,SIP,mod_sofia,,))
-$(eval $(call BuildPlugin,soundtouch,Sound effects,mod_soundtouch,,@BROKEN)) # fails in soundtouch
+$(eval $(call BuildPlugin,spandsp,Span DSP,mod_spandsp,,+libjpeg))
 $(eval $(call BuildPlugin,speex,Speex codec,mod_speex,,))
 $(eval $(call BuildPlugin,spidermonkey,JavaScript,mod_spidermonkey,,@BROKEN)) # fails in js
 $(eval $(call BuildPlugin,spidermonkey-core_db,JavaScript DB,mod_spidermonkey_core_db,,@BROKEN))
@@ -565,14 +775,13 @@ $(eval $(call BuildPlugin,spy,User spy,mod_spy,,))
 $(eval $(call BuildPlugin,stress,application mod_stress,mod_stress,,))
 $(eval $(call BuildPlugin,syslog,SysLog logger,mod_syslog,,))
 $(eval $(call BuildPlugin,tone-stream,Tone generation stream,mod_tone_stream,,))
-$(eval $(call BuildPlugin,unimrcp,MRCP interface,mod_unimrcp,,))
+$(eval $(call BuildPlugin,tts-commandline,ASR TTS cli,mod_tts_commandline,,))
+$(eval $(call BuildPlugin,unimrcp,MRCP interface,mod_unimrcp,,@BROKEN))
 $(eval $(call BuildPlugin,valet-parking,application mod_valet_parking,mod_valet_parking,,))
 $(eval $(call BuildPlugin,vmd,VoiceMail beep detection,mod_vmd,,))
 $(eval $(call BuildPlugin,voicemail,VoiceMail,mod_voicemail,,))
-$(eval $(call BuildPlugin,voipcodecs,VoIP codecs,mod_voipcodecs,,))
 $(eval $(call BuildPlugin,xml-cdr,XML-CDR handler,mod_xml_cdr,,+libcurl))
 $(eval $(call BuildPlugin,xml-curl,XML-Curl gateway,mod_xml_curl,,+libcurl))
-$(eval $(call BuildPlugin,xml-ldap,LDAP-XML gateway,mod_xml_ldap,,@BROKEN)) # fails in openldap
 $(eval $(call BuildPlugin,xml-rpc,XML-RPC interface,mod_xml_rpc,,))
 $(eval $(call BuildPlugin,yaml,YAML dialplans,mod_yaml,,))