From 26f334a679dcb09c1217d34e89e98ac44471c094 Mon Sep 17 00:00:00 2001
From: Brian Paul
+In Mesa 6.1 we modified the conventional Makefile system.
+Instead of specifying all the various system configurations in the
+Make-config file, there's a directory named configs/
which
+has an individual file for each configuration.
+One of the configs gets copied to configs/current
, which
+is then included by all Makefiles.
+
- cd Mesa-newtree - cp Makefile.X11 Makefile + cd Mesa chmod a+x bin/mklib
-Now, just type make. +Just type make in the top-level directory. You'll see a list of supported system configurations. Choose one from the list (such as linux-x86), and type:
@@ -57,9 +65,11 @@ Choose one from the list (such as linux-x86), and type: make linux-x86
-That's it.
+If you want to rebuild for a different configuration run
+make realclean
before rebuilding.
@@ -67,16 +77,21 @@ When compilation has finished, look in the top-level lib/ directory. You'll see a set of library files similar to this:
-lrwxrwxrwx 1 brian users 10 Sep 4 17:55 libGL.so -> libGL.so.1* -lrwxrwxrwx 1 brian users 19 Sep 4 17:55 libGL.so.1 -> libGL.so.1.4.050100* --rwxr-xr-x 1 brian users 13940317 Sep 4 17:55 libGL.so.1.4.050100* -lrwxrwxrwx 1 brian users 11 Sep 4 17:54 libGLU.so -> libGLU.so.1* -lrwxrwxrwx 1 brian users 20 Sep 4 17:54 libGLU.so.1 -> libGLU.so.1.3.050100* --rwxr-xr-x 1 brian users 324746 Sep 3 13:54 libGLU.so.1.1* --rwxr-xr-x 1 brian users 2830539 Sep 4 17:54 libGLU.so.1.3.050100* -lrwxrwxrwx 1 brian users 12 Sep 4 17:53 libglut.so -> libglut.so.3* -lrwxrwxrwx 1 brian users 16 Sep 4 17:53 libglut.so.3 -> libglut.so.3.7.1* --rwxr-xr-x 1 brian users 2426683 Sep 4 17:53 libglut.so.3.7.1* +lrwxrwxrwx 1 brian users 10 Mar 26 07:53 libGL.so -> libGL.so.1* +lrwxrwxrwx 1 brian users 19 Mar 26 07:53 libGL.so.1 -> libGL.so.1.5.060100* +-rwxr-xr-x 1 brian users 3375861 Mar 26 07:53 libGL.so.1.5.060100* +lrwxrwxrwx 1 brian users 11 Mar 26 07:53 libGLU.so -> libGLU.so.1* +lrwxrwxrwx 1 brian users 20 Mar 26 07:53 libGLU.so.1 -> libGLU.so.1.3.060100* +-rwxr-xr-x 1 brian users 549269 Mar 26 07:53 libGLU.so.1.3.060100* +lrwxrwxrwx 1 brian users 12 Mar 26 07:53 libglut.so -> libglut.so.3* +lrwxrwxrwx 1 brian users 16 Mar 26 07:53 libglut.so.3 -> libglut.so.3.7.1* +-rwxr-xr-x 1 brian users 597754 Mar 26 07:53 libglut.so.3.7.1* +lrwxrwxrwx 1 brian users 11 Mar 26 08:04 libGLw.so -> libGLw.so.1* +lrwxrwxrwx 1 brian users 15 Mar 26 08:04 libGLw.so.1 -> libGLw.so.1.0.0* +-rwxr-xr-x 1 brian users 20750 Mar 26 08:04 libGLw.so.1.0.0* +lrwxrwxrwx 1 brian users 14 Mar 26 07:53 libOSMesa.so -> libOSMesa.so.6* +lrwxrwxrwx 1 brian users 23 Mar 26 07:53 libOSMesa.so.6 -> libOSMesa.so.6.1.060100* +-rwxr-xr-x 1 brian users 23871 Mar 26 07:53 libOSMesa.so.6.1.060100*
@@ -85,6 +100,10 @@ lrwxrwxrwx 1 brian users 16 Sep 4 17:53 libglut.so.3 -> libglut.
libGLU is the OpenGL Utility library.
libglut is the GLUT library.
+
+libGLw is the Xt/Motif OpenGL drawing area widget library.
+
+libOSMesa is the OSMesa (Off-Screen) interface library.
-To install the Mesa headers, do this: -
-cp -r include/GL /usr/include -- -
-To install the Mesa libraries, do this:
+To install Mesa's headers and libraries, run make install
+You'll be prompted to enter alternative directories for the headers
+and libraries.
-cp -pd lib/* /usr/lib -
-(The -pd options preserve symbolic links) -
-If you install the libraries in a non-standard location you can use -LD_LIBRARY_PATH (on Linux) to switch between the Mesa libs and another -vendor libs whenever you want. +Note: at runtime, you can set the LD_LIBRARY_PATH (on Linux) to switch +between the Mesa libs and another vendor libs whenever you want. This is a handy way to compare multiple OpenGL implementations.
-- 2.30.2