diff options
author | 2009-08-15 20:25:12 +0000 | |
---|---|---|
committer | 2009-08-15 20:25:12 +0000 | |
commit | 7e66dc565a10d909044bb4bc58cdd7dbcf97b509 (patch) | |
tree | 4698791009fc737d0f4a280ece136a3c4ca2ea36 /x11-misc/xorg-edit/files/xorg-edit-08.08.06-makefile.patch | |
parent | net-im/ekg2: Depend on gettext instead of libintl as we need to compile the .... (diff) | |
download | sunrise-7e66dc565a10d909044bb4bc58cdd7dbcf97b509.tar.gz sunrise-7e66dc565a10d909044bb4bc58cdd7dbcf97b509.tar.bz2 sunrise-7e66dc565a10d909044bb4bc58cdd7dbcf97b509.zip |
x11-misc/xorg-edit: version bump
svn path=/sunrise/; revision=9016
Diffstat (limited to 'x11-misc/xorg-edit/files/xorg-edit-08.08.06-makefile.patch')
-rw-r--r-- | x11-misc/xorg-edit/files/xorg-edit-08.08.06-makefile.patch | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/x11-misc/xorg-edit/files/xorg-edit-08.08.06-makefile.patch b/x11-misc/xorg-edit/files/xorg-edit-08.08.06-makefile.patch new file mode 100644 index 000000000..a8d1fa908 --- /dev/null +++ b/x11-misc/xorg-edit/files/xorg-edit-08.08.06-makefile.patch @@ -0,0 +1,46 @@ +--- libxorgedit/Makefile 2008-08-05 18:46:23.000000000 +0200 ++++ libxorgedit/Makefile.new 2009-08-15 17:52:26.000000000 +0200 +@@ -6,10 +6,10 @@ + OUTPUT = ../libxorgedit.a + + # compiler +-CXX = g++ ++CXX ?= g++ + + # C++ compiler flags (-g -O2 -Wall) +-CXXFLAGS = -Wall -Wextra -O3 ++#CXXFLAGS = -Wall -Wextra -O3 + + # implementation + +--- xorgedit/Makefile 2008-08-06 20:29:54.000000000 +0200 ++++ xorgedit/Makefile.new 2009-08-15 20:11:11.000000000 +0200 +@@ -18,23 +18,23 @@ + INCLUDES = -I../ + + # C++ compiler flags (-g -O2 -Wall) +-CXXFLAGS = `wx-config --cxxflags` -O3 ++CXXFLAGS += `wx-config --cxxflags` + + # compiler +-CXX = `wx-config --cxx` ++CXX ?= `wx-config --cxx` + + # library paths +-LIBS = -L../ -lm -lxorgedit ++LIBS = -L../ -lm -lxorgedit `wx-config --libs` + + # compile flags +-LDFLAGS = `wx-config --libs` ++#LDFLAGS = `wx-config --libs` + + # implementation + + all: $(OUTPUT) + + $(OUTPUT): $(OBJECTS) +- $(CXX) -o $(OUTPUT) $(OBJECTS) $(LIBS) $(LDFLAGS) ++ $(CXX) $(LDFLAGS) -o $(OUTPUT) $(OBJECTS) $(LIBS) + + $(OBJECTS): $(SOURCES) + $(CXX) $(INCLUDES) -c $(SOURCES) $(CXXFLAGS) |