1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:37:36 +00:00

Ports: Add glib version 2.69.0

This commit is contained in:
Kenneth Myhra 2021-08-11 19:37:44 +02:00 committed by Linus Groh
parent cb10c62327
commit df176ca2d9
17 changed files with 562 additions and 0 deletions

View file

@ -0,0 +1,26 @@
From ba252fc514f8efa5af26fba2991caed73e2be771 Mon Sep 17 00:00:00 2001
From: Kenneth Myhra <kennethmyhra@gmail.com>
Date: Thu, 12 Aug 2021 20:25:48 +0200
Subject: [PATCH 03/12] gio/meson.build: Let glib know where our 'resolv.h' is
located
---
gio/meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gio/meson.build b/gio/meson.build
index b4ba866..849ea80 100644
--- a/gio/meson.build
+++ b/gio/meson.build
@@ -34,7 +34,7 @@ endif
network_libs = [ ]
network_args = [ ]
-if host_system != 'windows'
+if host_system not in ['windows', 'serenity']
# res_query()
res_query_test = '''#include <resolv.h>
int main (int argc, char ** argv) {
--
2.25.1