head 1.3; access; symbols; locks; strict; comment @# @; 1.3 date 2008.03.09.09.12.10; author rse; state dead; branches; next 1.2; commitid kAXeZXK7OYIrKqUs; 1.2 date 2008.03.08.22.17.55; author rse; state Exp; branches; next 1.1; commitid JQXF7ReFZgrZ7nUs; 1.1 date 2008.03.08.21.37.18; author rse; state Exp; branches; next ; commitid 1IlZ3janT6u3UmUs; desc @@ 1.3 log @remove asterisk16 package @ text @Index: Makefile --- Makefile.orig 2008-01-29 18:22:47 +0100 +++ Makefile 2008-03-08 19:36:45 +0100 @@@@ -245,12 +245,6 @@@@ ASTCFLAGS+=-fsigned-char endif -ifeq ($(OSARCH),FreeBSD) - # -V is understood by BSD Make, not by GNU make. - BSDVERSION=$(shell make -V OSVERSION -f /usr/share/mk/bsd.port.subdir.mk) - ASTCFLAGS+=$(shell if test $(BSDVERSION) -lt 500016 ; then echo "-D_THREAD_SAFE"; fi) -endif - ifeq ($(OSARCH),NetBSD) ASTCFLAGS+=-pthread -I/usr/pkg/include endif Index: appconference-2.0.1/Makefile --- appconference-2.0.1/Makefile.orig 2008-02-26 17:05:57 +0100 +++ appconference-2.0.1/Makefile 2008-03-08 21:10:48 +0100 @@@@ -18,9 +18,9 @@@@ # INSTALL_PREFIX := -INSTALL_MODULES_DIR := $(INSTALL_PREFIX)/usr/lib/asterisk/modules +INSTALL_MODULES_DIR := $(INSTALL_PREFIX)/lib/asterisk/modules -ASTERISK_INCLUDE_DIR ?= ../asterisk/include +ASTERISK_INCLUDE_DIR ?= ../include REVISION = $(shell svnversion -n .) @@@@ -48,7 +48,7 @@@@ INCLUDE = -I$(ASTERISK_INCLUDE_DIR) DEBUG := -g -CFLAGS = -pipe -Wall -Wmissing-prototypes -Wmissing-declarations -MD -MP $(DEBUG) +CFLAGS = -pipe -MD -MP $(DEBUG) CPPFLAGS = $(INCLUDE) -D_REENTRANT -D_GNU_SOURCE -DREVISION=\"$(REVISION)\" #CFLAGS += -O2 #CFLAGS += -O3 -march=pentium3 -msse -mfpmath=sse,387 -ffast-math Index: appconference-2.0.1/app_conference.h --- appconference-2.0.1/app_conference.h.orig 2008-02-26 17:05:57 +0100 +++ appconference-2.0.1/app_conference.h 2008-03-08 19:36:45 +0100 @@@@ -44,6 +44,7 @@@@ #include /* asterisk includes */ +#include #include #include #include Index: asterisk-perl-0.10/Makefile.PL --- asterisk-perl-0.10/Makefile.PL.orig 2008-03-08 19:41:19 +0100 +++ asterisk-perl-0.10/Makefile.PL 2008-03-08 19:41:19 +0100 @@@@ -14,3 +14,4 @@@@ }, ); + Index: configure --- configure.orig 2008-02-19 18:33:55 +0100 +++ configure 2008-03-08 19:36:45 +0100 @@@@ -4043,12 +4043,6 @@@@ # note- does not work on FreeBSD case "${host_os}" in - freebsd*) - ac_default_prefix=/usr/local - CPPFLAGS=-I/usr/local/include - LDFLAGS=-L/usr/local/lib - ;; - *) ac_default_prefix=/usr if test ${sysconfdir} = '${prefix}/etc'; then Index: iax-0.2.2/src/Makefile.in --- iax-0.2.2/src/Makefile.in.orig 2001-11-13 18:45:14 +0100 +++ iax-0.2.2/src/Makefile.in 2008-03-08 19:36:45 +0100 @@@@ -71,7 +71,7 @@@@ PACKAGE = @@PACKAGE@@ RANLIB = @@RANLIB@@ VERSION = @@VERSION@@ -CFLAGS = -g -Wall -Wstrict-prototypes -I . -DDEBUG_SUPPORT -DDEBUG_DEFAULT $(UCFLAGS) +CFLAGS = -I . -DDEBUG_SUPPORT -DDEBUG_DEFAULT $(UCFLAGS) pkgdir = $(libdir) pkg_LTLIBRARIES = libiax.la @@@@ -304,12 +304,11 @@@@ install: - mkdir -p $(includedir)/iax - install -m 644 md5.h $(includedir)/iax - install -m 644 frame.h $(includedir)/iax - install -m 644 iax.h $(includedir)/iax - install -m 644 iax-client.h $(includedir)/iax - /sbin/ldconfig + mkdir -p $(DESTDIR)$(includedir)/iax + install -m 644 md5.h $(DESTDIR)$(includedir)/iax + install -m 644 frame.h $(DESTDIR)$(includedir)/iax + install -m 644 iax.h $(DESTDIR)$(includedir)/iax + install -m 644 iax-client.h $(DESTDIR)$(includedir)/iax # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. Index: iax-0.2.2/src/iax.c --- iax-0.2.2/src/iax.c.orig 2001-11-07 00:10:41 +0100 +++ iax-0.2.2/src/iax.c 2008-03-08 19:36:45 +0100 @@@@ -33,13 +33,11 @@@@ #include #include #include -#include #include #include #include #include #include -#include #include #include #include Index: main/Makefile --- main/Makefile.orig 2008-01-29 18:44:05 +0100 +++ main/Makefile 2008-03-08 19:36:45 +0100 @@@@ -82,10 +82,7 @@@@ endif ifeq ($(OSARCH),FreeBSD) - # -V is understood by BSD Make, not by GNU make. - BSDVERSION=$(shell make -V OSVERSION -f /usr/share/mk/bsd.port.subdir.mk) - AST_LIBS+=$(shell if test $(BSDVERSION) -lt 502102 ; then echo "-lc_r"; else echo "-pthread"; fi) - AST_LIBS+=-lcrypto + AST_LIBS+=-lpthread -lcrypto endif ifneq ($(findstring $(OSARCH), mingw32 cygwin ),) Index: channels/console_video.h --- channels/console_video.h.orig 2008-01-09 19:03:40 +0100 +++ channels/console_video.h 2008-03-08 23:06:34 +0100 @@@@ -28,10 +28,7 @@@@ "console {device}" #else -#include -#ifndef OLD_FFMPEG -#include /* requires a recent ffmpeg */ -#endif +#include #define CONSOLE_VIDEO_CMDS \ "console {videodevice|videocodec" \ @ 1.2 log @add more functionality @ text @@ 1.1 log @first cut for an Asterisk 1.6 package @ text @d138 15 @