summaryrefslogtreecommitdiff
path: root/net/asterisk-bristuff/files/patch-agi::Makefile
diff options
context:
space:
mode:
authorMax Khon <fjoe@FreeBSD.org>2010-11-28 19:44:40 +0000
committerMax Khon <fjoe@FreeBSD.org>2010-11-28 19:44:40 +0000
commit46d90ed03174a5ca966b690198acea675a58d214 (patch)
tree499c5db38e6a12f5ab1b97617f20213183639134 /net/asterisk-bristuff/files/patch-agi::Makefile
parentAdd a note about asterisk update to 1.8 (diff)
The only thing that was missing in stock asterisk was lack of ISDN bri_net_ptmp
signalling that was implemented in asterisk 1.8 and libpri 1.4.11.
Diffstat (limited to 'net/asterisk-bristuff/files/patch-agi::Makefile')
-rw-r--r--net/asterisk-bristuff/files/patch-agi::Makefile25
1 files changed, 0 insertions, 25 deletions
diff --git a/net/asterisk-bristuff/files/patch-agi::Makefile b/net/asterisk-bristuff/files/patch-agi::Makefile
deleted file mode 100644
index 8fd449f57003..000000000000
--- a/net/asterisk-bristuff/files/patch-agi::Makefile
+++ /dev/null
@@ -1,25 +0,0 @@
---- agi/Makefile.orig Sat Dec 16 23:14:34 2006
-+++ agi/Makefile Wed Mar 28 11:13:21 2007
-@@ -13,7 +13,9 @@
-
- .PHONY: clean all uninstall
-
--AGIS=agi-test.agi eagi-test eagi-sphinx-test jukebox.agi xagi-test
-+AGIS_BIN=eagi-test eagi-sphinx-test xagi-test
-+AGIS_SCR=agi-test.agi jukebox.agi
-+AGIS=$(AGIS_SCR) $(AGIS_BIN)
-
- ifeq ($(OSARCH),SunOS)
- LIBS+=-lsocket -lnsl
-@@ -31,8 +33,9 @@ eagi-test: eagi-test.o strcompat.o
- eagi-sphinx-test: eagi-sphinx-test.o
-
- install: all
-- mkdir -p $(DESTDIR)$(AGI_DIR)
-- for x in $(AGIS); do $(INSTALL) -m 755 $$x $(DESTDIR)$(AGI_DIR) ; done
-+ $(MKDIR) -p $(DESTDIR)$(AGI_DIR)
-+ for x in $(AGIS_BIN); do $(BSD_INSTALL_PROGRAM) $$x $(DESTDIR)$(AGI_DIR) ; done
-+ for x in $(AGIS_SCR); do $(BSD_INSTALL_SCRIPT) $$x $(DESTDIR)$(AGI_DIR) ; done
-
- uninstall:
- for x in $(AGIS); do rm -f $(DESTDIR)$(AGI_DIR)/$$x ; done