summary refs log tree commit diff
path: root/pkgs/applications/audio/freewheeling/xml.patch
diff options
context:
space:
mode:
authorRaffael Mancini <raffael@mancini.lu>2014-09-26 17:20:02 +0200
committerRaffael Mancini <raffael@mancini.lu>2014-09-26 17:20:02 +0200
commit87dc6a2be603f2965b8b527dc3ef831d1bc483d2 (patch)
tree879e79e9da02b3d12078b048cebde5ef32a09452 /pkgs/applications/audio/freewheeling/xml.patch
parentd1c7ac1388084ddc6b260a88d221333b26eacd7e (diff)
downloadnixlib-87dc6a2be603f2965b8b527dc3ef831d1bc483d2.tar
nixlib-87dc6a2be603f2965b8b527dc3ef831d1bc483d2.tar.gz
nixlib-87dc6a2be603f2965b8b527dc3ef831d1bc483d2.tar.bz2
nixlib-87dc6a2be603f2965b8b527dc3ef831d1bc483d2.tar.lz
nixlib-87dc6a2be603f2965b8b527dc3ef831d1bc483d2.tar.xz
nixlib-87dc6a2be603f2965b8b527dc3ef831d1bc483d2.tar.zst
nixlib-87dc6a2be603f2965b8b527dc3ef831d1bc483d2.zip
Added Freewheeling
a live looping instrument for jack with MIDI support
revision r100 from subversion
Diffstat (limited to 'pkgs/applications/audio/freewheeling/xml.patch')
-rw-r--r--pkgs/applications/audio/freewheeling/xml.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/applications/audio/freewheeling/xml.patch b/pkgs/applications/audio/freewheeling/xml.patch
new file mode 100644
index 000000000000..fd9d4fb39fe4
--- /dev/null
+++ b/pkgs/applications/audio/freewheeling/xml.patch
@@ -0,0 +1,13 @@
+--- code-r100/src/Makefile.am	2014-09-25 23:44:41.043174832 +0200
++++ code-r100.new/src/Makefile.am	2014-09-26 01:21:03.750015888 +0200
+@@ -24,7 +24,8 @@
+ 
+ fweelindir = $(datadir)/fweelin
+ 
+-FWEELIN_CFLAGS = -I. -g -Wall -Wno-write-strings -Wno-non-virtual-dtor -D_REENTRANT -DPTHREADS -DNDEBUG -DVERSION=\"$(VERSION)\" -DFWEELIN_DATADIR=\"$(fweelindir)\" -DADDON_DIR=\"/usr/local/lib/jack\" -I/usr/include/freetype2 -I/usr/include/libxml2 -funroll-loops -finline-functions -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fstrict-aliasing -falign-loops=2 -falign-jumps=2 -falign-functions=2 -O9
++XML_CFLAGS = `xml2-config --cflags`
++FWEELIN_CFLAGS = -I. -g -Wall -Wno-write-strings -Wno-non-virtual-dtor -D_REENTRANT -DPTHREADS -DNDEBUG -DVERSION=\"$(VERSION)\" -DFWEELIN_DATADIR=\"$(fweelindir)\" -DADDON_DIR=\"/usr/local/lib/jack\" -I/usr/include/freetype2 $(XML_CFLAGS) -funroll-loops -finline-functions -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fstrict-aliasing -falign-loops=2 -falign-jumps=2 -falign-functions=2 -O9
+ 
+ AM_CFLAGS = $(CFLAGS) $(FWEELIN_CFLAGS)
+-AM_CXXFLAGS = $(CFLAGS) $(CXXFLAGS) $(FWEELIN_CFLAGS)
++AM_CXXFLAGS = $(CFLAGS) $(CXXFLAGS) $(FWEELIN_CFLAGS) ${libxml2_CFLAGS}