1
0
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:
Vanilla I. Shu 2001-11-04 10:04:08 +00:00
parent c52de03879
commit cc4e72b402
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=49557
3 changed files with 19 additions and 2 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= gliv
PORTVERSION= 1.2
PORTVERSION= 1.3.1
CATEGORIES= graphics
MASTER_SITES= http://gliv.tuxfamily.org/

View File

@ -1 +1 @@
MD5 (gliv-1.2.tar.bz2) = c37f5749b0528ae3882f378545785aa9
MD5 (gliv-1.3.1.tar.bz2) = 713433627e805ffe3265a1ec00ec2a41

View 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