From 176d1c94fbb4d05c924d150c739dd9cdc1931d0f Mon Sep 17 00:00:00 2001 From: Akinori MUSHA Date: Thu, 21 Aug 2003 14:47:55 +0000 Subject: Fix preprocessor error for newer GCC. --- graphics/ruby-opengl/files/patch-glut.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 graphics/ruby-opengl/files/patch-glut.c (limited to 'graphics/ruby-opengl') diff --git a/graphics/ruby-opengl/files/patch-glut.c b/graphics/ruby-opengl/files/patch-glut.c new file mode 100644 index 000000000000..828ad84cc652 --- /dev/null +++ b/graphics/ruby-opengl/files/patch-glut.c @@ -0,0 +1,20 @@ +--- glut.c.orig Fri Jan 7 01:37:43 2000 ++++ glut.c Thu Aug 21 23:46:38 2003 +@@ -15,7 +15,7 @@ + static VALUE _funcname = Qnil; \ + static void glut_ ## _funcname ## Callback(); \ + static VALUE \ +-glut_ ## _funcname ## (obj,arg1) \ ++glut_ ## _funcname (obj,arg1) \ + VALUE obj,arg1; \ + { \ + int win; \ +@@ -25,7 +25,7 @@ + if (win == 0) \ + rb_raise(rb_eRuntimeError, "GLUT.%s needs current window", #_funcname); \ + rb_ary_store(_funcname, win, arg1); \ +- glut ## _funcname ## (glut_ ## _funcname ## Callback); \ ++ glut ## _funcname (glut_ ## _funcname ## Callback); \ + return Qnil; \ + } + -- cgit v1.2.3