diff options
author | sobomax <sobomax@FreeBSD.org> | 2003-02-06 21:08:45 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2003-02-06 21:08:45 +0800 |
commit | f46f8c7e51ecf74ed0c0299797e9d82579e18f38 (patch) | |
tree | c0fff531c8083761165d250749baadb3eeb1de2d /x11-toolkits/scintilla | |
parent | 75629a9d90b6af0697a052abd8cda1edc9814acf (diff) | |
download | freebsd-ports-gnome-f46f8c7e51ecf74ed0c0299797e9d82579e18f38.tar.gz freebsd-ports-gnome-f46f8c7e51ecf74ed0c0299797e9d82579e18f38.tar.zst freebsd-ports-gnome-f46f8c7e51ecf74ed0c0299797e9d82579e18f38.zip |
Explicitly link gthread in to fix some application that use scintilla.
Diffstat (limited to 'x11-toolkits/scintilla')
-rw-r--r-- | x11-toolkits/scintilla/files/patch-aa | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11-toolkits/scintilla/files/patch-aa b/x11-toolkits/scintilla/files/patch-aa index 184d290151de..6ff389832c61 100644 --- a/x11-toolkits/scintilla/files/patch-aa +++ b/x11-toolkits/scintilla/files/patch-aa @@ -2,7 +2,7 @@ $FreeBSD$ --- makefile.orig Fri Jan 10 13:35:52 2003 -+++ makefile Thu Feb 6 10:48:09 2003 ++++ makefile Thu Feb 6 15:05:00 2003 @@ -6,8 +6,8 @@ # To build for GTK+ 2, define GTK2 on the make command line. @@ -60,10 +60,10 @@ $FreeBSD$ RESearch.o Style.o Indicator.o AutoComplete.o UniConversion.o XPM.o - $(AR) rc $@ $^ - $(RANLIB) $@ -+ $(AR) -o $@ $^ ++ $(AR) $(shell $(GTK_CONFIG) --libs gthread) -o $@ $^ + + $(LEXRLIB): $(LEXOBJS) -+ $(AR) -o $@ $^ ++ $(AR) $(shell $(GTK_CONFIG) --libs gthread) -o $@ $^ # Automatically generate header dependencies with "make deps" include deps.mak |