[svn:parrot] r36120 - trunk/config/auto

[email protected] Wed, 28 Jan 2009 14:22:12 -0800 (PST)
Newsgroups perl.cvs.parrot
Message-ID <[email protected]>
Author: rurban
Date: Wed Jan 28 14:22:10 2009
New Revision: 36120

Modified:
   trunk/config/auto/opengl.pm

Log:
workaround cygwin internal glut32 linking problem

Modified: trunk/config/auto/opengl.pm
==============================================================================
--- trunk/config/auto/opengl.pm	(original)
+++ trunk/config/auto/opengl.pm	Wed Jan 28 14:22:10 2009
@@ -167,7 +167,7 @@
             # Prefer Cygwin/w32api over Cygwin/X, but use X when DISPLAY is set
             ($^O eq 'cygwin') ?
              ($ENV{DISPLAY} ? (cygwin => '-lglut -L/usr/X11R6/lib -lGLU -lGL')
-                            : (cygwin => '-lglut32 -lglu32 -lopengl32'))
+                            : (cygwin => '/usr/bin/glut32.dll -lglu32 -lopengl32'))
              : (),
             win32_gcc       => '-lglut32 -lglu32 -lopengl32',
             win32_nongcc    => 'opengl32.lib glu32.lib glut32.lib',