diff options
author | 2007-07-07 01:02:03 +0000 | |
---|---|---|
committer | 2007-07-07 01:02:03 +0000 | |
commit | 7358cbc1a3ac55166f50a50a29d9b1cfa4fd1fb7 (patch) | |
tree | 65ee9f39a4ad3f0538c705bcb18f9fd32c93b1c2 /x11-misc/xorg-edit/files | |
parent | net-misc/sambascanner: Clean up uneeded patch from old version (diff) | |
download | sunrise-7358cbc1a3ac55166f50a50a29d9b1cfa4fd1fb7.tar.gz sunrise-7358cbc1a3ac55166f50a50a29d9b1cfa4fd1fb7.tar.bz2 sunrise-7358cbc1a3ac55166f50a50a29d9b1cfa4fd1fb7.zip |
x11-misc/xorg-edit: Version bump
svn path=/sunrise/; revision=4175
Diffstat (limited to 'x11-misc/xorg-edit/files')
-rw-r--r-- | x11-misc/xorg-edit/files/xorg-edit-07.06.15-makefile.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/x11-misc/xorg-edit/files/xorg-edit-07.06.15-makefile.patch b/x11-misc/xorg-edit/files/xorg-edit-07.06.15-makefile.patch new file mode 100644 index 000000000..f539524da --- /dev/null +++ b/x11-misc/xorg-edit/files/xorg-edit-07.06.15-makefile.patch @@ -0,0 +1,28 @@ +--- xorg-edit/xorgedit/Makefile.orig 2007-07-06 20:21:51.000000000 -0400 ++++ xorg-edit/xorgedit/Makefile 2007-07-06 20:44:32.000000000 -0400 +@@ -17,21 +17,21 @@ + INCLUDES = -I../ + + # C++ compiler flags (-g -O2 -Wall) +-CXXFLAGS = `wx-config --cxxflags` ++CXXFLAGS += `wx-config --cxxflags` + + # compiler +-CXX = `wx-config --cxx` ++CXX ?= `wx-config --cxx` + + # library paths + LIBS = -L../ -lm -lxorgedit + + # compile flags +-LDFLAGS = `wx-config --libs` ++LDFLAGS += `wx-config --libs` + + # implementation + + all: $(OUTPUT) +- rm -f $(OBJECTS) $(OUTPUT) ++ rm -f $(OBJECTS) + + $(OUTPUT): $(OBJECTS) + $(CXX) -o $(OUTPUT) $(OBJECTS) $(LIBS) $(LDFLAGS) |