diff options
author | 2020-09-10 19:27:27 +0300 | |
---|---|---|
committer | 2021-06-08 15:31:55 -0400 | |
commit | 1697cc49c1dff7cfeff0a20faea32d197903b516 (patch) | |
tree | 11e2ab1b1fc0cb21fc54af0a8f8815ee4b49debd /games-rpg/egoboo/files | |
parent | games-rpg/egoboo: rebase patch to drop edos2unix (diff) | |
download | gentoo-1697cc49c1dff7cfeff0a20faea32d197903b516.tar.gz gentoo-1697cc49c1dff7cfeff0a20faea32d197903b516.tar.bz2 gentoo-1697cc49c1dff7cfeff0a20faea32d197903b516.zip |
games-rpg/egoboo: migrate to enet-1.3 support
Added patch that adapts package to use enet 1.3 API.
Closes: https://bugs.gentoo.org/628038
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Azamat H. Hackimov <azamat.hackimov@gmail.com>
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'games-rpg/egoboo/files')
-rw-r--r-- | games-rpg/egoboo/files/egoboo-2.8.1-enet-1.3.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/games-rpg/egoboo/files/egoboo-2.8.1-enet-1.3.patch b/games-rpg/egoboo/files/egoboo-2.8.1-enet-1.3.patch new file mode 100644 index 000000000000..dbde2db53861 --- /dev/null +++ b/games-rpg/egoboo/files/egoboo-2.8.1-enet-1.3.patch @@ -0,0 +1,21 @@ +https://bugs.gentoo.org/628038 +From: "Azamat H. Hackimov" <azamat.hackimov@gmail.com> +Date: Thu, 10 Sep 2020 18:39:45 +0300 +Subject: [PATCH] Add support for enet-1.3 +--- a/src/game/network.c ++++ b/src/game/network.c +@@ -1847,3 +1847,3 @@ + /// @todo Should I limit client bandwidth here?
+- net_myHost = enet_host_create( NULL, 1, 0, 0 );
++ net_myHost = enet_host_create( NULL, 1, 0, 0, 0 );
+ if ( NULL == net_myHost )
+@@ -1863,3 +1863,3 @@ + address.port = NET_EGOBOO_PORT;
+- net_gameHost = enet_host_connect( net_myHost, &address, NET_EGOBOO_NUM_CHANNELS );
++ net_gameHost = enet_host_connect( net_myHost, &address, NET_EGOBOO_NUM_CHANNELS, 0 );
+ if ( NULL == net_gameHost )
+@@ -1906,3 +1906,3 @@ + log_info( "sv_hostGame: Creating game on port %d\n", NET_EGOBOO_PORT );
+- net_myHost = enet_host_create( &address, MAX_PLAYER, 0, 0 );
++ net_myHost = enet_host_create( &address, MAX_PLAYER, 0, 0, 0 );
+ if ( NULL == net_myHost )
|