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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
REQUIREMENTS:
-------------
The liboglappth package is dependent on OpenGL libraries libGL and
libGLU. It contains a set of classes for OpenGL applications that
manage OpenGL viewing windows and separate "window client" objects
which determine how the viewing windows behave and display their
contents.
Other software/packages that are needed to compile and run this library
are:
g++ gcc version 2.95.4 or later
make GNU Make version 3.76.1
pkg-config pkg-config-0.15
In short, any up-to-date Linux installation like Redhat 9.0, Mandrake 9.0
or Debian 3.0 should work, if the necessary development packages (that
contain the header files) are also present, in addition to the standard
packages (that contain the libraries).
INSTALLATION:
-------------
Simple set of commands
./autogen.sh
./configure
make
make install [run as root user]
will produce the library.
For more options and information you can try
./configure --help
If at configuration step you get stuck and see some error messages about
PKG_CONFIG, please try the following tricks (and re-try ./configure):
export PKG_CONFIG=pkg-config
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
Also if problems appear you might want to try updating the configuration
files using commands at the top of the source tree (and re-try ./configure):
aclocal
autoconf
autoheader
automake
libtoolize --copy --force
This is an example how to set different compiler versions in Makefiles:
CC=gcc-3.4 CXX=g++-3.4 ./configure
The "make install"-command will copy the library and some extra files to
their proper places so that the library can be used in other programs.
|