blob: bcef3954ee9e3017841a73e074e0c117c8e71bfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
Index: configure.in
===================================================================
--- configure.in (revision 46)
+++ configure.in (working copy)
@@ -134,9 +134,9 @@
AC_SUBST(LIBCURL_LIBS) #needed by the osb-nrcore.pc.in
-CXXFLAGS="$CXXFLAGS -fno-exceptions -fno-rtti -nostdinc++"
+CXXFLAGS="$CXXFLAGS -fno-exceptions -fno-rtti -nostdinc++ -DLOG_DISABLED"
-CPPFLAGS="$CPPFLAGS -include \"\$(top_srcdir)/WebCorePrefix.h\" $PACKAGE_CFLAGS $X_CFLAGS $JSCORE_CFLAGS $DEFINES"
+CPPFLAGS="$CPPFLAGS -include \"\$(top_srcdir)/WebCorePrefix.h\" $PACKAGE_CFLAGS $X_CFLAGS $JSCORE_CFLAGS $DEFINES -DLOG_DISABLED"
LDFLAGS="$LDFLAGS $PACKAGE_LIBS $X_LIBS $JSCORE_LIBS \
-nodefaultlibs -lgcc -lc"
Index: kwiq/KWQEvent.cpp
===================================================================
--- kwiq/KWQEvent.cpp (revision 46)
+++ kwiq/KWQEvent.cpp (working copy)
@@ -759,10 +759,10 @@
#if 0
if (state & GDK_MOD1_MASK)
qstate |= Qt::AltButton;
-#endif
if (state & GDK_META_MASK)
qstate |= Qt::MetaButton;
+#endif
if (isKeypadEvent(event))
qstate |= Qt::Keypad;
|