Title: [197996] trunk/Source/WebKit2
Revision
197996
Author
[email protected]
Date
2016-03-10 22:47:10 -0800 (Thu, 10 Mar 2016)

Log Message

REGRESSION (r197986): Don't try to link to undefined $(WEBKIT_SYSTEM_INTERFACE_LIBRARY)

Follow-up build fix for:
    AX: Force allow user zoom
    <https://bugs.webkit.org/show_bug.cgi?id=155056>

Fixes the following build failure:
    ld: library not found for -l-lAccessibility
    clang: error: linker command failed with exit code 1 (use -v to see invocation)

* Configurations/WebKit.xcconfig: Remove
"-l$(WEBKIT_SYSTEM_INTERFACE_LIBRARY)" from OTHER_LDFLAGS since
that macro is not defined, and there is no need to link to
libWebKitSystemInterface.a.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (197995 => 197996)


--- trunk/Source/WebKit2/ChangeLog	2016-03-11 06:12:52 UTC (rev 197995)
+++ trunk/Source/WebKit2/ChangeLog	2016-03-11 06:47:10 UTC (rev 197996)
@@ -1,3 +1,20 @@
+2016-03-10  David Kilzer  <[email protected]>
+
+        REGRESSION (r197986): Don't try to link to undefined $(WEBKIT_SYSTEM_INTERFACE_LIBRARY)
+
+        Follow-up build fix for:
+            AX: Force allow user zoom
+            <https://bugs.webkit.org/show_bug.cgi?id=155056>
+
+        Fixes the following build failure:
+            ld: library not found for -l-lAccessibility
+            clang: error: linker command failed with exit code 1 (use -v to see invocation)
+
+        * Configurations/WebKit.xcconfig: Remove
+        "-l$(WEBKIT_SYSTEM_INTERFACE_LIBRARY)" from OTHER_LDFLAGS since
+        that macro is not defined, and there is no need to link to
+        libWebKitSystemInterface.a.
+
 2016-03-10  Jeremy Jones  <[email protected]>
 
         Set AVURLAssetUsesNoPersistentCacheKey on AVAsset to match caching policy.

Modified: trunk/Source/WebKit2/Configurations/WebKit.xcconfig (197995 => 197996)


--- trunk/Source/WebKit2/Configurations/WebKit.xcconfig	2016-03-11 06:12:52 UTC (rev 197995)
+++ trunk/Source/WebKit2/Configurations/WebKit.xcconfig	2016-03-11 06:47:10 UTC (rev 197996)
@@ -45,8 +45,8 @@
 
 OTHER_LDFLAGS = $(inherited) $(UNEXPORTED_SYMBOL_LDFLAGS) $(ASAN_OTHER_LDFLAGS) $(FRAMEWORK_AND_LIBRARY_LDFLAGS) $(OTHER_LDFLAGS_PLATFORM) -framework WebKitLegacy -sub_umbrella WebKitLegacy;
 OTHER_LDFLAGS_PLATFORM[sdk=macosx*] = -sub_umbrella WebCore;
-OTHER_LDFLAGS_PLATFORM[sdk=iphoneos*] = -l$(WEBKIT_SYSTEM_INTERFACE_LIBRARY) -lAccessibility;
-OTHER_LDFLAGS_PLATFORM[sdk=iphonesimulator*] = -l$(WEBKIT_SYSTEM_INTERFACE_LIBRARY) -lAccessibility;
+OTHER_LDFLAGS_PLATFORM[sdk=iphoneos*] = -lAccessibility;
+OTHER_LDFLAGS_PLATFORM[sdk=iphonesimulator*] = -lAccessibility;
 
 SECTORDER_FLAGS = $(SECTORDER_FLAGS_$(CONFIGURATION));
 SECTORDER_FLAGS_Production[sdk=iphoneos*] = -Wl,-order_file,$(SDKROOT)/AppleInternal/OrderFiles/WebKit.order;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to