Expect GTK 2.10 libs to link against by default and remove GTK210 flag. If anyone wants to build on Windows against GTK 2.6 or 2.8 use 'make GTK280=1'.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2883 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Enrico Tröger 2008-08-13 18:38:40 +00:00
parent af7e8526c8
commit 3a8a600790
2 changed files with 7 additions and 3 deletions

View File

@ -2,6 +2,10 @@
* doc/geany.txt, doc/geany.html:
Add middle-click document closing to the Tips and Tricks appendix.
* src/makefile.win32:
Expect GTK 2.10 libs to link against by default and remove GTK210
flag. If anyone wants to build on Windows against GTK 2.6 or 2.8
use 'make GTK280=1'.
2008-08-13 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>

View File

@ -43,10 +43,10 @@ ALL_GTK_LIBS= \
#"$(PREFIX)/lib/asprintf.lib" \
#"$(PREFIX)/lib/charset.lib" \
ifdef GTK210
ALL_GTK_LIBS +=-lcairo -lpangocairo-1.0
else
ifdef GTK280
ALL_GTK_LIBS +=-liconv
else
ALL_GTK_LIBS +=-lcairo -lpangocairo-1.0
endif
WIN_LIBS=-mwindows -lkernel32 -limm32 -lshfolder -lshell32 \