summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2025-11-20 01:54:53 +0100
committerJan Beich <jbeich@FreeBSD.org>2025-11-20 01:58:28 +0100
commita2c5de3bbc84d1d7e0a9bfe24298342e057d413e (patch)
tree376c58e14d0a5234ebfe67c6876cd404faf76f48
parentdevel/sdbus-cpp: update to 2.2.0 (diff)
games/openbor: update to 7757
Changes: https://github.com/DCurrent/openbor/compare/7eedd899...52921e77
-rw-r--r--games/openbor/Makefile4
-rw-r--r--games/openbor/distinfo6
-rw-r--r--games/openbor/files/patch-source_utils.c8
3 files changed, 9 insertions, 9 deletions
diff --git a/games/openbor/Makefile b/games/openbor/Makefile
index e197e424c2ad..aa2f54028cec 100644
--- a/games/openbor/Makefile
+++ b/games/openbor/Makefile
@@ -1,6 +1,6 @@
PORTNAME= openbor
# Hint: svn revision is git rev-list --count ${GH_TAGNAME}
-PORTVERSION?= 7743
+PORTVERSION?= 7757
PORTREVISION?= 0
CATEGORIES= games
@@ -38,7 +38,7 @@ PORTSCOUT= ignore:1
USE_GITHUB= yes
GH_ACCOUNT= DCurrent
-GH_TAGNAME?= 7eedd899
+GH_TAGNAME?= 52921e77
USES+= cpe gmake pkgconfig sdl
.if ${PORTVERSION} < 4433
diff --git a/games/openbor/distinfo b/games/openbor/distinfo
index 3d79bbce92a7..8f0de02321fb 100644
--- a/games/openbor/distinfo
+++ b/games/openbor/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1747671961
-SHA256 (DCurrent-openbor-7743-7eedd899_GH0.tar.gz) = ac900d3aa035e777f73000c05abdff19b8ea434cd72fbdd70708cc6615027cc4
-SIZE (DCurrent-openbor-7743-7eedd899_GH0.tar.gz) = 212650356
+TIMESTAMP = 1763600093
+SHA256 (DCurrent-openbor-7757-52921e77_GH0.tar.gz) = 7135009c809a3f7e440ad708553d806af099ec4e1fd0fb18bfbd0fcb16110f81
+SIZE (DCurrent-openbor-7757-52921e77_GH0.tar.gz) = 143043206
diff --git a/games/openbor/files/patch-source_utils.c b/games/openbor/files/patch-source_utils.c
index 432d628ddb4d..4ddf806e9963 100644
--- a/games/openbor/files/patch-source_utils.c
+++ b/games/openbor/files/patch-source_utils.c
@@ -6,14 +6,14 @@ source/utils.c:303:64: error: member reference base type 'int' is not a structur
writeToLogFile("Memory usage at exit: %u\n", mallinfo().arena);
~~~~~~~~~~^~~~~~
---- source/utils.c.orig 2024-04-23 23:32:41 UTC
+--- source/utils.c.orig 2025-11-07 17:12:42 UTC
+++ source/utils.c
-@@ -303,7 +303,7 @@ void *checkAlloc(void *ptr, size_t size, const char *f
+@@ -258,7 +258,7 @@ void *checkAlloc(void *ptr, size_t size, const char *f
"\n* Shutting Down *\n\n");
writeToLogFile("Out of memory!\n");
writeToLogFile("Allocation of size %i failed in function '%s' at %s:%i.\n", size, func, file, line);
--#if LINUX && !DARWIN
-+#if defined(__GLIBC__) || defined(ANDROID) || defined(VITA)
+-#if LINUX && !DARWIN && !ANDROID
++#if defined(__GLIBC__) || defined(VITA)
writeToLogFile("Memory usage at exit: %u\n", mallinfo2().arena);
#else
writeToLogFile("Memory usage at exit: %u\n", getUsedRam(BYTES));