diff options
author | marcus <marcus@FreeBSD.org> | 2005-10-16 14:53:33 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2005-10-16 14:53:33 +0800 |
commit | 398b108962f8718f51696b79ad2aae34f8c45f9b (patch) | |
tree | 4ad22fb43c8e78fc7a66b5ed1f1fbbaaa90d2429 /x11-toolkits | |
parent | 0d3046f6ced6aed84de1fb913c91a09ad5a04340 (diff) | |
download | freebsd-ports-gnome-398b108962f8718f51696b79ad2aae34f8c45f9b.tar.gz freebsd-ports-gnome-398b108962f8718f51696b79ad2aae34f8c45f9b.tar.zst freebsd-ports-gnome-398b108962f8718f51696b79ad2aae34f8c45f9b.zip |
Make sure the PIC CFLAGS are properly used for all objects.
Reported by: Stefan 'Steve' Tell <stefan.tell@crashmail.de>
Diffstat (limited to 'x11-toolkits')
-rw-r--r-- | x11-toolkits/scintilla/files/patch-aa | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/x11-toolkits/scintilla/files/patch-aa b/x11-toolkits/scintilla/files/patch-aa index 0b7f4d4f9ed0..1fbdc0407b85 100644 --- a/x11-toolkits/scintilla/files/patch-aa +++ b/x11-toolkits/scintilla/files/patch-aa @@ -1,5 +1,5 @@ ---- makefile.orig Fri Jul 9 02:56:56 2004 -+++ makefile Fri Jul 9 03:08:57 2004 +--- makefile.orig Fri Oct 15 19:41:26 2004 ++++ makefile Sun Oct 16 02:51:33 2005 @@ -8,16 +8,17 @@ # To force GTK+ 1 build, define GTK1 on the make command line. @@ -21,7 +21,7 @@ vpath %.h ../src ../include vpath %.cxx ../src -@@ -32,31 +33,31 @@ +@@ -32,33 +33,33 @@ endif ifdef DEBUG @@ -58,10 +58,13 @@ - $(CC) `$(CONFIGFLAGS)` $(CXXFLAGS) -c $< + $(CC) $(PICFLAGS) `$(CONFIGFLAGS)` $(CXXFLAGS) -c $< .c.o: - $(CCOMP) `$(CONFIGFLAGS)` $(CXXFLAGS) -w -c $< +- $(CCOMP) `$(CONFIGFLAGS)` $(CXXFLAGS) -w -c $< ++ $(CCOMP) $(PICFLAGS) `$(CONFIGFLAGS)` $(CXXFLAGS) -w -c $< + #++Autogenerated -- run src/LexGen.py to regenerate + #**LEXOBJS=\\\n\(\*.o \) @@ -72,7 +73,7 @@ - LexVerilog.o LexYAML.o + LexTeX.o LexVB.o LexVerilog.o LexVHDL.o LexYAML.o #--Autogenerated -- end of automatically generated section -all: $(COMPLIB) |