- Timestamp:
- Mar 7, 2010, 9:50:22 PM (15 years ago)
- Location:
- trunk/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/3rdparty/javascriptcore/JavaScriptCore/API/JSBase.h
r561 r648 68 68 #if defined(BUILDING_WX__) 69 69 #define JS_EXPORT 70 #elif defined(__GNUC__) && !defined(__CC_ARM) && !defined(__ARMCC__) 70 #elif defined(__GNUC__) && !defined(__CC_ARM) && !defined(__ARMCC__) && !defined(__OS2__) 71 71 #define JS_EXPORT __attribute__((visibility("default"))) 72 72 #elif defined(_WIN32_WCE) … … 78 78 #define JS_EXPORT 79 79 #endif 80 #elif defined(WIN32) || defined(_WIN32) 80 #elif defined(WIN32) || defined(_WIN32) || defined(__OS2__) 81 81 /* 82 82 * TODO: Export symbols with JS_EXPORT when using MSVC. -
trunk/src/3rdparty/javascriptcore/JavaScriptCore/config.h
r561 r648 27 27 28 28 #if !defined(JS_EXPORTDATA) 29 #if PLATFORM(WIN_OS) && !defined(BUILDING_WX__) && !COMPILER(GCC)29 #if (PLATFORM(WIN_OS) && !defined(BUILDING_WX__) && !COMPILER(GCC)) || PLATFORM(OS2) 30 30 #if defined(BUILDING_JavaScriptCore) || defined(BUILDING_WTF) 31 31 #define JS_EXPORTDATA __declspec(dllexport) -
trunk/src/3rdparty/webkit/JavaScriptCore/API/JSBase.h
r561 r648 68 68 #if defined(BUILDING_WX__) 69 69 #define JS_EXPORT 70 #elif defined(__GNUC__) && !defined(__CC_ARM) && !defined(__ARMCC__) 70 #elif defined(__GNUC__) && !defined(__CC_ARM) && !defined(__ARMCC__) && !defined(__OS2__) 71 71 #define JS_EXPORT __attribute__((visibility("default"))) 72 72 #elif defined(_WIN32_WCE) … … 78 78 #define JS_EXPORT 79 79 #endif 80 #elif defined(WIN32) || defined(_WIN32) 80 #elif defined(WIN32) || defined(_WIN32) || defined(__OS2__) 81 81 /* 82 82 * TODO: Export symbols with JS_EXPORT when using MSVC. -
trunk/src/3rdparty/webkit/JavaScriptCore/config.h
r561 r648 26 26 #include <wtf/Platform.h> 27 27 28 #if PLATFORM(WIN_OS) && !defined(BUILDING_WX__) && !COMPILER(GCC)28 #if (PLATFORM(WIN_OS) && !defined(BUILDING_WX__) && !COMPILER(GCC)) || PLATFORM(OS2) 29 29 #if defined(BUILDING_JavaScriptCore) || defined(BUILDING_WTF) 30 30 #define JS_EXPORTDATA __declspec(dllexport) -
trunk/src/3rdparty/webkit/WebCore/config.h
r561 r648 26 26 #include <wtf/Platform.h> 27 27 28 #if PLATFORM(WIN_OS) && !defined(BUILDING_WX__) && !COMPILER(GCC)28 #if (PLATFORM(WIN_OS) && !defined(BUILDING_WX__) && !COMPILER(GCC)) || PLATFORM(OS2) 29 29 #if defined(BUILDING_JavaScriptCore) || defined(BUILDING_WTF) 30 30 #define JS_EXPORTDATA __declspec(dllexport) -
trunk/src/corelib/global/qglobal.h
r561 r648 1160 1160 1161 1161 #ifndef Q_DECL_EXPORT 1162 # if defined(Q_OS_WIN) || defined(Q_ CC_NOKIAX86) || defined(Q_CC_RVCT)1162 # if defined(Q_OS_WIN) || defined(Q_OS_OS2) || defined(Q_CC_NOKIAX86) || defined(Q_CC_RVCT) 1163 1163 # define Q_DECL_EXPORT __declspec(dllexport) 1164 1164 # elif defined(QT_VISIBILITY_AVAILABLE) … … 1170 1170 #endif 1171 1171 #ifndef Q_DECL_IMPORT 1172 # if defined(Q_OS_WIN) || defined(Q_ CC_NOKIAX86) || defined(Q_CC_RVCT)1172 # if defined(Q_OS_WIN) || defined(Q_OS_OS2) || defined(Q_CC_NOKIAX86) || defined(Q_CC_RVCT) 1173 1173 # define Q_DECL_IMPORT __declspec(dllimport) 1174 1174 # else … … 1178 1178 1179 1179 /* 1180 Create Qt DLL if QT_DLL is defined (Windows and Symbianonly)1181 */ 1182 1183 #if defined(Q_OS_WIN) || defined(Q_OS_SYMBIAN) 1180 Create Qt DLL if QT_DLL is defined (Windows, Symbian and OS/2 only) 1181 */ 1182 1183 #if defined(Q_OS_WIN) || defined(Q_OS_SYMBIAN) || defined(Q_OS_OS2) 1184 1184 # if defined(QT_NODLL) 1185 1185 # undef QT_MAKEDLL
Note:
See TracChangeset
for help on using the changeset viewer.