Kaydet (Commit) e1c4e5ac authored tarafından Enrico Tröger's avatar Enrico Tröger

Applied patch to fix building with gcc 2.95, removed unneeded file from EXTRA_DIST.


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@632 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst d8c06b04
......@@ -12,6 +12,12 @@
* src/callbacks.c:
Fixed broken Find usage.
Put "No matches" message also in the message window.
* Makefile.am, geany_windres.rc, configure.in, src/Makefile.am,
scintilla/Makefile.am, src/callbacks.c, tagmanager/tm_work_object.c,
tagmanager/ctags.c, tagmanager/get.c:
Small changes to get cross compiling using mingw32 suite working.
* tagmanager/get.c: Applied patch to fix building with gcc 2.95
(closes #1528516, thanks).
2006-07-24 Enrico Tröger <enrico.troeger@uvena.de>
......
......@@ -8,7 +8,6 @@ EXTRA_DIST = \
geany.spec \
geany.glade \
geany_windres.rc \
geany_windres.h \
geany.gladep \
data/global.tags \
data/php.tags \
......
......@@ -331,12 +331,9 @@ static void directiveDefine (const int c)
static boolean directiveIf (const int c)
{
DebugStatement ( const boolean ignore0 = isIgnore (); )
const boolean ignore = pushConditional ((boolean) (c != '0'));
Cpp.directive.state = DRCTV_NONE;
DebugStatement ( debugCppNest (TRUE, Cpp.directive.nestLevel);
if (ignore != ignore0) debugCppIgnore (ignore); )
return ignore;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment