critical impact:
OpenGL - available in /opt/graphics/OpenGL (CrCh322)
Problem description
The OpenGL header files and libraries are available in /opt/graphics/OpenGL on HP-UX.
OpenGL is a high-performance 3D-oriented renderer. It is available in the X window system through the GLX extension. Identifiers
 -lGL |
 -lGLU |
 libGL.so |
 libGLU.so |
|
See also
Solution description
Modify your makefiles.
Add -I/opt/graphics/OpenGL/include to your compiler options.
Add -L/opt/graphics/OpenGL/lib/hpux{32|64} to your linker options.
Add -lXhp11 after -lGL in your library list since the HP OpenGL library is dependent on the HP X extensions library.
Review the documentation for your HP workstation for more information on installing and using HP OpenGL. New behavior
cc -I/opt/graphics/OpenGL/include \
-L/opt/graphics/OpenGL/lib/hpux32 \
-o cube cube.c \
-lGLU -lGL -lXhp11 -lXext -lX11 -lm See also
Problem summary
| classifications |
source types |
OS release |
severity |
type |
| HDR, LIB |
Make, Script |
any HP-UX 11i version |
critical |
changed |
|