This seems to be a proposed fix for some type of install
problem on win32 of some flavor. A new release of
OpenGL has been made. Does this problem still occur?
Could you please provide more context: OS, perl -V,
the build log, OpenGL/Config.pm,...?
Leaving this open in the hope that the original requestor
can provide more context.
GENERAL NOTE: If you report a bug, please leave email or
some other contact info so we can follow up. Thanks.
On Sun Sep 06 18:59:58 2009, noreply wrote:
Show quoted text> EXE_FILES expects perl programs not dlls, so what ends up being
created is
Show quoted text>
> blib/script/freeglut.dll
> blib/script/freeglut.dll.bat
>
> One easy workaround is to edit Makefile.PL and replace
>
> $EXES = ['FreeGLUT/freeglut.dll'];
>
> with
>
> {
> system $^X ,qw[-MExtUtils::Command -e mkpath --], qw[blib/bin];
> system $^X ,qw[-MExtUtils::Command -e cp --],
> qw[FreeGLUT/freeglut.dll blib/bin/freeglut.dll];
> }
>
> I've tested this, it works fine