From f53b3dad2fc76677319810944440f7058f375f63 Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Tue, 19 Mar 2013 18:40:56 +0100 Subject: added minor scinterm patches and cleaned up patch system * MinGW binaries are built from source bundles * patches are applied to the source bundle * so all necessary patches must be in the repository and distributed * use a leading number in patch names to ensure proper application order --- patches/030-scinterm-crosscompile.patch | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 patches/030-scinterm-crosscompile.patch (limited to 'patches/030-scinterm-crosscompile.patch') diff --git a/patches/030-scinterm-crosscompile.patch b/patches/030-scinterm-crosscompile.patch new file mode 100644 index 0000000..e4bcd46 --- /dev/null +++ b/patches/030-scinterm-crosscompile.patch @@ -0,0 +1,19 @@ +--- a/scintilla/scinterm/Makefile 2013-02-18 20:41:07.357813654 +0100 ++++ b/scintilla/scinterm/Makefile 2013-02-18 20:42:31.535828138 +0100 +@@ -2,6 +2,7 @@ + + .SUFFIXES: .cxx .c .o .h .a + ++AR = ar + CXX = g++ + INCLUDEDIRS = -I ../include -I ../src -I ../lexlib + CXXFLAGS = -Wall -Wno-missing-braces -Wno-char-subscripts -Wno-long-long \ +@@ -30,7 +31,7 @@ + CharacterSet.o LexerBase.o LexerModule.o LexerNoExceptions.o \ + LexerSimple.o PropSetSimple.o StyleContext.o WordList.o \ + $(lexers) ScintillaTerm.o +- ar rc $@ $^ ++ $(AR) rc $@ $^ + touch $@ + clean: + rm -f *.o $(scintilla) -- cgit v1.2.3