diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2001-11-04 10:04:08 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2001-11-04 10:04:08 +0000 |
commit | cc4e72b402c536b66678f6d957ddcee720c9a6ab (patch) | |
tree | 480562ca4d96e877c802aaa48c7a88772c2974a7 /graphics/gliv | |
parent | Upgrade to 0.6.0 (diff) |
Upgrade to 1.3.1.
PR: ports/31117
Submitted by: maintainer
Diffstat (limited to 'graphics/gliv')
-rw-r--r-- | graphics/gliv/Makefile | 2 | ||||
-rw-r--r-- | graphics/gliv/distinfo | 2 | ||||
-rw-r--r-- | graphics/gliv/files/patch-rendering.c | 17 |
3 files changed, 19 insertions, 2 deletions
diff --git a/graphics/gliv/Makefile b/graphics/gliv/Makefile index ea9a8508cf08..7dcfb0eba2c2 100644 --- a/graphics/gliv/Makefile +++ b/graphics/gliv/Makefile @@ -6,7 +6,7 @@ # PORTNAME= gliv -PORTVERSION= 1.2 +PORTVERSION= 1.3.1 CATEGORIES= graphics MASTER_SITES= http://gliv.tuxfamily.org/ diff --git a/graphics/gliv/distinfo b/graphics/gliv/distinfo index 65c67c490b70..fc36e616798e 100644 --- a/graphics/gliv/distinfo +++ b/graphics/gliv/distinfo @@ -1 +1 @@ -MD5 (gliv-1.2.tar.bz2) = c37f5749b0528ae3882f378545785aa9 +MD5 (gliv-1.3.1.tar.bz2) = 713433627e805ffe3265a1ec00ec2a41 diff --git a/graphics/gliv/files/patch-rendering.c b/graphics/gliv/files/patch-rendering.c new file mode 100644 index 000000000000..49fa4a3155b4 --- /dev/null +++ b/graphics/gliv/files/patch-rendering.c @@ -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 |