Skip to content

Commit

Permalink
- implement cleaning spool dir (set interval and size)
Browse files Browse the repository at this point in the history
- implement reverse manager interface
- fix ua_b check
  • Loading branch information
Martin Vit committed Nov 14, 2012
1 parent 02e18a3 commit 4009f01
Show file tree
Hide file tree
Showing 13 changed files with 843 additions and 281 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
- implement cleaning spool dir (set interval and size)
- implement reverse manager interface

version 5.3.2 9.11.2012
=======================
- fix sip last response again - all 200 OK was accidentaly treated as answer to call so canceled calls instead of 487 code had 200 OK like answered calls
Expand Down
7 changes: 5 additions & 2 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,14 @@ headers = $(shell ls *.h -1 | tr "\n" " ")

#LDFLAGS := $(LDFLAGS) -static -static-libgcc

shared: LIBS=-lpthread -lpcap -lgzstream -lz -lvorbis -lvorbisenc -logg -lodbc -llfds -lmysqlclient #-lnids
shared: LIBS=-lpthread -lpcap -lgzstream -lz -lvorbis -lvorbisenc -logg -lodbc -llfds -lmysqlclient #-lcurl #-lnids
#shared: CFLAGS+= -DISCURL -DQUEUE_NONBLOCK2 -I /usr/local/include/mysql++/ -I /usr/include/mysql++/ -I /usr/include/mysql/ -Wall -I jitterbuffer/ -L/usr/lib/mysql -L/usr/local/lib/ -Lgzstream/ -Lliblfds.6/bin/ -L/usr/lib64/mysql -fPIC -g3
shared: CFLAGS+= -DQUEUE_NONBLOCK2 -I /usr/local/include/mysql++/ -I /usr/include/mysql++/ -I /usr/include/mysql/ -Wall -I jitterbuffer/ -L/usr/lib/mysql -L/usr/local/lib/ -Lgzstream/ -Lliblfds.6/bin/ -L/usr/lib64/mysql -fPIC -O2
shared: args = -O2 -Wall -march=$(GCCARCH)

static: LIBS=-static -L/usr/lib/mysql -L/usr/lib64/mysql -L/usr/lib/mysql -lodbc -lltdl -ldl -lrt -lz -lcrypt -lm -lssl -static-libstdc++ -static-libgcc -lpcap -L/usr/lib/mysql -lmysqlclient -lpthread -lgzstream -lz -lc -lvorbis -lvorbisenc -logg -llfds
#static: LIBS=-static -L/usr/lib/mysql -L/usr/lib64/mysql -L/usr/lib/mysql -lodbc -lltdl -ldl -lrt -lz -lcrypt -lm -lssl -static-libstdc++ -static-libgcc -lpcap -L/usr/lib/mysql -lmysqlclient -lpthread -lgzstream -lz -lc -lvorbis -lvorbisenc -logg -llfds # -lcurl -lidn -lssl -lcrypto -lrt
static: LIBS=-static -L/usr/lib/mysql -L/usr/lib64/mysql -L/usr/lib/mysql -lodbc -lltdl -ldl -lrt -lz -lcrypt -lm -lssl -static-libstdc++ -static-libgcc -lpcap -L/usr/lib/mysql -lmysqlclient -lpthread -lgzstream -lz -lc -lvorbis -lvorbisenc -logg -llfds
#static: CFLAGS+= -DISCURL -DQUEUE_NONBLOCK2 -I /usr/local/include/mysql++/ -I /usr/include/mysql++/ -I /usr/include/mysql/ -Wall -I jitterbuffer/ -L/usr/local/lib/ -Lgzstream/ -Lliblfds.6/bin/ -fPIC -O2
static: CFLAGS+= -DQUEUE_NONBLOCK2 -I /usr/local/include/mysql++/ -I /usr/include/mysql++/ -I /usr/include/mysql/ -Wall -I jitterbuffer/ -L/usr/local/lib/ -Lgzstream/ -Lliblfds.6/bin/ -fPIC -O2
static: args = -O2 -Wall -march=$(GCCARCH)

Expand Down
Loading

0 comments on commit 4009f01

Please sign in to comment.