Title: [140920] trunk/Source/WebKit2
- Revision
- 140920
- Author
- [email protected]
- Date
- 2013-01-26 16:53:54 -0800 (Sat, 26 Jan 2013)
Log Message
Fix the development build.
* Shared/EntryPointUtilities/mac/XPCService/XPCServiceBootstrapper.Development.h:
(WebKit::XPCServiceEventHandler):
Use the right stringizer.
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (140919 => 140920)
--- trunk/Source/WebKit2/ChangeLog 2013-01-27 00:40:16 UTC (rev 140919)
+++ trunk/Source/WebKit2/ChangeLog 2013-01-27 00:53:54 UTC (rev 140920)
@@ -1,5 +1,13 @@
2013-01-26 Sam Weinig <[email protected]>
+ Fix the development build.
+
+ * Shared/EntryPointUtilities/mac/XPCService/XPCServiceBootstrapper.Development.h:
+ (WebKit::XPCServiceEventHandler):
+ Use the right stringizer.
+
+2013-01-26 Sam Weinig <[email protected]>
+
Refactor XPCService initialization to make it easier to add more services
https://bugs.webkit.org/show_bug.cgi?id=108015
Modified: trunk/Source/WebKit2/Shared/EntryPointUtilities/mac/XPCService/XPCServiceBootstrapper.Development.h (140919 => 140920)
--- trunk/Source/WebKit2/Shared/EntryPointUtilities/mac/XPCService/XPCServiceBootstrapper.Development.h 2013-01-27 00:40:16 UTC (rev 140919)
+++ trunk/Source/WebKit2/Shared/EntryPointUtilities/mac/XPCService/XPCServiceBootstrapper.Development.h 2013-01-27 00:53:54 UTC (rev 140920)
@@ -126,7 +126,7 @@
}
typedef void (*InitializerFunction)(const char* clientIdentifer, xpc_connection_t connection, mach_port_t serverPort, const char* uiProcessName);
- InitializerFunction initializerFunctionPtr = reinterpret_cast<InitializerFunction>(dlsym(frameworkLibrary, STRINGIZE(WEBKIT_XPC_SERVICE_INITIALIZER)));
+ InitializerFunction initializerFunctionPtr = reinterpret_cast<InitializerFunction>(dlsym(frameworkLibrary, STRINGIZE_VALUE_OF(WEBKIT_XPC_SERVICE_INITIALIZER)));
if (!initializerFunctionPtr) {
NSLog(@"Unable to find entry point in WebKit2.framework loaded from path: %s (Error: %s)", xpc_dictionary_get_string(event, "framework-executable-path"), dlerror());
exit(EXIT_FAILURE);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes