summaryrefslogtreecommitdiff
path: root/graphics/glitz/patches/patch-ab
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2006-07-04 15:12:58 +0000
committerdrochner <drochner@pkgsrc.org>2006-07-04 15:12:58 +0000
commit099cfd5568bb80d511f2d4252ffc0bb14b6b2b8c (patch)
treeb604c900336847c1c9f5cb093c402e84f1aaee7d /graphics/glitz/patches/patch-ab
parentdea60513759991a56bced59b9df118d72618cebb (diff)
downloadpkgsrc-099cfd5568bb80d511f2d4252ffc0bb14b6b2b8c.tar.gz
update to 0.5.6
changes: New GL_EXT_framebuffer_object interface. Add WGL backend. New radial gradient. YV12 surface support. misc fixes additional GL support optimization: avoid context switches
Diffstat (limited to 'graphics/glitz/patches/patch-ab')
-rw-r--r--graphics/glitz/patches/patch-ab17
1 files changed, 0 insertions, 17 deletions
diff --git a/graphics/glitz/patches/patch-ab b/graphics/glitz/patches/patch-ab
deleted file mode 100644
index 3d98afb0575..00000000000
--- a/graphics/glitz/patches/patch-ab
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-ab,v 1.1 2005/11/03 01:47:08 rillig Exp $
-
-Don't use the *f() math functions on Solaris. The Solaris preprocessor
-does not define the symbol "__sun__", so we have to check for "__sun",
-too. The latter is mentioned in the cpp(1) man page.
-
---- src/glitzint.h.orig 2005-07-04 12:33:01.000000000 +0200
-+++ src/glitzint.h 2005-11-03 02:12:47.808896500 +0100
-@@ -33,7 +33,7 @@
-
- #include "glitz.h"
-
--#if defined(__APPLE__) || defined(__sun__)
-+#if defined(__APPLE__) || defined(__sun__) || defined(__sun)
- # define floorf(a) floor (a)
- # define ceilf(a) ceil (a)
- # define sinf(a) sin (a)