diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2003-10-17 11:22:52 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2003-10-17 11:22:52 +0000 |
commit | f01a970a4ec80d0f3ed1b1bdb091b764dcbde9b2 (patch) | |
tree | 0aca8a0e8a5d8ec07e8780b50ba45ca50b749e1f /net/asterisk-devel/files/patch-codecs::gsm::Makefile | |
parent | The port depends on an include file, not on a library. Revert back (diff) |
Add asterisk 0.5.0, an Open Source PBX and telephony toolkit.
Notes
Notes:
svn path=/head/; revision=91503
Diffstat (limited to 'net/asterisk-devel/files/patch-codecs::gsm::Makefile')
-rw-r--r-- | net/asterisk-devel/files/patch-codecs::gsm::Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/net/asterisk-devel/files/patch-codecs::gsm::Makefile b/net/asterisk-devel/files/patch-codecs::gsm::Makefile new file mode 100644 index 000000000000..0c9a35eecb6d --- /dev/null +++ b/net/asterisk-devel/files/patch-codecs::gsm::Makefile @@ -0,0 +1,25 @@ + +$FreeBSD$ + +--- codecs/gsm/Makefile.orig Sun Apr 27 21:13:11 2003 ++++ codecs/gsm/Makefile Fri Oct 17 11:59:00 2003 +@@ -54,8 +54,8 @@ + # CC = /usr/lang/acc + # CCFLAGS = -c -O + +-CC = gcc -ansi -pedantic $(OPTIMIZE) -march=$(PROC) -fschedule-insns2 -fomit-frame-pointer +-CCFLAGS += -c -DNeedFunctionPrototypes=1 -finline-functions -funroll-loops -fPIC ++CC ?= gcc ++CCFLAGS += -c -DNeedFunctionPrototypes=1 -finline-functions -funroll-loops -fPIC -ansi -pedantic $(OPTIMIZE) -fschedule-insns2 -fomit-frame-pointer + + LD = $(CC) + +@@ -140,7 +140,7 @@ + DEBUG = -DNDEBUG + ######### Remove -DNDEBUG to enable assertions. + +-CFLAGS = $(PG) $(CCFLAGS) $(SASR) $(DEBUG) $(MULHACK) $(FAST) \ ++CFLAGS += $(PG) $(CCFLAGS) $(SASR) $(DEBUG) $(MULHACK) $(FAST) \ + $(LTP_CUT) $(WAV49) $(K6OPT) $(CCINC) -I$(INC) + ######### It's $(CC) $(CFLAGS) + |