Update to 1.35.
This commit is contained in:
parent
32284a5774
commit
90f02c1798
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=37783
4 changed files with 18 additions and 7 deletions
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= scintilla
|
||||
PORTVERSION= 1.34
|
||||
PORTVERSION= 1.35
|
||||
CATEGORIES= x11-toolkits
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
|
||||
http://www.scintilla.org/
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (scite134.tgz) = e23ddd779fef4d715d066611027beaba
|
||||
MD5 (scite135.tgz) = fd5ec4ad8893d1d545aed0aea908a89f
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
|
||||
$FreeBSD$
|
||||
|
||||
--- makefile.orig Wed Nov 8 11:50:52 2000
|
||||
+++ makefile Wed Jan 10 14:54:45 2001
|
||||
@@ -5,10 +5,11 @@
|
||||
--- makefile.orig Tue Jan 30 02:52:54 2001
|
||||
+++ makefile Tue Jan 30 11:14:12 2001
|
||||
@@ -5,38 +5,42 @@
|
||||
# GNU make does not like \r\n line endings so should be saved to CVS in binary form.
|
||||
|
||||
.SUFFIXES: .cxx .o .h .a
|
||||
|
@ -18,12 +18,22 @@ $FreeBSD$
|
|||
|
||||
vpath %.h ../src ../include
|
||||
vpath %.cxx ../src
|
||||
@@ -25,20 +26,23 @@
|
||||
|
||||
INCLUDEDIRS=-I ../include -I ../src
|
||||
-CXXBASEFLAGS= -DGTK -DSCI_LEXER -W -Wall
|
||||
+CXXBASEFLAGS= -DGTK -DSCI_LEXER -W -Wall $(shell $(GTK_CONFIG) --cflags)
|
||||
|
||||
ifdef DEBUG
|
||||
-CXXFLAGS=-DDEBUG $(CXXBASEFLAGS)
|
||||
+CXXFLAGS+=-DDEBUG $(CXXBASEFLAGS)
|
||||
else
|
||||
-CXXFLAGS=-DNDEBUG $(CXXBASEFLAGS)
|
||||
+CXXFLAGS+=-DNDEBUG $(CXXBASEFLAGS)
|
||||
endif
|
||||
|
||||
.cxx.o:
|
||||
- $(CC) `gtk-config --cflags` $(INCLUDEDIRS) $(CXXFLAGS) -c $< -o $@
|
||||
+ $(CC) -DPIC -fPIC -fpic `$(GTK_CONFIG) --cflags` $(INCLUDEDIRS) $(CXXFLAGS) -c $< -o $@
|
||||
+ $(CC) -DPIC -fPIC -fpic $(INCLUDEDIRS) $(CXXFLAGS) -c $< -o $@
|
||||
|
||||
LEXOBJS = LexConf.o LexCPP.o LexHTML.o LexLua.o LexOthers.o LexPascal.o \
|
||||
LexPerl.o LexPython.o LexSQL.o LexVB.o
|
||||
|
|
|
@ -3,6 +3,7 @@ include/scintilla/KeyWords.h
|
|||
include/scintilla/Platform.h
|
||||
include/scintilla/PosRegExp.h
|
||||
include/scintilla/PropSet.h
|
||||
include/scintilla/SString.h
|
||||
include/scintilla/SciLexer.h
|
||||
include/scintilla/Scintilla.h
|
||||
include/scintilla/ScintillaWidget.h
|
||||
|
|
Loading…
Reference in a new issue