gtk4: Fix darwin build

This commit is contained in:
Bobby Rong 2023-04-09 17:17:27 +08:00 committed by Vladimír Čunát
parent c6b639ec35
commit 96fb05e4e2
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA
2 changed files with 36 additions and 0 deletions

View file

@ -78,6 +78,11 @@ stdenv.mkDerivation rec {
sha256 = "6PysBLx3FbnaZnyRGl7o8mLiANHWpQrfI2RcqM/NAxE=";
};
patches = [
# https://github.com/NixOS/nixpkgs/pull/218143#issuecomment-1501059486
./patches/4.0-fix-darwin-build.patch
];
depsBuildBuild = [
pkg-config
];

View file

@ -0,0 +1,31 @@
diff --git a/gdk/macos/gdkmacospasteboard-private.h b/gdk/macos/gdkmacospasteboard-private.h
index fdeb936..c4b8666 100644
--- a/gdk/macos/gdkmacospasteboard-private.h
+++ b/gdk/macos/gdkmacospasteboard-private.h
@@ -27,6 +27,10 @@
G_BEGIN_DECLS
+#ifndef AVAILABLE_MAC_OS_X_VERSION_10_13_AND_LATER
+typedef NSString *NSPasteboardType;
+#endif
+
@interface GdkMacosPasteboardItemDataProvider : NSObject <NSPasteboardItemDataProvider>
{
GdkContentProvider *_contentProvider;
diff --git a/gdk/macos/gdkmacospasteboard.c b/gdk/macos/gdkmacospasteboard.c
index 66b3c9f..b9e0d8a 100644
--- a/gdk/macos/gdkmacospasteboard.c
+++ b/gdk/macos/gdkmacospasteboard.c
@@ -400,7 +400,11 @@ _gdk_macos_pasteboard_register_drag_types (NSWindow *window)
gdk_content_formats_get_gtypes (formats, &n_gtypes);
if (n_gtypes)
+#ifdef AVAILABLE_MAC_OS_X_VERSION_10_13_AND_LATER
[ret addObject:NSPasteboardTypeURL];
+#else
+ [ret addObject:[[NSString alloc] initWithUTF8String:"public.url"]];
+#endif
gdk_content_formats_unref (formats);
}