hello
i would like to install the opengl-perl module
i did not install the mesa package since opengl lives already within macosx
but i am having a terrible time configuring the Makefile.PL
does anybody know the right configuration with the necessary paths on a default macosx 10.3.4 install ?
# ..
# the following is part of the Makefile.PL
#
# Extra library paths to search on
$libdirs = '-L/usr/X11R6/lib -L/usr/local/lib -L/usr/openwin/lib';
# Extra include paths to search on
$includes = '-I/usr/X11R6/include -I/usr/local/include -I/usr/openwin/include';
$pm_lib = (grep /^X11$/, @ARGV) ? '' : '-lopengl';
$libs = "-lGLU -lGLUT -lGLX $pm_lib -lMesaGLU -lMesaGLUT -lMesaGLX -lglut";
@libs = findlib->ext("$libdirs $libs");
#..
thank you jmcs3