/usr/lib/perl5/OpenGL/Config.pm is in libopengl-perl 0.6703+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | # This is the Perl OpenGL build configuration file.
# It contains the final OpenGL build arguements from
# the configuration process. Access the values by
# use OpenGL::Config which defines the variable
# $OpenGL::Config containing the hash arguments from
# the WriteMakefile() call.
#
$OpenGL::Config = {
'INC' => '-I/usr/include -I/usr/local/include',
'PREREQ_PM' => {
'Test::More' => 0
},
'clean' => {
'FILES' => 'Config.pm utils/glversion.txt utils/glversion utils/glversion.o'
},
'EXE_FILES' => [],
'PM' => {
'Config.pm' => '$(INST_LIBDIR)/OpenGL/Config.pm',
'Tessellation.pod' => '$(INST_LIBDIR)/OpenGL/Tessellation.pod',
'OpenGL.pm' => '$(INST_LIBDIR)/OpenGL.pm',
'Array.pod' => '$(INST_LIBDIR)/OpenGL/Array.pod',
'OpenGL.pod' => '$(INST_LIBDIR)/OpenGL.pod'
},
'DEFINE' => '-DHAVE_VER -DHAVE_GL -DHAVE_GLU -DHAVE_GLUT -DHAVE_GLX -DHAVE_FREEGLUT -DHAVE_FREEGLUT_H -DGL_GLEXT_LEGACY',
'LDFROM' => '$(OBJECT) ',
'AUTHOR' => 'Chris Marshall <chm at cpan dot org>',
'dynamic_lib' => {},
'META_MERGE' => {
'abstract' => 'Perl bindings to the OpenGL API, GLU, and GLUT/FreeGLUT',
'resources' => {
'bugtracker' => 'http://sourceforge.net/tracker/?group_id=562483&atid=2281758',
'repository' => 'git://pogl.git.sourceforge.net/gitroot/pogl/pogl',
'homepage' => 'http://sourceforge.net/projects/pogl/'
}
},
'OBJECT' => '$(BASEEXT)$(OBJ_EXT) gl_util$(OBJ_EXT) pogl_const$(OBJ_EXT) pogl_gl_top$(OBJ_EXT) pogl_glu$(OBJ_EXT) pogl_rpn$(OBJ_EXT) pogl_glut$(OBJ_EXT) pogl_gl_Accu_GetM$(OBJ_EXT) pogl_gl_GetP_Pass$(OBJ_EXT) pogl_gl_Mult_Prog$(OBJ_EXT) pogl_gl_Pixe_Ver2$(OBJ_EXT) pogl_gl_Prog_Clam$(OBJ_EXT) pogl_gl_Tex2_Draw$(OBJ_EXT) pogl_gl_Ver3_Tex1$(OBJ_EXT) pogl_gl_Vert_Multi$(OBJ_EXT)',
'OPTIMIZE' => undef,
'XSPROTOARG' => '-noprototypes',
'NAME' => 'OpenGL',
'LIBS' => '-L/usr/lib -L/usr/local/lib -lglut -lglut -lGLU -lGL -lX11 -lm',
'VERSION_FROM' => 'OpenGL.pm'
};
1;
__END__
|