Changeset 83121 in webkit


Ignore:
Timestamp:
Apr 6, 2011 4:38:42 PM (13 years ago)
Author:
kevino@webkit.org
Message:

Reviewed by Darin Adler.

Make sure JS_EXPORT_PRIVATE is an empty define when we aren't using the export macros.

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

Location:
trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r83107 r83121  
     12011-04-06  Kevin Ollivier  <kevino@theolliviers.com>
     2       
     3        Reviewed by Darin Adler.
     4       
     5        Make sure JS_EXPORT_PRIVATE is an empty define when we aren't using the export macros.
     6       
     7        https://bugs.webkit.org/show_bug.cgi?id=27551
     8
     9        * config.h:
     10
    1112011-04-06  Oliver Hunt  <oliver@apple.com>
    212
  • trunk/Source/JavaScriptCore/config.h

    r81135 r83121  
    6060#endif
    6161
    62 #define WTF_EXPORT_PRIVATE JS_EXPORTDATA
    63 #define JS_EXPORT_PRIVATE JS_EXPORTDATA
     62#define WTF_EXPORT_PRIVATE
     63#define JS_EXPORT_PRIVATE
    6464
    6565#endif /* USE(EXPORT_MACROS) */
  • trunk/Source/WebCore/ChangeLog

    r83119 r83121  
     12011-04-06  Kevin Ollivier  <kevino@theolliviers.com>
     2
     3        Reviewed by Darin Adler.
     4
     5        Make sure JS_EXPORT_PRIVATE is an empty define when we aren't using the export macros.
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=27551
     8
     9        * config.h:
     10
    1112011-04-06  Simon Fraser  <simon.fraser@apple.com>
    212
  • trunk/Source/WebCore/config.h

    r81135 r83121  
    6565#define WEBKIT_EXPORTDATA __declspec(dllimport)
    6666#endif
    67 #define WTF_EXPORT_PRIVATE JS_EXPORTDATA
    68 #define JS_EXPORT_PRIVATE JS_EXPORTDATA
     67#define WTF_EXPORT_PRIVATE
     68#define JS_EXPORT_PRIVATE
    6969#define JS_EXPORTCLASS JS_EXPORTDATA
    7070#else
  • trunk/Tools/ChangeLog

    r83120 r83121  
     12011-04-06  Kevin Ollivier  <kevino@theolliviers.com>
     2
     3        Reviewed by Darin Adler.
     4
     5        Make sure JS_EXPORT_PRIVATE is an empty define when we aren't using the export macros.
     6       
     7        https://bugs.webkit.org/show_bug.cgi?id=27551
     8       
     9        * DumpRenderTree/config.h:
     10        * WebKitAPITest/config.h:
     11        * WebKitTestRunner/config.h:
     12
    1132011-04-06  Tony Chang  <tony@chromium.org>
    214
  • trunk/Tools/DumpRenderTree/config.h

    r81135 r83121  
    4949#endif
    5050
    51 #define WTF_EXPORT_PRIVATE JS_EXPORTDATA
    52 #define JS_EXPORT_PRIVATE JS_EXPORTDATA
     51#define WTF_EXPORT_PRIVATE
     52#define JS_EXPORT_PRIVATE
    5353
    5454#endif /* USE(EXPORT_MACROS) */
  • trunk/Tools/WebKitAPITest/config.h

    r81135 r83121  
    5050#endif
    5151
    52 #define WTF_EXPORT_PRIVATE JS_EXPORTDATA
    53 #define JS_EXPORT_PRIVATE JS_EXPORTDATA
     52#define WTF_EXPORT_PRIVATE
     53#define JS_EXPORT_PRIVATE
    5454
    5555#endif /* USE(EXPORT_MACROS) */
  • trunk/Tools/WebKitTestRunner/config.h

    r81500 r83121  
    5050#endif
    5151
    52 #define WTF_EXPORT_PRIVATE JS_EXPORTDATA
    53 #define JS_EXPORT_PRIVATE JS_EXPORTDATA
     52#define WTF_EXPORT_PRIVATE
     53#define JS_EXPORT_PRIVATE
    5454
    5555#endif /* USE(EXPORT_MACROS) */
Note: See TracChangeset for help on using the changeset viewer.