Commit 60a7dd35 authored by hausmann@webkit.org's avatar hausmann@webkit.org

2009-04-14 Laszlo Gombos <laszlo.1.gombos@nokia.com>

        Reviewed by Simon Hausmann.

        https://bugs.webkit.org/show_bug.cgi?id=24841

        Fix linking against QtWebKit for Symbian and other platforms
        where the OS ABI distinguishes between an import or an export situation.

git-svn-id: svn://svn.chromium.org/blink/trunk@42515 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 2236aee8
......@@ -22,22 +22,14 @@
#include <QtCore/qglobal.h>
#if defined(Q_OS_WIN)
# if defined(QT_NODLL)
# undef QT_MAKEDLL
# undef QT_DLL
# elif defined(QT_MAKEDLL) /* create a Qt DLL library */
# if defined(QT_DLL)
# undef QT_DLL
# endif
# if defined(BUILD_WEBKIT)
# define QWEBKIT_EXPORT Q_DECL_EXPORT
# else
# define QWEBKIT_EXPORT Q_DECL_IMPORT
# endif
# elif defined(QT_DLL) /* use a Qt DLL library */
# define QWEBKIT_EXPORT Q_DECL_IMPORT
#if defined(QT_MAKEDLL) /* create a Qt DLL library */
# if defined(BUILD_WEBKIT)
# define QWEBKIT_EXPORT Q_DECL_EXPORT
# else
# define QWEBKIT_EXPORT Q_DECL_IMPORT
# endif
#elif defined(QT_DLL) /* use a Qt DLL library */
# define QWEBKIT_EXPORT Q_DECL_IMPORT
#endif
#if !defined(QWEBKIT_EXPORT)
......
2009-04-14 Laszlo Gombos <laszlo.1.gombos@nokia.com>
Reviewed by Simon Hausmann.
https://bugs.webkit.org/show_bug.cgi?id=24841
Fix linking against QtWebKit for Symbian and other platforms
where the OS ABI distinguishes between an import or an export situation.
* Api/qwebkitglobal.h: Instead of white-listing Win, remove the test.
2009-04-14 Kenneth Rohde Christiansen <kenneth.christiansen@openbossa.org>
Reviewed by Tor Arne Vestbø.
......
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