mirror of
https://github.com/asterisk/asterisk.git
synced 2025-12-12 18:12:33 +00:00
Version 0.1.7 from FTP
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@261 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
12
CHANGES
12
CHANGES
@@ -1,3 +1,15 @@
|
|||||||
|
* Asterisk 0.1.7
|
||||||
|
-- Update configuration files and add some missing sounds
|
||||||
|
-- Added ability to include one context in another
|
||||||
|
-- Rewrite of PBX switching
|
||||||
|
-- Major mods to dialler application
|
||||||
|
-- Added Caller*ID spill reception
|
||||||
|
-- Added Dialogic VOX file format support
|
||||||
|
-- Added ADPCM Codec
|
||||||
|
-- Add Tormenta driver (RBS signalling)
|
||||||
|
-- Add Caller*ID spill creation
|
||||||
|
-- Rewrite of translation layer entirely
|
||||||
|
-- Add ability to run PBX without additional thread
|
||||||
* Asterisk 0.1.6
|
* Asterisk 0.1.6
|
||||||
-- Make app_dial handle a lack of translators smoothly
|
-- Make app_dial handle a lack of translators smoothly
|
||||||
-- Add ISDN4Linux support -- dtmf is weird...
|
-- Add ISDN4Linux support -- dtmf is weird...
|
||||||
|
|||||||
14
Makefile
14
Makefile
@@ -23,11 +23,14 @@ PROC=i586
|
|||||||
|
|
||||||
DEBUG=-g #-pg
|
DEBUG=-g #-pg
|
||||||
INCLUDE=-Iinclude -I../include
|
INCLUDE=-Iinclude -I../include
|
||||||
CFLAGS=-pipe -Wall -Werror -Wmissing-prototypes -Wmissing-declarations -O6 $(DEBUG) $(INCLUDE) -D_REENTRANT
|
CFLAGS=-pipe -Wall -Werror -Wmissing-prototypes -Wmissing-declarations -fomit-frame-pointer -O6 $(DEBUG) $(INCLUDE) -D_REENTRANT
|
||||||
CFLAGS+=$(shell if $(CC) -march=$(PROC) -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo "-march=$(PROC)"; fi)
|
CFLAGS+=$(shell if $(CC) -march=$(PROC) -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo "-march=$(PROC)"; fi)
|
||||||
|
CFLAGS += -DDO_CRASH
|
||||||
SUBDIRS=channels pbx apps codecs formats
|
SUBDIRS=channels pbx apps codecs formats
|
||||||
LIBS=-ldl -lpthread -lreadline -lncurses # -lefence
|
LIBS=-ldl -lpthread -lreadline -lncurses -lm # -lefence
|
||||||
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 asterisk.o
|
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 \
|
||||||
|
ulaw.o callerid.o fskmodem.o asterisk.o
|
||||||
CC=gcc
|
CC=gcc
|
||||||
INSTALL=install
|
INSTALL=install
|
||||||
|
|
||||||
@@ -58,11 +61,10 @@ datafiles: all
|
|||||||
for x in sounds/digits/*; do \
|
for x in sounds/digits/*; do \
|
||||||
install $$x /var/lib/asterisk/sounds/digits ; \
|
install $$x /var/lib/asterisk/sounds/digits ; \
|
||||||
done
|
done
|
||||||
for x in sounds/vm-* sounds/transfer* ; do \
|
for x in sounds/vm-* sounds/transfer* sounds/pbx-* sounds/ss-*; do \
|
||||||
install $$x /var/lib/asterisk/sounds ; \
|
install $$x /var/lib/asterisk/sounds ; \
|
||||||
done
|
done
|
||||||
|
install: all datafiles
|
||||||
install: all
|
|
||||||
mkdir -p $(MODULES_DIR)
|
mkdir -p $(MODULES_DIR)
|
||||||
for x in $(SUBDIRS); do $(MAKE) -C $$x install || exit 1 ; done
|
for x in $(SUBDIRS); do $(MAKE) -C $$x install || exit 1 ; done
|
||||||
install -d /usr/include/asterisk
|
install -d /usr/include/asterisk
|
||||||
|
|||||||
@@ -73,7 +73,7 @@ exten=#,2,Hangup ; Hang them up.
|
|||||||
;
|
;
|
||||||
; A timeout and "invalid extension rule"
|
; A timeout and "invalid extension rule"
|
||||||
;
|
;
|
||||||
exten=t,1,Playback,Goto,#|1 ; If they take too long, give up
|
exten=t,1,Goto,#|1 ; If they take too long, give up
|
||||||
exten=i,1,Playback,invalid ; "That's not valid, try again"
|
exten=i,1,Playback,invalid ; "That's not valid, try again"
|
||||||
|
|
||||||
;
|
;
|
||||||
|
|||||||
@@ -66,7 +66,7 @@ context=default
|
|||||||
type=peer
|
type=peer
|
||||||
username=asterisk
|
username=asterisk
|
||||||
secret=supersecret
|
secret=supersecret
|
||||||
host=209.16.236.91
|
host=216.207.245.57
|
||||||
;host=asterisk.linux-support.net
|
;host=asterisk.linux-support.net
|
||||||
;port=5036
|
;port=5036
|
||||||
;mask=255.255.255.255
|
;mask=255.255.255.255
|
||||||
|
|||||||
BIN
sounds/invalid.gsm
Executable file
BIN
sounds/invalid.gsm
Executable file
Binary file not shown.
BIN
sounds/pbx-transfer.gsm
Executable file
BIN
sounds/pbx-transfer.gsm
Executable file
Binary file not shown.
BIN
sounds/ss-noservice.gsm
Executable file
BIN
sounds/ss-noservice.gsm
Executable file
Binary file not shown.
Reference in New Issue
Block a user