summaryrefslogtreecommitdiff
path: root/graphics/xmms-scivi
diff options
context:
space:
mode:
authorAlejandro Pulver <alepulver@FreeBSD.org>2007-01-10 22:30:00 +0000
committerAlejandro Pulver <alepulver@FreeBSD.org>2007-01-10 22:30:00 +0000
commitab7a983cb525a0356a556aa032b1f917976b3db9 (patch)
treea589f6e6abe3d8be5eb9d1be22eac7119b6f0bb0 /graphics/xmms-scivi
parent- Fix building with GCC 4.x. (diff)
- Fix building with GCC 4.x.
Reported by: pointyhat
Notes
Notes: svn path=/head/; revision=182029
Diffstat (limited to 'graphics/xmms-scivi')
-rw-r--r--graphics/xmms-scivi/files/patch-src_glstuff.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/graphics/xmms-scivi/files/patch-src_glstuff.c b/graphics/xmms-scivi/files/patch-src_glstuff.c
new file mode 100644
index 000000000000..b5006875f0bb
--- /dev/null
+++ b/graphics/xmms-scivi/files/patch-src_glstuff.c
@@ -0,0 +1,21 @@
+--- src/glstuff.c.orig Wed Jan 10 19:23:52 2007
++++ src/glstuff.c Wed Jan 10 19:26:44 2007
+@@ -120,15 +120,15 @@
+
+ #define GET(_fatal_, _n_)\
+ if (!dontload){\
+- ((void*)(sc_##_n_)) = getaddr(#_n_); \
++ sc_##_n_ = (void *)getaddr(#_n_); \
+ if ((sc_##_n_) == NULL) { \
+- ((void*)(sc_##_n_)) = stub_func; \
++ sc_##_n_ = (void *)stub_func; \
+ eprintf("failed to get address of '%s'\n", #_n_);\
+ if ((_fatal_)) failed++;\
+ }\
+ /* eprintf("func %s @ %p\n", #_n_, sc_##_n_);*/ \
+ } else \
+- ((void*)(sc_##_n_)) = stub_func;
++ sc_##_n_ = (void *)stub_func;
+
+ getaddr = sc_glXGetProcAddress ?
+ ((void*)sc_glXGetProcAddress) :