diff options
Diffstat (limited to 'graphics/gliv/files/patch-rendering.c')
-rw-r--r-- | graphics/gliv/files/patch-rendering.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/graphics/gliv/files/patch-rendering.c b/graphics/gliv/files/patch-rendering.c deleted file mode 100644 index 49fa4a3155b4..000000000000 --- a/graphics/gliv/files/patch-rendering.c +++ /dev/null @@ -1,17 +0,0 @@ ---- 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 |