forked from NetBSD/pkgsrc
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Highlights: * Fixes to the new `statx()` calls - note that since GLib 2.65.2 uses `statx()` (if available) instead of `stat()`/`fstat()`/`lstat()`/`fstatat()`, syscall sandboxing for third party applications might need to be updated * Fix deadlock in `g_subprocess_communicate_async()` (work by Alexander Larsson) (#2182) * Add `%f`/microsecond placeholder support to `g_date_time_format()` (work by Johan Bjäreholt) (!1605) * Add `GUri` API for parsing, building and representing URIs according to [RFC 3986](https://tools.ietf.org/html/rfc3986) (work by Marc-Andre Lureau) (#110) * D-Bus credentials support on macOS (#507) * Year 2038 fixes involving new API in `GBookmarkFile` (#1931) For full details, see: https://gitlab.gnome.org/GNOME/glib/-/blob/2.66.0/NEWS
- Loading branch information
prlw1
committed
Sep 29, 2020
1 parent
43d0a70
commit cbbe6bc
Showing
8 changed files
with
40 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
$NetBSD: distinfo,v 1.14 2020/08/19 09:34:35 adam Exp $ | ||
$NetBSD: distinfo,v 1.15 2020/09/29 10:43:33 prlw1 Exp $ | ||
|
||
SHA1 (glib-2.64.5.tar.xz) = be12160d2b91a152721279d27b00f8affbf9501b | ||
RMD160 (glib-2.64.5.tar.xz) = f1d1dd687d98b796b0d6219e6053ced097034c15 | ||
SHA512 (glib-2.64.5.tar.xz) = a87537274619b6de88a0e68555059036ac18c748b5005c8d84728646b0db342fde0b8c5b303b9ad79f64d71ea4ed990d52a4fbd68cda3ca74aed5fe4d497e060 | ||
Size (glib-2.64.5.tar.xz) = 4778456 bytes | ||
SHA1 (glib-2.66.0.tar.xz) = f2bf625fa3f93be73841c4a6417adcc110ba09a8 | ||
RMD160 (glib-2.66.0.tar.xz) = 5f47925074f104798b423aa31377902b07c802e0 | ||
SHA512 (glib-2.66.0.tar.xz) = 358e6a840b722139593eb7825c3aa70153eb26036e05d13d3286bcc6d2e962c2b4ddcb0fe5c6728b89bfffbd178101e72c576081ae714326a272a9fc34ed953e | ||
Size (glib-2.66.0.tar.xz) = 4839236 bytes | ||
SHA1 (patch-meson.build) = 4f9d178950414e1537b48a552d63c9e551801999 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
$NetBSD: patch-gio_gcredentialsprivate.h,v 1.3 2018/10/19 16:44:15 leot Exp $ | ||
$NetBSD: patch-gio_gcredentialsprivate.h,v 1.4 2020/09/29 10:43:33 prlw1 Exp $ | ||
|
||
NetBSD has G_CREDENTIALS_SOCKET_GET_CREDENTIALS_SUPPORTED. | ||
|
||
--- gio/gcredentialsprivate.h.orig 2017-07-13 23:03:38.000000000 +0000 | ||
--- gio/gcredentialsprivate.h.orig 2020-08-18 10:52:24.847177300 +0000 | ||
+++ gio/gcredentialsprivate.h | ||
@@ -47,7 +47,7 @@ | ||
@@ -134,7 +134,7 @@ | ||
#define G_CREDENTIALS_USE_NETBSD_UNPCBID 1 | ||
#define G_CREDENTIALS_NATIVE_TYPE G_CREDENTIALS_TYPE_NETBSD_UNPCBID | ||
#define G_CREDENTIALS_NATIVE_SIZE (sizeof (struct unpcbid)) | ||
-/* #undef G_CREDENTIALS_UNIX_CREDENTIALS_MESSAGE_SUPPORTED */ | ||
+#define G_CREDENTIALS_SOCKET_GET_CREDENTIALS_SUPPORTED 1 | ||
#define G_CREDENTIALS_SPOOFING_SUPPORTED 1 | ||
#define G_CREDENTIALS_HAS_PID 1 | ||
|
||
#elif defined(__OpenBSD__) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters