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

Ports: Format patches without numbering, commit hash or version number

This commit is contained in:
Tim Schumacher 2022-06-05 03:05:04 +02:00 committed by Linus Groh
parent d69a79b03b
commit d426c5a4b2
371 changed files with 806 additions and 1884 deletions

View file

@ -1,7 +1,7 @@
From c7106223c30a896a576c44ce735d4772c283afac Mon Sep 17 00:00:00 2001
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Jesse Buhagiar <jooster669@gmail.com>
Date: Fri, 25 Mar 2022 09:40:41 +1100
Subject: [PATCH 3/8] Engine: Add `<sys/select.h>` include for Serenity
Subject: [PATCH] Engine: Add `<sys/select.h>` include for Serenity
QuakeIII makes extensive use of the `select()` syscall for its' netcode.
It seems that Linux has this in a header that isn't `<sys/select.h>`
@ -13,7 +13,7 @@ like us, which results in an implicit declaration error.
3 files changed, 15 insertions(+)
diff --git a/code/qcommon/net_ip.c b/code/qcommon/net_ip.c
index bcccda20..ea940f59 100644
index bcccda2..ea940f5 100644
--- a/code/qcommon/net_ip.c
+++ b/code/qcommon/net_ip.c
@@ -81,6 +81,10 @@ static qboolean winsockInitialized = qfalse;
@ -45,7 +45,7 @@ index bcccda20..ea940f59 100644
====================
NET_OpenSocks
diff --git a/code/sys/con_tty.c b/code/sys/con_tty.c
index 58f178ad..74e1c60d 100644
index 58f178a..74e1c60 100644
--- a/code/sys/con_tty.c
+++ b/code/sys/con_tty.c
@@ -34,6 +34,10 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
@ -60,7 +60,7 @@ index 58f178ad..74e1c60d 100644
=============================================================
tty console routines
diff --git a/code/sys/sys_unix.c b/code/sys/sys_unix.c
index e0c63238..05f311bb 100644
index e0c6323..05f311b 100644
--- a/code/sys/sys_unix.c
+++ b/code/sys/sys_unix.c
@@ -39,6 +39,10 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
@ -74,6 +74,3 @@ index e0c63238..05f311bb 100644
qboolean stdinIsATTY;
// Used to determine where to store user-specific files
--
2.35.1