mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 00:17:45 +00:00
Ports: Format patches without numbering, commit hash or version number
This commit is contained in:
parent
d69a79b03b
commit
d426c5a4b2
371 changed files with 806 additions and 1884 deletions
|
@ -0,0 +1,28 @@
|
|||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Kenneth Myhra <kennethmyhra@gmail.com>
|
||||
Date: Thu, 12 Aug 2021 20:59:25 +0200
|
||||
Subject: [PATCH] ntohl/ntohs is located in 'arpa/inet.h'
|
||||
|
||||
In Serenity ntohl/ntohs is located in arpa/inet.h, other stuff glib
|
||||
needs is included in 'netinet/in.h'.
|
||||
---
|
||||
gio/xdgmime/xdgmimecache.c | 5 +++++
|
||||
1 file changed, 5 insertions(+)
|
||||
|
||||
diff --git a/gio/xdgmime/xdgmimecache.c b/gio/xdgmime/xdgmimecache.c
|
||||
index f80f122..45220cc 100644
|
||||
--- a/gio/xdgmime/xdgmimecache.c
|
||||
+++ b/gio/xdgmime/xdgmimecache.c
|
||||
@@ -38,7 +38,12 @@
|
||||
#include <fnmatch.h>
|
||||
#include <assert.h>
|
||||
|
||||
+#ifdef __serenity__
|
||||
+#include <arpa/inet.h> /* for ntohl/ntohs */
|
||||
+#include <netinet/in.h>
|
||||
+#else
|
||||
#include <netinet/in.h> /* for ntohl/ntohs */
|
||||
+#endif
|
||||
|
||||
#ifdef HAVE_MMAP
|
||||
#include <sys/mman.h>
|
Loading…
Add table
Add a link
Reference in a new issue