diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-05-30 16:53:07 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-05-30 16:53:07 +0000 |
commit | 6bdcaa3ef5ed7875a8eb564471f4493557b63e20 (patch) | |
tree | 5e5caa895a575620dc863547735b890df57d0e57 /audio/cmt/files | |
parent | add ladspa (diff) |
add cmt 1.12
The Computer Music Toolkit (CMT) is a collection of LADSPA plugins
PR: 37970
Submitted by: Tilman Linneweh <tilman@arved.de>
Notes
Notes:
svn path=/head/; revision=60300
Diffstat (limited to 'audio/cmt/files')
-rw-r--r-- | audio/cmt/files/patch-makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/audio/cmt/files/patch-makefile b/audio/cmt/files/patch-makefile new file mode 100644 index 000000000000..6a7f997c68a9 --- /dev/null +++ b/audio/cmt/files/patch-makefile @@ -0,0 +1,22 @@ +--- makefile.orig Tue Sep 18 00:15:28 2001 ++++ makefile Sun May 12 00:46:39 2002 +@@ -12,9 +12,7 @@ + # GENERAL + # + +-INCLUDES = -I/usr/local/include/ +-CFLAGS = $(INCLUDES) -Wall -Werror -O3 -fPIC +-CXXFLAGS = $(CFLAGS) ++CXXFLAGS += -I/usr/local/include/ + PLUGIN_LIB = ../plugins/cmt.so + + ############################################################################### +@@ -61,7 +59,7 @@ + targets: $(PLUGIN_LIB) + + $(PLUGIN_LIB): $(PLUGIN_OBJECTS) +- $(CXX) -shared \ ++ $(CXX) ${CXXFLAGS} -shared \ + -o $(PLUGIN_LIB) \ + $(PLUGIN_OBJECTS) + |