Changeset 128852 in webkit
- Timestamp:
- Sep 17, 2012, 11:34:55 PM (12 years ago)
- Location:
- trunk/Tools
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r128842 r128852 1 2012-09-17 Pratik Solanki <psolanki@apple.com> 2 3 DumpRenderTree and WebKitTestRunner should compile with -Wundef on Mac 4 https://bugs.webkit.org/show_bug.cgi?id=96973 5 6 Reviewed by Dan Bernstein. 7 8 * DumpRenderTree/mac/Configurations/Base.xcconfig: 9 * WebKitTestRunner/Configurations/Base.xcconfig: 10 * WebKitTestRunner/PlatformWebView.h: Use #ifdef __OBJC__ and not #if. 11 1 12 2012-09-17 Dirk Pranke <dpranke@chromium.org> 2 13 -
trunk/Tools/DumpRenderTree/mac/Configurations/Base.xcconfig
r122404 r128852 38 38 GCC_WARN_UNUSED_FUNCTION = YES 39 39 GCC_WARN_UNUSED_VARIABLE = YES 40 WARNING_CFLAGS = -Wall -W -Wno-unused-parameter 40 WARNING_CFLAGS = -Wall -W -Wno-unused-parameter -Wundef 41 41 LINKER_DISPLAYS_MANGLED_NAMES = YES; 42 42 -
trunk/Tools/WebKitTestRunner/Configurations/Base.xcconfig
r122404 r128852 38 38 GCC_WARN_UNUSED_FUNCTION = YES 39 39 GCC_WARN_UNUSED_VARIABLE = YES 40 WARNING_CFLAGS = -Wall -W -Wno-unused-parameter 40 WARNING_CFLAGS = -Wall -W -Wno-unused-parameter -Wundef 41 41 LINKER_DISPLAYS_MANGLED_NAMES = YES; 42 42 VALID_ARCHS = i386 x86_64; -
trunk/Tools/WebKitTestRunner/PlatformWebView.h
r123456 r128852 38 38 typedef QQuickView* PlatformWindow; 39 39 #elif defined(__APPLE__) && __APPLE__ 40 #if __OBJC__40 #ifdef __OBJC__ 41 41 @class WKView; 42 42 @class WebKitTestRunnerWindow;
Note:
See TracChangeset
for help on using the changeset viewer.