mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-10 14:55:00 +02:00
add asterisk
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@611 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
ca9105dabb
commit
a496658829
@ -46,6 +46,7 @@ source "package/ntpclient/Config.in"
|
||||
source "package/radvd/Config.in"
|
||||
source "package/openswan/Config.in"
|
||||
source "package/shfs/Config.in"
|
||||
source "package/asterisk/Config.in"
|
||||
|
||||
comment "Libraries"
|
||||
source "package/libgcc/Config.in"
|
||||
|
@ -6,6 +6,7 @@ package-y:=openwrt
|
||||
package-$(BR2_PACKAGE_AICCU) += aiccu
|
||||
package-$(BR2_PACKAGE_ARPTABLES) += arptables
|
||||
package-$(BR2_PACKAGE_ARPWATCH) += arpwatch
|
||||
package-$(BR2_PACKAGE_ASTERISK) += asterisk
|
||||
package-$(BR2_PACKAGE_BRIDGE) += bridge
|
||||
package-$(BR2_PACKAGE_BUSYBOX) += busybox
|
||||
package-$(BR2_PACKAGE_BWM) += bwm
|
||||
@ -69,6 +70,15 @@ install: $(patsubst %,%-install,$(package-y))
|
||||
ifeq ($(BR2_PACKAGE_OPENVPN_LZO),y)
|
||||
openvpn-compile: lzo-compile
|
||||
endif
|
||||
ifneq ($(BR2_PACKAGE_ASTERISK_SPEEX),)
|
||||
asterisk-compile: speex-compile
|
||||
endif
|
||||
ifneq ($(BR2_PACKAGE_ASTERISK_PGSQL),)
|
||||
asterisk-compile: postgresql-compile
|
||||
endif
|
||||
ifneq ($(BR2_PACKAGE_ASTERISK_MYSQL),)
|
||||
asterisk-compile: mysql-compile
|
||||
endif
|
||||
|
||||
openswan-compile: gmp-compile
|
||||
nocatsplash-compile: glib-compile
|
||||
|
48
openwrt/package/asterisk/Config.in
Normal file
48
openwrt/package/asterisk/Config.in
Normal file
@ -0,0 +1,48 @@
|
||||
config BR2_PACKAGE_ASTERISK
|
||||
tristate "Asterisk"
|
||||
default m
|
||||
help
|
||||
Asterisk is a complete PBX in software. It provides all of the features
|
||||
you would expect from a PBX and more. Asterisk does voice over IP in three
|
||||
protocols, and can interoperate with almost all standards-based telephony
|
||||
equipment using relatively inexpensive hardware.
|
||||
|
||||
config BR2_PACKAGE_ASTERISK_SPEEX
|
||||
tristate "Speex codec"
|
||||
default m
|
||||
depends BR2_PACKAGE_ASTERISK
|
||||
select BR2_PACKAGE_SPEEX
|
||||
help
|
||||
The Speex speech compression codec for Asterisk
|
||||
|
||||
|
||||
config BR2_PACKAGE_ASTERISK_MYSQL
|
||||
tristate "MySQL plugins"
|
||||
default m
|
||||
depends BR2_PACKAGE_ASTERISK
|
||||
select BR2_PACKAGE_LIBMYSQLCLIENT
|
||||
help
|
||||
MySQL plugins for Asterisk
|
||||
|
||||
config BR2_PACKAGE_ASTERISK_PGSQL
|
||||
tristate "PostgreSQL plugins"
|
||||
default m
|
||||
depends BR2_PACKAGE_ASTERISK
|
||||
select BR2_PACKAGE_LIBPQ
|
||||
help
|
||||
PostgreSQL plugins for Asterisk
|
||||
|
||||
config BR2_PACKAGE_ASTERISK_VOICEMAIL
|
||||
tristate "Voicemail support"
|
||||
default m
|
||||
depends BR2_PACKAGE_ASTERISK
|
||||
help
|
||||
Voicemail related plugins for Asterisk
|
||||
|
||||
config BR2_PACKAGE_ASTERISK_SOUNDS
|
||||
tristate "Sound files"
|
||||
default m
|
||||
depends BR2_PACKAGE_ASTERISK
|
||||
help
|
||||
Sound files for Asterisk
|
||||
|
208
openwrt/package/asterisk/Makefile
Normal file
208
openwrt/package/asterisk/Makefile
Normal file
@ -0,0 +1,208 @@
|
||||
# $Id$
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=asterisk
|
||||
PKG_VERSION:=1.0.7
|
||||
PKG_RELEASE:=1
|
||||
PKG_MD5SUM:=4cc3c1e4a1b12e0e4c748326ad153291
|
||||
|
||||
PKG_SOURCE_URL:=http://www.asterisk.org/html/downloads ftp://ftp.asterisk.org/pub/asterisk
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_CAT:=zcat
|
||||
|
||||
PKG_APP:=$(PACKAGE_DIR)/$(PKG_NAME)_$(PKG_VERSION)-$(PKG_RELEASE)_$(ARCH).ipk
|
||||
PKG_APP_DIR:=$(PKG_BUILD_DIR)/ipkg/asterisk
|
||||
|
||||
PKG_MYSQL:=$(PACKAGE_DIR)/$(PKG_NAME)-mysql_$(PKG_VERSION)-$(PKG_RELEASE)_$(ARCH).ipk
|
||||
PKG_MYSQL_DIR:=$(PKG_BUILD_DIR)/ipkg/mysql
|
||||
|
||||
PKG_PGSQL:=$(PACKAGE_DIR)/$(PKG_NAME)-pgsql_$(PKG_VERSION)-$(PKG_RELEASE)_$(ARCH).ipk
|
||||
PKG_PGSQL_DIR:=$(PKG_BUILD_DIR)/ipkg/pgsql
|
||||
|
||||
PKG_SPEEX:=$(PACKAGE_DIR)/$(PKG_NAME)-codec-speex_$(PKG_VERSION)-$(PKG_RELEASE)_$(ARCH).ipk
|
||||
PKG_SPEEX_DIR:=$(PKG_BUILD_DIR)/ipkg/speex
|
||||
|
||||
PKG_SOUNDS:=$(PACKAGE_DIR)/$(PKG_NAME)-sounds_$(PKG_VERSION)-$(PKG_RELEASE)_$(ARCH).ipk
|
||||
PKG_SOUNDS_DIR:=$(PKG_BUILD_DIR)/ipkg/sounds
|
||||
|
||||
PKG_VOICEMAIL:=$(PACKAGE_DIR)/$(PKG_NAME)-voicemail_$(PKG_VERSION)-$(PKG_RELEASE)_$(ARCH).ipk
|
||||
PKG_VOICEMAIL_DIR:=$(PKG_BUILD_DIR)/ipkg/voicemail
|
||||
|
||||
APPS:=
|
||||
MODS:=
|
||||
COMPILE_TARGETS:=$(PKG_APP)
|
||||
INSTALL_TARGETS:=$(IPKG_STATE_DIR)/info/$(PKG_NAME).list
|
||||
ifneq ($(BR2_PACKAGE_ASTERISK_MYSQL),)
|
||||
APPS += app_sql_mysql.so
|
||||
MODS += cdr_mysql.so
|
||||
COMPILE_TARGETS += $(PKG_MYSQL)
|
||||
endif
|
||||
ifneq ($(BR2_PACKAGE_ASTERISK_PGSQL),)
|
||||
APPS += app_sql_postgres.so
|
||||
MODS += cdr_pgsql.so
|
||||
COMPILE_TARGETS += $(PKG_PGSQL)
|
||||
endif
|
||||
ifneq ($(BR2_PACKAGE_ASTERISK_SOUNDS),)
|
||||
COMPILE_TARGETS += $(PKG_SOUNDS)
|
||||
endif
|
||||
ifneq ($(BR2_PACKAGE_ASTERISK_SPEEX),)
|
||||
SPEEX:=codec_speex.so
|
||||
COMPILE_TARGETS += $(PKG_SPEEX)
|
||||
endif
|
||||
ifneq ($(BR2_PACKAGE_ASTERISK_VOICEMAIL),)
|
||||
COMPILE_TARGETS += $(PKG_VOICEMAIL)
|
||||
endif
|
||||
ifeq ($(BR2_PACKAGE_ASTERISK_MYSQL),y)
|
||||
INSTALL_TARGETS:=$(IPKG_STATE_DIR)/info/$(PKG_NAME)-mysql.list
|
||||
endif
|
||||
ifeq ($(BR2_PACKAGE_ASTERISK_PGSQL),y)
|
||||
INSTALL_TARGETS:=$(IPKG_STATE_DIR)/info/$(PKG_NAME)-pgsql.list
|
||||
endif
|
||||
ifeq ($(BR2_PACKAGE_ASTERISK_VOICEMAIL),y)
|
||||
INSTALL_TARGETS:=$(IPKG_STATE_DIR)/info/$(PKG_NAME)-voicemail.list
|
||||
endif
|
||||
ifeq ($(BR2_PACKAGE_ASTERISK_SOUNDS),y)
|
||||
INSTALL_TARGETS:=$(IPKG_STATE_DIR)/info/$(PKG_NAME)-sounds.list
|
||||
endif
|
||||
ifeq ($(BR2_PACKAGE_ASTERISK_SPEEX),y)
|
||||
INSTALL_TARGETS:=$(IPKG_STATE_DIR)/info/$(PKG_NAME)-codec-speex.list
|
||||
endif
|
||||
|
||||
$(DL_DIR)/$(PKG_SOURCE):
|
||||
$(SCRIPT_DIR)/download.pl $(DL_DIR) $(PKG_SOURCE) $(PKG_MD5SUM) $(PKG_SOURCE_URL)
|
||||
|
||||
$(PKG_BUILD_DIR)/.patched: $(DL_DIR)/$(PKG_SOURCE)
|
||||
$(PKG_CAT) $(DL_DIR)/$(PKG_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
|
||||
$(PATCH) $(PKG_BUILD_DIR) ./patches
|
||||
touch $(PKG_BUILD_DIR)/.patched
|
||||
|
||||
|
||||
asterisk-compile: $(PKG_BUILD_DIR)/.patched
|
||||
$(MAKE) -C "$(PKG_BUILD_DIR)/channels" \
|
||||
CC="$(HOSTCC)" \
|
||||
gentone
|
||||
$(MAKE) -C "$(PKG_BUILD_DIR)" \
|
||||
CC_FOR_BUILD="$(HOSTCC)" \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
OPTIMIZE="$(TARGET_CFLAGS)" \
|
||||
PROC="$(ARCH)" \
|
||||
CFLAGS_EXTRA="-I$(STAGING_DIR)/usr/include" \
|
||||
LDFLAGS_EXTRA="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/usr/lib/mysql" \
|
||||
CRYPTO_LIBS="-L$(STAGING_DIR)/usr/lib -Wl,-Bstatic -lssl -lcrypto -Wl,-Bdynamic" \
|
||||
EXTRA_APPS="$(APPS)" \
|
||||
EXTRA_MODS="$(MODS)" \
|
||||
MODSPEEX="$(SPEEX)"
|
||||
|
||||
$(PKG_APP): asterisk-compile
|
||||
$(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_APP_DIR) control/$(PKG_NAME).control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH)
|
||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||
DESTDIR="$(PKG_APP_DIR)" \
|
||||
install samples
|
||||
rm -rf $(PKG_APP_DIR)/usr/sbin/astgenkey
|
||||
rm -rf $(PKG_APP_DIR)/usr/bin
|
||||
rm -rf $(PKG_APP_DIR)/usr/share
|
||||
rm -rf $(PKG_APP_DIR)/usr/include
|
||||
rm -rf $(PKG_APP_DIR)/var
|
||||
(cd $(PKG_APP_DIR)/usr/lib/asterisk; \
|
||||
rm -rf agi-bin/*; \
|
||||
rm -rf firmware; \
|
||||
rm -rf images; \
|
||||
rm -rf keys/*; \
|
||||
rm -rf mohmp3; \
|
||||
rm -rf sounds/*; \
|
||||
cd modules; \
|
||||
rm -rf *adsi* *festival* *modem* *meetme* *oss* *phone* *intercom* \
|
||||
*mp3* *nbscat* *mysql* *postgres* *pgsql* *voicemail* *speex* \
|
||||
*musiconhold* *zapateller* *jpeg*; \
|
||||
)
|
||||
(cd $(PKG_APP_DIR)/etc/asterisk; \
|
||||
rm -f *odbc* *mysql* *postgres* *pgsql* *voicemail* *adsi* *oss* *alsa* \
|
||||
*festival* *modem* *meetme* *phone* *tds* *vofr* *rpt* *vpb* \
|
||||
*zapata* *musiconhold*; \
|
||||
)
|
||||
-$(STRIP) $(PKG_APP_DIR)/usr/sbin/asterisk
|
||||
-$(STRIP) $(PKG_APP_DIR)/usr/lib/asterisk/modules/*
|
||||
cp -a ./files/* $(PKG_APP_DIR)/
|
||||
find $(PKG_APP_DIR) -name CVS | xargs rm -rf
|
||||
chmod +x $(PKG_APP_DIR)/etc/init.d/*
|
||||
mkdir -p $(PACKAGE_DIR)
|
||||
$(IPKG_BUILD) $(PKG_APP_DIR) $(PACKAGE_DIR)
|
||||
|
||||
$(IPKG_STATE_DIR)/info/$(PKG_NAME).list: $(PKG_APP)
|
||||
$(IPKG) install $(PKG_APP)
|
||||
|
||||
$(PKG_MYSQL): asterisk-compile
|
||||
$(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_MYSQL_DIR) control/$(PKG_NAME)-mysql.control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH)
|
||||
mkdir -p $(PKG_MYSQL_DIR)/usr/lib/asterisk/modules
|
||||
mkdir -p $(PKG_MYSQL_DIR)/etc/asterisk
|
||||
cp $(PKG_BUILD_DIR)/apps/app_sql_mysql.so $(PKG_MYSQL_DIR)/usr/lib/asterisk/modules/
|
||||
cp $(PKG_BUILD_DIR)/cdr/cdr_mysql.so $(PKG_MYSQL_DIR)/usr/lib/asterisk/modules/
|
||||
$(STRIP) $(PKG_MYSQL_DIR)/usr/lib/asterisk/modules/*
|
||||
echo /etc/asterisk/cdr_mysql.conf > $(PKG_MYSQL_DIR)/CONTROL/conffiles
|
||||
cp $(PKG_BUILD_DIR)/configs/cdr_mysql.conf.sample $(PKG_MYSQL_DIR)/etc/asterisk/cdr_mysql.conf
|
||||
mkdir -p $(PACKAGE_DIR)
|
||||
$(IPKG_BUILD) $(PKG_MYSQL_DIR) $(PACKAGE_DIR)
|
||||
|
||||
$(IPKG_STATE_DIR)/info/$(PKG_NAME)-mysql.list: $(PKG_MYSQL)
|
||||
$(IPKG) install $(PKG_MYSQL)
|
||||
|
||||
$(PKG_PGSQL): asterisk-compile
|
||||
$(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_PGSQL_DIR) control/$(PKG_NAME)-pgsql.control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH)
|
||||
mkdir -p $(PKG_PGSQL_DIR)/usr/lib/asterisk/modules
|
||||
mkdir -p $(PKG_PGSQL_DIR)/etc/asterisk
|
||||
cp $(PKG_BUILD_DIR)/apps/app_sql_postgres.so $(PKG_PGSQL_DIR)/usr/lib/asterisk/modules/
|
||||
cp $(PKG_BUILD_DIR)/cdr/cdr_pgsql.so $(PKG_PGSQL_DIR)/usr/lib/asterisk/modules/
|
||||
$(STRIP) $(PKG_PGSQL_DIR)/usr/lib/asterisk/modules/*
|
||||
echo /etc/asterisk/cdr_pgsql.conf > $(PKG_PGSQL_DIR)/CONTROL/conffiles
|
||||
cp $(PKG_BUILD_DIR)/configs/cdr_pgsql.conf.sample $(PKG_PGSQL_DIR)/etc/asterisk/cdr_pgsql.conf
|
||||
mkdir -p $(PACKAGE_DIR)
|
||||
$(IPKG_BUILD) $(PKG_PGSQL_DIR) $(PACKAGE_DIR)
|
||||
|
||||
$(IPKG_STATE_DIR)/info/$(PKG_NAME)-pgsql.list: $(PKG_PGSQL)
|
||||
$(IPKG) install $(PKG_PGSQL)
|
||||
|
||||
$(PKG_SOUNDS): asterisk-compile
|
||||
$(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_SOUNDS_DIR) control/$(PKG_NAME)-sounds.control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH)
|
||||
mkdir -p $(PKG_SOUNDS_DIR)/usr/lib/asterisk/sounds
|
||||
cp -a $(PKG_BUILD_DIR)/sounds/* $(PKG_SOUNDS_DIR)/usr/lib/asterisk/sounds/
|
||||
mkdir -p $(PACKAGE_DIR)
|
||||
$(IPKG_BUILD) $(PKG_SOUNDS_DIR) $(PACKAGE_DIR)
|
||||
|
||||
$(IPKG_STATE_DIR)/info/$(PKG_NAME)-sounds.list: $(PKG_SOUNDS)
|
||||
$(IPKG) install $(PKG_SOUNDS)
|
||||
|
||||
$(PKG_SPEEX): asterisk-compile
|
||||
$(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_SPEEX_DIR) control/$(PKG_NAME)-codec-speex.control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH)
|
||||
mkdir -p $(PKG_SPEEX_DIR)/usr/lib/asterisk/modules
|
||||
cp $(PKG_BUILD_DIR)/codecs/*speex.so $(PKG_SPEEX_DIR)/usr/lib/asterisk/modules
|
||||
$(STRIP) $(PKG_SPEEX_DIR)/usr/lib/asterisk/modules/*
|
||||
mkdir -p $(PACKAGE_DIR)
|
||||
$(IPKG_BUILD) $(PKG_SPEEX_DIR) $(PACKAGE_DIR)
|
||||
|
||||
$(IPKG_STATE_DIR)/info/$(PKG_NAME)-speex.list: $(PKG_SPEEX)
|
||||
$(IPKG) install $(PKG_SPEEX)
|
||||
|
||||
$(PKG_VOICEMAIL): asterisk-compile
|
||||
$(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_VOICEMAIL_DIR) control/$(PKG_NAME)-voicemail.control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH)
|
||||
echo /etc/asterisk/voicemail.conf > $(PKG_VOICEMAIL_DIR)/CONTROL/conffiles
|
||||
mkdir -p $(PKG_VOICEMAIL_DIR)/etc/asterisk
|
||||
cp $(PKG_BUILD_DIR)/configs/voicemail.conf.sample $(PKG_VOICEMAIL_DIR)/etc/asterisk/voicemail.conf
|
||||
mkdir -p $(PKG_VOICEMAIL_DIR)/usr/lib/asterisk/modules
|
||||
cp $(PKG_BUILD_DIR)/apps/*voicemail.so $(PKG_VOICEMAIL_DIR)/usr/lib/asterisk/modules
|
||||
$(STRIP) $(PKG_VOICEMAIL_DIR)/usr/lib/asterisk/modules/*
|
||||
mkdir -p $(PACKAGE_DIR)
|
||||
$(IPKG_BUILD) $(PKG_VOICEMAIL_DIR) $(PACKAGE_DIR)
|
||||
|
||||
$(IPKG_STATE_DIR)/info/$(PKG_NAME)-voicemail.list: $(PKG_VOICEMAIL)
|
||||
$(IPKG) install $(PKG_VOICEMAIL)
|
||||
|
||||
source: $(DL_DIR)/$(PKG_SOURCE)
|
||||
prepare: $(PKG_BUILD_DIR)/.patched
|
||||
compile: $(COMPILE_TARGETS)
|
||||
install: $(INSTALL_TARGETS)
|
||||
|
||||
clean:
|
||||
rm -rf $(PKG_BUILD_DIR)
|
||||
rm -f $(PKG_APP)
|
@ -0,0 +1,7 @@
|
||||
Package: asterisk-codec-speex
|
||||
Priority: optional
|
||||
Section: net
|
||||
Maintainer: Felix Fietkau <nbd@vd-s.ath.cx>
|
||||
Source: buildroot internal
|
||||
Description: a Speex/PCM16 Codec Translator for Asterisk
|
||||
Depends: asterisk, libspeex
|
7
openwrt/package/asterisk/control/asterisk-mysql.control
Normal file
7
openwrt/package/asterisk/control/asterisk-mysql.control
Normal file
@ -0,0 +1,7 @@
|
||||
Package: asterisk-mysql
|
||||
Priority: optional
|
||||
Section: net
|
||||
Maintainer: Felix Fietkau <nbd@vd-s.ath.cx>
|
||||
Source: buildroot internal
|
||||
Description: MySQL modules for Asterisk
|
||||
Depends: asterisk, libmysqlclient, zlib
|
7
openwrt/package/asterisk/control/asterisk-pgsql.control
Normal file
7
openwrt/package/asterisk/control/asterisk-pgsql.control
Normal file
@ -0,0 +1,7 @@
|
||||
Package: asterisk-pgsql
|
||||
Priority: optional
|
||||
Section: net
|
||||
Maintainer: Felix Fietkau <nbd@vd-s.ath.cx>
|
||||
Source: buildroot internal
|
||||
Description: PostgreSQL modules for Asterisk
|
||||
Depends: asterisk, libpq, zlib
|
7
openwrt/package/asterisk/control/asterisk-sounds.control
Normal file
7
openwrt/package/asterisk/control/asterisk-sounds.control
Normal file
@ -0,0 +1,7 @@
|
||||
Package: asterisk-sounds
|
||||
Priority: optional
|
||||
Section: net
|
||||
Maintainer: Felix Fietkau <nbd@vd-s.ath.cx>
|
||||
Source: buildroot internal
|
||||
Description: a sounds collection for Asterisk
|
||||
Depends: asterisk
|
@ -0,0 +1,7 @@
|
||||
Package: asterisk-voicemail
|
||||
Priority: optional
|
||||
Section: net
|
||||
Maintainer: Felix Fietkau <nbd@vd-s.ath.cx>
|
||||
Source: buildroot internal
|
||||
Description: VoiceMail related modules for Asterisk
|
||||
Depends: asterisk
|
6
openwrt/package/asterisk/control/asterisk.control
Normal file
6
openwrt/package/asterisk/control/asterisk.control
Normal file
@ -0,0 +1,6 @@
|
||||
Package: asterisk
|
||||
Priority: optional
|
||||
Section: net
|
||||
Maintainer: Felix Fietkau <nbd@vd-s.ath.cx>
|
||||
Source: buildroot internal
|
||||
Description: An open source PBX
|
22
openwrt/package/asterisk/files/CONTROL/conffiles
Normal file
22
openwrt/package/asterisk/files/CONTROL/conffiles
Normal file
@ -0,0 +1,22 @@
|
||||
/etc/asterisk/agents.conf
|
||||
/etc/asterisk/alarmreceiver.conf
|
||||
/etc/asterisk/asterisk.conf
|
||||
/etc/asterisk/cdr_manager.conf
|
||||
/etc/asterisk/enum.conf
|
||||
/etc/asterisk/extconfig.conf
|
||||
/etc/asterisk/extensions.conf
|
||||
/etc/asterisk/features.conf
|
||||
/etc/asterisk/iax.conf
|
||||
/etc/asterisk/iaxprov.conf
|
||||
/etc/asterisk/indications.conf
|
||||
/etc/asterisk/logger.conf
|
||||
/etc/asterisk/manager.conf
|
||||
/etc/asterisk/mgcp.conf
|
||||
/etc/asterisk/modules.conf
|
||||
/etc/asterisk/osp.conf
|
||||
/etc/asterisk/privacy.conf
|
||||
/etc/asterisk/queues.conf
|
||||
/etc/asterisk/rtp.conf
|
||||
/etc/asterisk/sip.conf
|
||||
/etc/asterisk/skinny.conf
|
||||
/etc/default/asterisk
|
4
openwrt/package/asterisk/files/etc/default/asterisk
Normal file
4
openwrt/package/asterisk/files/etc/default/asterisk
Normal file
@ -0,0 +1,4 @@
|
||||
## startup options for /etc/init.d/asterisk
|
||||
|
||||
ENABLE_ASTERISK="no"
|
||||
OPTIONS=""
|
23
openwrt/package/asterisk/files/etc/init.d/S60asterisk
Executable file
23
openwrt/package/asterisk/files/etc/init.d/S60asterisk
Executable file
@ -0,0 +1,23 @@
|
||||
#!/bin/sh
|
||||
|
||||
DEFAULT=/etc/default/asterisk
|
||||
OPTIONS=""
|
||||
[ -f $DEFAULT ] && . $DEFAULT
|
||||
[ "$ENABLE_ASTERISK" = "yes" ] || exit 0
|
||||
|
||||
case $1 in
|
||||
start)
|
||||
[ -d /var/run ] || mkdir -p /var/run
|
||||
[ -d /var/log/asterisk ] || mkdir -p /var/log/asterisk
|
||||
[ -d /var/spool/asterisk ] || mkdir -p /var/spool/asterisk
|
||||
/usr/sbin/asterisk $OPTIONS
|
||||
;;
|
||||
stop)
|
||||
[ -f /var/run/asterisk.pid ] && kill $(cat /var/run/asterisk.pid) >/dev/null 2>&1
|
||||
;;
|
||||
*)
|
||||
echo "usage: $0 (start|stop)"
|
||||
exit 1
|
||||
esac
|
||||
|
||||
exit $?
|
547
openwrt/package/asterisk/patches/makefiles.diff
Normal file
547
openwrt/package/asterisk/patches/makefiles.diff
Normal file
@ -0,0 +1,547 @@
|
||||
diff -ruN asterisk-1.0.7-orig/Makefile asterisk-1.0.7-2/Makefile
|
||||
--- asterisk-1.0.7-orig/Makefile 2005-03-10 09:15:05.000000000 +0100
|
||||
+++ asterisk-1.0.7-2/Makefile 2005-03-19 17:38:06.000000000 +0100
|
||||
@@ -63,10 +63,10 @@
|
||||
#K6OPT = -DK6OPT
|
||||
|
||||
#Tell gcc to optimize the asterisk's code
|
||||
-OPTIMIZE+=-O6
|
||||
+#OPTIMIZE+=-O6
|
||||
|
||||
#Include debug symbols in the executables (-g) and profiling info (-pg)
|
||||
-DEBUG=-g #-pg
|
||||
+#DEBUG=-g #-pg
|
||||
|
||||
# If you are running a radio application, define RADIO_RELAX so that the DTMF
|
||||
# will be received more reliably
|
||||
@@ -74,7 +74,7 @@
|
||||
|
||||
# If you don't have a lot of memory (e.g. embedded Asterisk), uncomment the
|
||||
# following to reduce the size of certain static buffers
|
||||
-#OPTIONS += -DLOW_MEMORY
|
||||
+OPTIONS += -DLOW_MEMORY
|
||||
|
||||
# Optional debugging parameters
|
||||
DEBUG_THREADS = #-DDEBUG_THREADS #-DDO_CRASH
|
||||
@@ -112,7 +112,7 @@
|
||||
BUSYDETECT+= #-DBUSYDETECT_COMPARE_TONE_AND_SILENCE
|
||||
|
||||
ASTLIBDIR=$(INSTALL_PREFIX)/usr/lib/asterisk
|
||||
-ASTVARLIBDIR=$(INSTALL_PREFIX)/var/lib/asterisk
|
||||
+ASTVARLIBDIR=$(INSTALL_PREFIX)/usr/lib/asterisk
|
||||
ASTETCDIR=$(INSTALL_PREFIX)/etc/asterisk
|
||||
ASTSPOOLDIR=$(INSTALL_PREFIX)/var/spool/asterisk
|
||||
ASTLOGDIR=$(INSTALL_PREFIX)/var/log/asterisk
|
||||
@@ -128,7 +128,7 @@
|
||||
|
||||
INCLUDE=-Iinclude -I../include
|
||||
CFLAGS=-pipe -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations $(DEBUG) $(INCLUDE) -D_REENTRANT -D_GNU_SOURCE #-DMAKE_VALGRIND_HAPPY
|
||||
-CFLAGS+=$(OPTIMIZE)
|
||||
+CFLAGS+=$(OPTIMIZE) $(CFLAGS_EXTRA)
|
||||
|
||||
ifneq ($(PROC),ultrasparc)
|
||||
CFLAGS+=$(shell if $(CC) -march=$(PROC) -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo "-march=$(PROC)"; fi)
|
||||
@@ -187,7 +187,7 @@
|
||||
CFLAGS+=# -fomit-frame-pointer
|
||||
SUBDIRS=res channels pbx apps codecs formats agi cdr astman stdtime
|
||||
ifeq (${OSARCH},Linux)
|
||||
-LIBS=-ldl -lpthread
|
||||
+LIBS=$(LDFLAGS_EXTRA) -ldl -lpthread
|
||||
endif
|
||||
LIBS+=-lncurses -lm
|
||||
ifeq (${OSARCH},Linux)
|
||||
@@ -205,7 +205,7 @@
|
||||
ifeq (${OSARCH},OpenBSD)
|
||||
LIBS=-lcrypto -lpthread -lm -lncurses
|
||||
endif
|
||||
-LIBS+=-lssl
|
||||
+LIBS+=-Wl,-Bstatic -lssl -Wl,-Bdynamic
|
||||
OBJS=io.o sched.o logger.o frame.o loader.o config.o channel.o \
|
||||
translate.o file.o say.o pbx.o cli.o md5.o term.o \
|
||||
ulaw.o alaw.o callerid.o fskmodem.o image.o app.o \
|
||||
@@ -240,12 +240,12 @@
|
||||
cd editline && unset CFLAGS LIBS && ./configure ; \
|
||||
|
||||
editline/libedit.a: FORCE
|
||||
- cd editline && unset CFLAGS LIBS && test -f config.h || ./configure
|
||||
- $(MAKE) -C editline libedit.a
|
||||
+ cd editline && unset CFLAGS LIBS && test -f config.h || CFLAGS="$(OPTIMIZE) $(CFLAGS_EXTRA)" LDFLAGS="$(LDFLAGS_EXTRA)" ./configure
|
||||
+ $(MAKE) PROC=$(PROC) CFLAGS="$(OPTIMIZE)" -C editline libedit.a
|
||||
|
||||
db1-ast/libdb1.a: FORCE
|
||||
@if [ -d db1-ast ]; then \
|
||||
- $(MAKE) -C db1-ast libdb1.a ; \
|
||||
+ $(MAKE) PROC=$(PROC) OORG="$(OPTIMIZE)" -C db1-ast libdb1.a ; \
|
||||
else \
|
||||
echo "You need to do a cvs update -d not just cvs update"; \
|
||||
exit 1; \
|
||||
@@ -289,7 +289,7 @@
|
||||
|
||||
stdtime/libtime.a: FORCE
|
||||
@if [ -d stdtime ]; then \
|
||||
- $(MAKE) -C stdtime libtime.a ; \
|
||||
+ $(MAKE) PROC=$(PROC) -C stdtime libtime.a ; \
|
||||
else \
|
||||
echo "You need to do a cvs update -d not just cvs update"; \
|
||||
exit 1; \
|
||||
@@ -381,7 +381,7 @@
|
||||
if [ ! -f $(DESTDIR)$(ASTSBINDIR)/safe_asterisk ]; then \
|
||||
install -m 755 contrib/scripts/safe_asterisk $(DESTDIR)$(ASTSBINDIR)/ ;\
|
||||
fi
|
||||
- for x in $(SUBDIRS); do $(MAKE) -C $$x install || exit 1 ; done
|
||||
+ for x in $(SUBDIRS); do $(MAKE) PROC=$(PROC) -C $$x install || exit 1 ; done
|
||||
install -d $(DESTDIR)$(ASTHEADERDIR)
|
||||
install -m 644 include/asterisk/*.h $(DESTDIR)$(ASTHEADERDIR)
|
||||
rm -f $(DESTDIR)$(ASTVARLIBDIR)/sounds/vm
|
||||
@@ -519,8 +519,8 @@
|
||||
__rpm: _version
|
||||
rm -rf /tmp/asterisk ; \
|
||||
mkdir -p /tmp/asterisk/redhat/RPMS/i386 ; \
|
||||
- $(MAKE) DESTDIR=/tmp/asterisk install ; \
|
||||
- $(MAKE) DESTDIR=/tmp/asterisk samples ; \
|
||||
+ $(MAKE) PROC=$(PROC) DESTDIR=/tmp/asterisk install ; \
|
||||
+ $(MAKE) PROC=$(PROC) DESTDIR=/tmp/asterisk samples ; \
|
||||
mkdir -p /tmp/asterisk/etc/rc.d/init.d ; \
|
||||
cp -f redhat/asterisk /tmp/asterisk/etc/rc.d/init.d/ ; \
|
||||
sed "s/^Version:.*/Version: $(RPMVERSION)/g" redhat/asterisk.spec > asterisk.spec ; \
|
||||
@@ -544,12 +544,12 @@
|
||||
fi
|
||||
|
||||
dont-optimize:
|
||||
- $(MAKE) OPTIMIZE= K6OPT= install
|
||||
+ $(MAKE) PROC=$(PROC) OPTIMIZE= K6OPT= install
|
||||
|
||||
valgrind: dont-optimize
|
||||
|
||||
depend: .depend
|
||||
- for x in $(SUBDIRS); do $(MAKE) -C $$x depend || exit 1 ; done
|
||||
+ for x in $(SUBDIRS); do $(MAKE) PROC=$(PROC) -C $$x depend || exit 1 ; done
|
||||
|
||||
.depend:
|
||||
@if ! which mpg123 &>/dev/null ; then \
|
||||
diff -ruN asterisk-1.0.7-orig/apps/Makefile asterisk-1.0.7-2/apps/Makefile
|
||||
--- asterisk-1.0.7-orig/apps/Makefile 2004-09-24 23:32:56.000000000 +0200
|
||||
+++ asterisk-1.0.7-2/apps/Makefile 2005-03-19 17:38:06.000000000 +0100
|
||||
@@ -35,13 +35,14 @@
|
||||
APPS+=app_intercom.so
|
||||
endif
|
||||
|
||||
-#APPS+=app_sql_postgres.so
|
||||
+# add extra apps
|
||||
+APPS+=$(EXTRA_APPS)
|
||||
#APPS+=app_sql_odbc.so
|
||||
#APPS+=app_rpt.so
|
||||
|
||||
-APPS+=$(shell if [ -f /usr/include/linux/zaptel.h ]; then echo "app_zapras.so app_meetme.so app_flash.so app_zapbarge.so app_zapscan.so" ; fi)
|
||||
-APPS+=$(shell if [ -f /usr/local/include/zaptel.h ]; then echo "app_zapras.so app_meetme.so app_flash.so app_zapbarge.so app_zapscan.so" ; fi)
|
||||
-APPS+=$(shell if [ -f /usr/include/osp/osp.h ]; then echo "app_osplookup.so" ; fi)
|
||||
+#APPS+=$(shell if [ -f /usr/include/linux/zaptel.h ]; then echo "app_zapras.so app_meetme.so app_flash.so app_zapbarge.so app_zapscan.so" ; fi)
|
||||
+#APPS+=$(shell if [ -f /usr/local/include/zaptel.h ]; then echo "app_zapras.so app_meetme.so app_flash.so app_zapbarge.so app_zapscan.so" ; fi)
|
||||
+#APPS+=$(shell if [ -f /usr/include/osp/osp.h ]; then echo "app_osplookup.so" ; fi)
|
||||
|
||||
CFLAGS+=-fPIC
|
||||
|
||||
diff -ruN asterisk-1.0.7-orig/cdr/Makefile asterisk-1.0.7-2/cdr/Makefile
|
||||
--- asterisk-1.0.7-orig/cdr/Makefile 2004-08-31 18:33:00.000000000 +0200
|
||||
+++ asterisk-1.0.7-2/cdr/Makefile 2005-03-19 17:38:06.000000000 +0100
|
||||
@@ -12,7 +12,7 @@
|
||||
#
|
||||
|
||||
#ADD cdr_pgsql.so to MODS= to include PostgreSQL support: REQUIRES PostgreSQL libs
|
||||
-MODS=cdr_csv.so cdr_manager.so
|
||||
+MODS=cdr_csv.so cdr_manager.so $(EXTRA_MODS)
|
||||
|
||||
|
||||
CFLAGS+=-fPIC
|
||||
diff -ruN asterisk-1.0.7-orig/channels/Makefile asterisk-1.0.7-2/channels/Makefile
|
||||
--- asterisk-1.0.7-orig/channels/Makefile 2004-08-31 18:33:00.000000000 +0200
|
||||
+++ asterisk-1.0.7-2/channels/Makefile 2005-03-19 17:38:06.000000000 +0100
|
||||
@@ -71,25 +71,25 @@
|
||||
CHANNEL_LIBS+=chan_oss.so
|
||||
endif
|
||||
|
||||
-CHANNEL_LIBS+=$(shell [ -f /usr/include/linux/ixjuser.h ] && echo chan_phone.so)
|
||||
-CHANNEL_LIBS+=$(shell [ -f /usr/local/include/ixjuser.h ] && echo chan_phone.so)
|
||||
-CHANNEL_LIBS+=$(shell [ -f h323/libchanh323.a ] && echo chan_h323.so)
|
||||
-
|
||||
-CFLAGS+=-Wno-missing-prototypes -Wno-missing-declarations
|
||||
-CFLAGS+=$(shell [ ! -f /usr/include/linux/if_wanpipe.h ] && echo " -DOLD_SANGOMA_API")
|
||||
-CHANNEL_LIBS+=$(shell [ -f /usr/include/alsa/asoundlib.h ] && echo "chan_alsa.so")
|
||||
-CFLAGS+=$(shell [ -f /usr/lib/libpri.so.1 ] && echo " -DZAPATA_PRI")
|
||||
-CFLAGS+=$(shell [ -f /usr/lib/libmfcr2.so.1 ] && echo " -DZAPATA_R2")
|
||||
-CFLAGS+=$(shell [ -f alsa-monitor.h ] && echo " -DALSA_MONITOR")
|
||||
-ZAPPRI=$(shell [ -f /usr/lib/libpri.so.1 ] && echo "-lpri")
|
||||
-ZAPR2=$(shell [ -f /usr/lib/libmfcr2.so.1 ] && echo "-lmfcr2")
|
||||
-CFLAGS+=$(shell [ -f /usr/include/linux/zaptel.h ] && echo "-DIAX_TRUNKING")
|
||||
-CFLAGS+=$(shell [ -f /usr/local/include/zaptel.h ] && echo "-DIAX_TRUNKING")
|
||||
-CHANNEL_LIBS+=$(shell [ -f /usr/include/vpbapi.h ] && echo "chan_vpb.so" )
|
||||
-CFLAGS+=$(shell [ -f /usr/include/vpbapi.h ] && echo " -DLINUX")
|
||||
+#CHANNEL_LIBS+=$(shell [ -f /usr/include/linux/ixjuser.h ] && echo chan_phone.so)
|
||||
+#CHANNEL_LIBS+=$(shell [ -f /usr/local/include/ixjuser.h ] && echo chan_phone.so)
|
||||
+#CHANNEL_LIBS+=$(shell [ -f h323/libchanh323.a ] && echo chan_h323.so)
|
||||
+
|
||||
+#CFLAGS+=-Wno-missing-prototypes -Wno-missing-declarations
|
||||
+#CFLAGS+=$(shell [ ! -f /usr/include/linux/if_wanpipe.h ] && echo " -DOLD_SANGOMA_API")
|
||||
+#CHANNEL_LIBS+=$(shell [ -f /usr/include/alsa/asoundlib.h ] && echo "chan_alsa.so")
|
||||
+#CFLAGS+=$(shell [ -f /usr/lib/libpri.so.1 ] && echo " -DZAPATA_PRI")
|
||||
+#CFLAGS+=$(shell [ -f /usr/lib/libmfcr2.so.1 ] && echo " -DZAPATA_R2")
|
||||
+#CFLAGS+=$(shell [ -f alsa-monitor.h ] && echo " -DALSA_MONITOR")
|
||||
+#ZAPPRI=$(shell [ -f /usr/lib/libpri.so.1 ] && echo "-lpri")
|
||||
+#ZAPR2=$(shell [ -f /usr/lib/libmfcr2.so.1 ] && echo "-lmfcr2")
|
||||
+#CFLAGS+=$(shell [ -f /usr/include/linux/zaptel.h ] && echo "-DIAX_TRUNKING")
|
||||
+#CFLAGS+=$(shell [ -f /usr/local/include/zaptel.h ] && echo "-DIAX_TRUNKING")
|
||||
+#CHANNEL_LIBS+=$(shell [ -f /usr/include/vpbapi.h ] && echo "chan_vpb.so" )
|
||||
+#CFLAGS+=$(shell [ -f /usr/include/vpbapi.h ] && echo " -DLINUX")
|
||||
|
||||
-ALSA_SRC=chan_alsa.c
|
||||
-ALSA_SRC+=$(shell [ -f alsa-monitor.h ] && echo "alsa-monitor.h")
|
||||
+#ALSA_SRC=chan_alsa.c
|
||||
+#ALSA_SRC+=$(shell [ -f alsa-monitor.h ] && echo "alsa-monitor.h")
|
||||
|
||||
CFLAGS+=-DCRYPTO
|
||||
CFLAGS+=-fPIC
|
||||
@@ -106,10 +106,10 @@
|
||||
|
||||
ZAPDIR=/usr/lib
|
||||
|
||||
-CHANNEL_LIBS+=$(shell [ -f /usr/include/linux/zaptel.h ] && echo "chan_zap.so")
|
||||
-CHANNEL_LIBS+=$(shell [ -f /usr/local/include/zaptel.h ] && echo "chan_zap.so")
|
||||
+#CHANNEL_LIBS+=$(shell [ -f /usr/include/linux/zaptel.h ] && echo "chan_zap.so")
|
||||
+#CHANNEL_LIBS+=$(shell [ -f /usr/local/include/zaptel.h ] && echo "chan_zap.so")
|
||||
|
||||
-CHANNEL_LIBS+=$(shell [ -f /usr/include/nbs.h ] && echo "chan_nbs.so" )
|
||||
+#CHANNEL_LIBS+=$(shell [ -f /usr/include/nbs.h ] && echo "chan_nbs.so" )
|
||||
|
||||
ifndef OPENH323DIR
|
||||
OPENH323DIR=$(HOME)/openh323
|
||||
diff -ruN asterisk-1.0.7-orig/channels/h323/Makefile asterisk-1.0.7-2/channels/h323/Makefile
|
||||
--- asterisk-1.0.7-orig/channels/h323/Makefile 2004-11-15 03:35:35.000000000 +0100
|
||||
+++ asterisk-1.0.7-2/channels/h323/Makefile 2005-03-19 17:38:06.000000000 +0100
|
||||
@@ -22,9 +22,11 @@
|
||||
OSARCH=$(shell uname -s)
|
||||
ifneq (${OSARCH},FreeBSD)
|
||||
ifneq (${OSARCH},NetBSD)
|
||||
+ifneq ($(PROC),mipsel)
|
||||
CFLAGS += -march=$(shell uname -m)
|
||||
endif
|
||||
endif
|
||||
+endif
|
||||
CFLAGS += -DPBYTE_ORDER=PLITTLE_ENDIAN
|
||||
|
||||
ifeq (${OSARCH},Linux)
|
||||
@@ -47,7 +49,7 @@
|
||||
|
||||
# Pre Janus release directives
|
||||
CFLAGS += -DNDEBUG -DDO_CRASH -DDEBUG_THREADS
|
||||
-CFLAGS += -pipe -Wall -fPIC
|
||||
+CFLAGS += -pipe -Wall -fPIC $(OPTIMIZE)
|
||||
ifeq (${OSARCH},Linux)
|
||||
CFLAGS += -DP_LINUX
|
||||
LIBS+=-lpthread
|
||||
@@ -74,7 +76,7 @@
|
||||
|
||||
|
||||
libchanh323.a: ast_h323.o
|
||||
- ar cr libchanh323.a ast_h323.o
|
||||
+ $(AR) cr libchanh323.a ast_h323.o
|
||||
|
||||
ast_h323.o: ast_h323.cpp
|
||||
$(CXX) -g -c -fno-rtti -o $@ $(CFLAGS) $<
|
||||
diff -ruN asterisk-1.0.7-orig/codecs/Makefile asterisk-1.0.7-2/codecs/Makefile
|
||||
--- asterisk-1.0.7-orig/codecs/Makefile 2005-03-17 15:43:51.000000000 +0100
|
||||
+++ asterisk-1.0.7-2/codecs/Makefile 2005-03-22 23:26:20.000000000 +0100
|
||||
@@ -17,21 +17,21 @@
|
||||
# g723.1b)
|
||||
#
|
||||
#MODG723=codec_g723_1.so codec_g723_1b.so
|
||||
-MODG723=$(shell [ -f g723.1/coder.c ] && echo "codec_g723_1.so")
|
||||
-MODG723+=$(shell [ -f g723.1b/coder2.c ] && echo "codec_g723_1b.so")
|
||||
-MODSPEEX=$(shell [ -f /usr/include/speex.h ] || [ -f /usr/include/speex/speex.h ] || [ -f /usr/local/include/speex.h ] || [ -f /usr/local/include/speex/speex.h ] && echo "codec_speex.so")
|
||||
+#MODG723=$(shell [ -f g723.1/coder.c ] && echo "codec_g723_1.so")
|
||||
+#MODG723+=$(shell [ -f g723.1b/coder2.c ] && echo "codec_g723_1b.so")
|
||||
+MODSPEEX=codec_speex.so
|
||||
MODILBC=$(shell [ -f ilbc/iLBC_decode.h ] && echo "codec_ilbc.so")
|
||||
CFLAGS+=-fPIC
|
||||
-CFLAGS+=$(shell [ -f /usr/local/include/speex.h ] && echo "-I/usr/local/include")
|
||||
-CFLAGS+=$(shell [ -f /usr/local/include/speex/speex.h ] && echo "-I/usr/local/include/speex")
|
||||
-CFLAGS+=$(shell [ -f /usr/include/speex/speex.h ] && echo "-I/usr/include/speex")
|
||||
+#CFLAGS+=$(shell [ -f /usr/local/include/speex.h ] && echo "-I/usr/local/include")
|
||||
+#CFLAGS+=$(shell [ -f /usr/local/include/speex/speex.h ] && echo "-I/usr/local/include/speex")
|
||||
+#CFLAGS+=$(shell [ -f /usr/include/speex/speex.h ] && echo "-I/usr/include/speex")
|
||||
|
||||
LIBG723=g723.1/libg723.a
|
||||
LIBG723B=g723.1b/libg723b.a
|
||||
LIBGSM=gsm/lib/libgsm.a
|
||||
LIBGSMT=gsm/lib/libgsm.a
|
||||
LIBLPC10=lpc10/liblpc10.a
|
||||
-LIBSPEEX=$(shell [ -f /usr/local/lib/libspeex.a ] && echo "-L/usr/local/lib")
|
||||
+LIBSPEEX=$(LDFLAGS_EXTRA)
|
||||
LIBSPEEX+=-lspeex -lm
|
||||
LIBILBC=ilbc/libilbc.a
|
||||
|
||||
@@ -43,26 +43,26 @@
|
||||
|
||||
clean:
|
||||
rm -f *.so *.o .depend
|
||||
- ! [ -d g723.1 ] || $(MAKE) -C g723.1 clean
|
||||
- ! [ -d g723.1b ] || $(MAKE) -C g723.1b clean
|
||||
- $(MAKE) -C gsm clean
|
||||
- $(MAKE) -C lpc10 clean
|
||||
- $(MAKE) -C ilbc clean
|
||||
+ ! [ -d g723.1 ] || $(MAKE) PROC=$(PROC) -C g723.1 clean
|
||||
+ ! [ -d g723.1b ] || $(MAKE) PROC=$(PROC) -C g723.1b clean
|
||||
+ $(MAKE) PROC=$(PROC) -C gsm clean
|
||||
+ $(MAKE) PROC=$(PROC) -C lpc10 clean
|
||||
+ $(MAKE) PROC=$(PROC) -C ilbc clean
|
||||
|
||||
$(LIBG723):
|
||||
- $(MAKE) -C g723.1 all
|
||||
+ $(MAKE) PROC=$(PROC) -C g723.1 all
|
||||
|
||||
gsm/lib/libgsm.a:
|
||||
- $(MAKE) -C gsm lib/libgsm.a
|
||||
+ $(MAKE) PROC=$(PROC) -C gsm lib/libgsm.a
|
||||
|
||||
$(LIBG723B):
|
||||
- $(MAKE) -C g723.1b all
|
||||
+ $(MAKE) PROC=$(PROC) -C g723.1b all
|
||||
|
||||
$(LIBLPC10):
|
||||
- $(MAKE) -C lpc10 all
|
||||
+ $(MAKE) PROC=$(PROC) -C lpc10 all
|
||||
|
||||
$(LIBILBC):
|
||||
- $(MAKE) -C ilbc all
|
||||
+ $(MAKE) PROC=$(PROC) -C ilbc all
|
||||
|
||||
codec_ilbc.so: codec_ilbc.o $(LIBILBC)
|
||||
$(CC) $(SOLINK) -o $@ $< $(LIBILBC)
|
||||
diff -ruN asterisk-1.0.7-orig/codecs/gsm/Makefile asterisk-1.0.7-2/codecs/gsm/Makefile
|
||||
--- asterisk-1.0.7-orig/codecs/gsm/Makefile 2004-12-21 21:49:24.000000000 +0100
|
||||
+++ asterisk-1.0.7-2/codecs/gsm/Makefile 2005-03-19 17:38:06.000000000 +0100
|
||||
@@ -40,9 +40,10 @@
|
||||
ifneq (${OSARCH},Darwin)
|
||||
ifneq (${PROC},x86_64)
|
||||
ifneq (${PROC},ultrasparc)
|
||||
-ifneq ($(shell uname -m),ppc)
|
||||
-ifneq ($(shell uname -m),alpha)
|
||||
+ifneq ($(PROC),ppc)
|
||||
+ifneq ($(PROC),alpha)
|
||||
ifneq (${PROC},sparc64)
|
||||
+ifneq ($(PROC),mipsel)
|
||||
OPTIMIZE+=-march=$(PROC)
|
||||
endif
|
||||
endif
|
||||
@@ -50,6 +51,7 @@
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
+endif
|
||||
|
||||
#The problem with sparc is the best stuff is in newer versions of gcc (post 3.0) only.
|
||||
#This works for even old (2.96) versions of gcc and provides a small boost either way.
|
||||
@@ -78,7 +80,7 @@
|
||||
# CCFLAGS = -c -O
|
||||
|
||||
CC ?= gcc
|
||||
-CCFLAGS += -c -DNeedFunctionPrototypes=1 -funroll-loops -fPIC $(OPTIMIZE) -fomit-frame-pointer
|
||||
+CCFLAGS += -c -DNeedFunctionPrototypes=1 -fPIC $(OPTIMIZE)
|
||||
|
||||
LD = $(CC)
|
||||
|
||||
@@ -213,16 +215,18 @@
|
||||
$(SRC)/short_term.c \
|
||||
$(SRC)/table.c
|
||||
ifeq (${OSARCH},Linux)
|
||||
-ifneq ($(shell uname -m),x86_64)
|
||||
-ifneq ($(shell uname -m),ppc)
|
||||
-ifneq ($(shell uname -m),alpha)
|
||||
-ifneq ($(shell uname -m),sparc64)
|
||||
+ifneq ($(PROC),x86_64)
|
||||
+ifneq ($(PROC),ppc)
|
||||
+ifneq ($(PROC),alpha)
|
||||
+ifneq ($(PROC),sparc64)
|
||||
+ifneq ($(PROC),mipsel)
|
||||
GSM_SOURCES+= $(SRC)/k6opt.s
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
+endif
|
||||
|
||||
TOAST_SOURCES = $(SRC)/toast.c \
|
||||
$(SRC)/toast_lin.c \
|
||||
@@ -269,16 +273,18 @@
|
||||
$(SRC)/table.o
|
||||
|
||||
ifeq (${OSARCH},Linux)
|
||||
-ifneq ($(shell uname -m), x86_64)
|
||||
-ifneq ($(shell uname -m), ppc)
|
||||
-ifneq ($(shell uname -m), alpha)
|
||||
-ifneq ($(shell uname -m), sparc64)
|
||||
+ifneq ($(PROC), x86_64)
|
||||
+ifneq ($(PROC), ppc)
|
||||
+ifneq ($(PROC), alpha)
|
||||
+ifneq ($(PROC), sparc64)
|
||||
+ifneq ($(PROC), mipsel)
|
||||
GSM_OBJECTS+= $(SRC)/k6opt.o
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
+endif
|
||||
|
||||
TOAST_OBJECTS = $(SRC)/toast.o \
|
||||
$(SRC)/toast_lin.o \
|
||||
diff -ruN asterisk-1.0.7-orig/codecs/ilbc/Makefile asterisk-1.0.7-2/codecs/ilbc/Makefile
|
||||
--- asterisk-1.0.7-orig/codecs/ilbc/Makefile 2004-08-29 19:40:58.000000000 +0200
|
||||
+++ asterisk-1.0.7-2/codecs/ilbc/Makefile 2005-03-19 17:38:06.000000000 +0100
|
||||
@@ -1,5 +1,5 @@
|
||||
ARCH=$(PROC)
|
||||
-CFLAGS+=-Wall -fPIC -O3 -funroll-loops -fomit-frame-pointer
|
||||
+CFLAGS+=-Wall -fPIC $(OPTIMIZE)
|
||||
LIB=libilbc.a
|
||||
|
||||
OBJS= anaFilter.o iCBSearch.o packing.o \
|
||||
@@ -12,8 +12,8 @@
|
||||
|
||||
|
||||
$(LIB): $(OBJS)
|
||||
- ar cr $(LIB) $(OBJS)
|
||||
- ranlib $(LIB)
|
||||
+ $(AR) cr $(LIB) $(OBJS)
|
||||
+ $(RANLIB) $(LIB)
|
||||
|
||||
clean:
|
||||
rm -f $(LIB) *.o
|
||||
diff -ruN asterisk-1.0.7-orig/codecs/lpc10/Makefile asterisk-1.0.7-2/codecs/lpc10/Makefile
|
||||
--- asterisk-1.0.7-orig/codecs/lpc10/Makefile 2004-08-31 18:33:00.000000000 +0200
|
||||
+++ asterisk-1.0.7-2/codecs/lpc10/Makefile 2005-03-19 17:38:06.000000000 +0100
|
||||
@@ -31,6 +31,7 @@
|
||||
ifneq ($(PROC),ppc)
|
||||
ifneq ($(PROC),x86_64)
|
||||
ifneq ($(PROC),alpha)
|
||||
+ifneq ($(PROC),mipsel)
|
||||
#The problem with sparc is the best stuff is in newer versions of gcc (post 3.0) only.
|
||||
#This works for even old (2.96) versions of gcc and provides a small boost either way.
|
||||
#A ultrasparc cpu is really v9 but the stock debian stable 3.0 gcc doesn.t support it.
|
||||
@@ -46,6 +47,7 @@
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
+endif
|
||||
|
||||
LIB = $(LIB_TARGET_DIR)/liblpc10.a
|
||||
|
||||
@@ -62,7 +64,7 @@
|
||||
|
||||
$(LIB): $(OBJ)
|
||||
$(AR) cr $@ $(OBJ)
|
||||
- ranlib $@
|
||||
+ $(RANLIB) $@
|
||||
|
||||
clean:
|
||||
-rm -f *.o $(LIB)
|
||||
diff -ruN asterisk-1.0.7-orig/configs/modules.conf.sample asterisk-1.0.7-2/configs/modules.conf.sample
|
||||
--- asterisk-1.0.7-orig/configs/modules.conf.sample 2003-06-26 20:57:54.000000000 +0200
|
||||
+++ asterisk-1.0.7-2/configs/modules.conf.sample 2005-03-19 17:38:06.000000000 +0100
|
||||
@@ -23,8 +23,8 @@
|
||||
; Explicitly load the chan_modem.so early on to be sure
|
||||
; it loads before any of the chan_modem_* 's afte rit
|
||||
;
|
||||
-load => chan_modem.so
|
||||
-load => res_musiconhold.so
|
||||
+noload => chan_modem.so
|
||||
+noload => res_musiconhold.so
|
||||
;
|
||||
; Load either OSS or ALSA, not both
|
||||
; By default, load OSS only (automatically) and do not load ALSA
|
||||
@@ -36,4 +36,12 @@
|
||||
; exported to modules loaded after them.
|
||||
;
|
||||
[global]
|
||||
-chan_modem.so=yes
|
||||
+; chan_modem.so=yes
|
||||
+noload => app_adsiprog.so
|
||||
+noload => app_db.so
|
||||
+noload => app_hasnewvoicemail.so
|
||||
+noload => app_voicemail.so
|
||||
+noload => chan_skinny.so
|
||||
+noload => cdr_csv.so
|
||||
+noload => res_adsi.so
|
||||
+noload => res_agi.so
|
||||
diff -ruN asterisk-1.0.7-orig/db1-ast/Makefile asterisk-1.0.7-2/db1-ast/Makefile
|
||||
--- asterisk-1.0.7-orig/db1-ast/Makefile 2004-08-31 18:33:00.000000000 +0200
|
||||
+++ asterisk-1.0.7-2/db1-ast/Makefile 2005-03-19 17:38:06.000000000 +0100
|
||||
@@ -32,8 +32,8 @@
|
||||
|
||||
$(LIBDB): $(OBJS)
|
||||
rm -f $@
|
||||
- ar cq $@ $(OBJS)
|
||||
- ranlib $@
|
||||
+ $(AR) cq $@ $(OBJS)
|
||||
+ $(RANLIB) $@
|
||||
|
||||
$(LIBDBSO): $(SHOBJS)
|
||||
$(CC) -Wl,-O1 -Wl,--version-script=libdb.map -Wl,-soname=$(LIBDBSO) -shared -o $@ $^
|
||||
diff -ruN asterisk-1.0.7-orig/dns.c asterisk-1.0.7-2/dns.c
|
||||
--- asterisk-1.0.7-orig/dns.c 2004-06-22 22:11:15.000000000 +0200
|
||||
+++ asterisk-1.0.7-2/dns.c 2005-03-19 17:38:06.000000000 +0100
|
||||
@@ -153,7 +153,13 @@
|
||||
|
||||
#if defined(res_ninit)
|
||||
#define HAS_RES_NINIT
|
||||
-#else
|
||||
+#endif
|
||||
+
|
||||
+#ifdef __UCLIBC__
|
||||
+#undef HAS_RES_NINIT
|
||||
+#endif
|
||||
+
|
||||
+#ifndef HAS_RES_NINIT
|
||||
AST_MUTEX_DEFINE_STATIC(res_lock);
|
||||
#if 0
|
||||
#warning "Warning, res_ninit is missing... Could have reentrancy issues"
|
||||
diff -ruN asterisk-1.0.7-orig/res/Makefile asterisk-1.0.7-2/res/Makefile
|
||||
--- asterisk-1.0.7-orig/res/Makefile 2004-07-17 22:58:01.000000000 +0200
|
||||
+++ asterisk-1.0.7-2/res/Makefile 2005-03-19 17:58:17.000000000 +0100
|
||||
@@ -13,9 +13,9 @@
|
||||
|
||||
MODS=res_adsi.so res_features.so res_crypto.so res_musiconhold.so res_indications.so res_monitor.so \
|
||||
res_agi.so
|
||||
-MODS+=$(shell if [ -f "/usr/include/odbcinst.h" ]; then echo "res_odbc.so res_config_odbc.so"; fi)
|
||||
-MODS+=$(shell if [ -f "/usr/local/include/odbcinst.h" ]; then echo "res_odbc.so res_config_odbc.so"; fi)
|
||||
-MODS+=$(shell if [ -f "/usr/include/osp/osp.h" ]; then echo "res_osp.so"; fi)
|
||||
+#MODS+=$(shell if [ -f "/usr/include/odbcinst.h" ]; then echo "res_odbc.so res_config_odbc.so"; fi)
|
||||
+#MODS+=$(shell if [ -f "/usr/local/include/odbcinst.h" ]; then echo "res_odbc.so res_config_odbc.so"; fi)
|
||||
+#MODS+=$(shell if [ -f "/usr/include/osp/osp.h" ]; then echo "res_osp.so"; fi)
|
||||
|
||||
CRYPTO_LIBS=-lssl -lcrypto
|
||||
|
||||
diff -ruN asterisk-1.0.7-orig/stdtime/Makefile asterisk-1.0.7-2/stdtime/Makefile
|
||||
--- asterisk-1.0.7-orig/stdtime/Makefile 2003-11-05 07:19:41.000000000 +0100
|
||||
+++ asterisk-1.0.7-2/stdtime/Makefile 2005-03-19 17:38:06.000000000 +0100
|
||||
@@ -3,8 +3,8 @@
|
||||
all: libtime.a
|
||||
|
||||
libtime.a: $(OBJS)
|
||||
- ar rv $@ $(OBJS)
|
||||
- ranlib $@
|
||||
+ $(AR) rv $@ $(OBJS)
|
||||
+ $(RANLIB) $@
|
||||
|
||||
install:
|
||||
|
||||
diff -urN asterisk-1.0.7.old/codecs/Makefile asterisk-1.0.7/codecs/Makefile
|
||||
--- asterisk-1.0.7.old/codecs/Makefile 2005-04-10 19:40:28.000000000 +0200
|
||||
+++ asterisk-1.0.7/codecs/Makefile 2005-04-10 19:51:15.000000000 +0200
|
||||
@@ -19,7 +19,6 @@
|
||||
#MODG723=codec_g723_1.so codec_g723_1b.so
|
||||
#MODG723=$(shell [ -f g723.1/coder.c ] && echo "codec_g723_1.so")
|
||||
#MODG723+=$(shell [ -f g723.1b/coder2.c ] && echo "codec_g723_1b.so")
|
||||
-MODSPEEX=codec_speex.so
|
||||
MODILBC=$(shell [ -f ilbc/iLBC_decode.h ] && echo "codec_ilbc.so")
|
||||
CFLAGS+=-fPIC
|
||||
#CFLAGS+=$(shell [ -f /usr/local/include/speex.h ] && echo "-I/usr/local/include")
|
1024
openwrt/package/asterisk/patches/mysql+postgres-support.diff
Normal file
1024
openwrt/package/asterisk/patches/mysql+postgres-support.diff
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user