aboutsummaryrefslogtreecommitdiff
path: root/games/gtkradiant/files
diff options
context:
space:
mode:
authorAlexey Dokuchaev <danfe@FreeBSD.org>2023-02-14 05:59:28 +0000
committerAlexey Dokuchaev <danfe@FreeBSD.org>2023-02-14 05:59:28 +0000
commit77ed2a8a5a0908bc06e9258dda820bf656eb27a0 (patch)
treed812ae50c7eb8bf3613c73fc2ffffe371be7a67b /games/gtkradiant/files
parentf8d7a14f6f3e380d68193cc2dc778503b334052f (diff)
downloadports-77ed2a8a5a0908bc06e9258dda820bf656eb27a0.tar.gz
ports-77ed2a8a5a0908bc06e9258dda820bf656eb27a0.zip
Diffstat (limited to 'games/gtkradiant/files')
-rw-r--r--games/gtkradiant/files/patch-tools_quake3_q3data_md3lib.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/games/gtkradiant/files/patch-tools_quake3_q3data_md3lib.c b/games/gtkradiant/files/patch-tools_quake3_q3data_md3lib.c
new file mode 100644
index 000000000000..bc91176a3ebe
--- /dev/null
+++ b/games/gtkradiant/files/patch-tools_quake3_q3data_md3lib.c
@@ -0,0 +1,24 @@
+--- tools/quake3/q3data/md3lib.c.orig 2006-02-10 22:01:20 UTC
++++ tools/quake3/q3data/md3lib.c
+@@ -25,10 +25,6 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
+ #endif
+ #include "md3lib.h"
+
+-#if defined (__linux__) || defined (__APPLE__)
+-#define filelength Q_filelength
+-#endif
+-
+ /*
+ ** MD3_ComputeTagFromTri
+ */
+@@ -149,8 +145,8 @@ void MD3_Dump( const char *filename )
+ Error( "Unable to open '%s'\n", filename );
+ }
+
+- fileSize = filelength( fileno( fp ) );
+- _buffer = malloc( filelength( fileno( fp ) ) );
++ fileSize = Q_filelength( fp );
++ _buffer = malloc( fileSize );
+ fread( _buffer, fileSize, 1, fp );
+ fclose( fp );
+