mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-27 10:03:20 +00:00
Upgrade to 1.3.1.
PR: ports/31117 Submitted by: maintainer
This commit is contained in:
parent
c52de03879
commit
cc4e72b402
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=49557
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= gliv
|
||||
PORTVERSION= 1.2
|
||||
PORTVERSION= 1.3.1
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= http://gliv.tuxfamily.org/
|
||||
|
||||
|
@ -1 +1 @@
|
||||
MD5 (gliv-1.2.tar.bz2) = c37f5749b0528ae3882f378545785aa9
|
||||
MD5 (gliv-1.3.1.tar.bz2) = 713433627e805ffe3265a1ec00ec2a41
|
||||
|
17
graphics/gliv/files/patch-rendering.c
Normal file
17
graphics/gliv/files/patch-rendering.c
Normal file
@ -0,0 +1,17 @@
|
||||
--- rendering.c.orig Thu Sep 13 12:55:36 2001
|
||||
+++ rendering.c Sun Sep 30 20:47:40 2001
|
||||
@@ -27,9 +27,14 @@
|
||||
#include <GL/glu.h>
|
||||
#include "gliv.h"
|
||||
|
||||
+/* FreeBSD has no fminf/fmin, so fake it */
|
||||
+#if 0
|
||||
#ifndef HAVE_FMINF
|
||||
#define fminf fmin
|
||||
#endif
|
||||
+#endif
|
||||
+
|
||||
+#define fminf(A, B) ((A) < (B) ? (A) : (B))
|
||||
|
||||
#ifndef HAVE_FABSF
|
||||
#define fabsf fabs
|
Loading…
Reference in New Issue
Block a user