This repository was archived by the owner on Jun 24, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change
1
+ 2018-12-04 Tim Horton <
[email protected] >
2
+
3
+ Fix the watchOS build; stop unnecessarily linking CorePDF
4
+ https://bugs.webkit.org/show_bug.cgi?id=192356
5
+ <rdar://problem/46427844>
6
+
7
+ Reviewed by Wenson Hsieh.
8
+
9
+ * Configurations/WebKit.xcconfig:
10
+ * Platform/spi/ios/CorePDFSPI.h:
11
+
1
12
2018-12-03 Tim Horton <
[email protected] >
2
13
3
14
Make it possible to disable animated keyboard scrolling behavior
Original file line number Diff line number Diff line change @@ -53,8 +53,9 @@ WK_ASSERTION_SERVICES_LDFLAGS_cocoatouch = -framework AssertionServices;
53
53
WK_CARBON_LDFLAGS = $(WK_CARBON_LDFLAGS_$(WK_PLATFORM_NAME));
54
54
WK_CARBON_LDFLAGS_macosx = -framework Carbon;
55
55
56
- WK_CORE_PDF_LDFLAGS = $(WK_CORE_PDF_LDFLAGS_$(WK_COCOA_TOUCH));
57
- WK_CORE_PDF_LDFLAGS_cocoatouch = -framework CorePDF;
56
+ WK_CORE_PDF_LDFLAGS = $(WK_CORE_PDF_LDFLAGS_$(WK_PLATFORM_NAME));
57
+ WK_CORE_PDF_LDFLAGS_iphoneos = -framework CorePDF;
58
+ WK_CORE_PDF_LDFLAGS_iphonesimulator = -framework CorePDF;
58
59
59
60
WK_CORE_PREDICTION_LDFLAGS = $(WK_CORE_PREDICTION_LDFLAGS_$(WK_HAVE_CORE_PREDICTION));
60
61
WK_CORE_PREDICTION_LDFLAGS_YES = $(WK_MACOS_WEAK_FRAMEWORK) CorePrediction;
Original file line number Diff line number Diff line change 23
23
* THE POSSIBILITY OF SUCH DAMAGE.
24
24
*/
25
25
26
+ #if ENABLE(WKLEGACYPDFVIEW) || ENABLE(WKPDFVIEW)
27
+
26
28
#import < CoreGraphics/CoreGraphics.h>
27
29
#import < UIKit/UIKit.h>
28
30
@@ -139,3 +141,5 @@ typedef enum {
139
141
@end
140
142
141
143
#endif
144
+
145
+ #endif // ENABLE(WKLEGACYPDFVIEW) || ENABLE(WKPDFVIEW)
You can’t perform that action at this time.
0 commit comments