1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-24 15:25:07 +00:00
serenity/Ports/glib/patches/0003-let-glib-know-where-our-resolv.h-is.patch
2021-08-14 22:32:00 +01:00

26 lines
712 B
Diff

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