| /* |
| * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. |
| * |
| * This library is free software; you can redistribute it and/or |
| * modify it under the terms of the GNU Library General Public |
| * License as published by the Free Software Foundation; either |
| * version 2 of the License, or (at your option) any later version. |
| * |
| * This library is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| * Library General Public License for more details. |
| * |
| * You should have received a copy of the GNU Library General Public License |
| * along with this library; see the file COPYING.LIB. If not, write to |
| * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| * Boston, MA 02111-1307, USA. |
| * |
| */ |
| |
| #define KHTML_NO_XBL 1 |
| #define KHTML_XSLT 1 |
| |
| // Temporary defines to help the namespace merging project. |
| #define DOM WebCore |
| #define KDOM WebCore |
| #define KSVG WebCore |
| #define khtml WebCore |
| |
| #if WIN32 |
| |
| // Hack to match configuration of JavaScriptCore. |
| // Maybe there's a better way to do this. |
| #define USE_SYSTEM_MALLOC 1 |
| |
| // FIXME: Should probably just dump these eventually, but they're needed for now. |
| // We get these defines from some system place on OS X; probably better not to use them |
| // in WebCore code. |
| typedef unsigned uint; |
| typedef unsigned short ushort; |
| |
| #include <assert.h> |
| |
| #endif |
| |
| #ifdef __cplusplus |
| |
| // These undefs match up with defines in WebCorePrefix.h for Mac OS X. |
| // Helps us catch if anyone uses new or delete by accident in code and doesn't include "config.h". |
| #undef new |
| #undef delete |
| #include <kxmlcore/FastMalloc.h> |
| |
| #endif |