Difference between revisions of "Xorg7/MesaLib"

From CBLFS
Jump to navigationJump to search
(Required)
(Non-Multilib)
Line 39: Line 39:
 
{{Note|Don't remove the source after building Mesa.  It is needed by the [[Xorg7/Xserver]] build.  You need to pass the path to the MesaLib source when building xorg-server, so take note of it.}}
 
{{Note|Don't remove the source after building Mesa.  It is needed by the [[Xorg7/Xserver]] build.  You need to pass the path to the MesaLib source when building xorg-server, so take note of it.}}
  
== Non-Multilib ==
 
  
patch -Np1 -i ../mesa-{{Mesa-Version}}-build-config.patch
 
 
Create a basic configuration for your system.  There are many more than linux-dri; execute make to see the list.  Each is a file in the configs directory if you wish to research the differences.  Replace linux-dri with the basic configuration you have selected:
 
 
ln -sf linux-dri configs/current
 
 
Regardless of the basic configuration you chose, add the following:
 
 
echo 'X11_INCLUDES = $(shell pkg-config --cflags-only-I x11)' >> configs/current &&
 
echo 'CFLAGS += $(X11_INCLUDES)' >> configs/current &&
 
echo 'EXTRA_LIB_PATH = $(shell pkg-config --libs-only-L x11)' >> configs/current &&
 
echo "DRI_DRIVER_INSTALL_DIR = ${XORG_PREFIX}/lib/xorg/modules/dri" >> configs/current &&
 
echo "INSTALL_DIR = /usr" >> configs/current &&
 
echo "LIB_DIR = lib" >> configs/current
 
 
If you have [[XCB]] installed you also need to add the following to the config:
 
 
echo 'DEFINES += -DUSE_XCB' >> configs/current &&
 
echo 'X11_INCLUDES += $(shell pkg-config --cflags-only-I xcb x11-xcb xcb-glx)' >> configs/current &&
 
echo 'GL_LIB_DEPS += $(shell pkg-config --libs xcb x11-xcb xcb-glx)' >> configs/current
 
 
Compile the package:
 
 
make default
 
 
Install the package:
 
 
make install
 
 
If you would like to build and install glxinfo and glxgears execute the following command:
 
 
make -C progs/xdemos glxinfo glxgears &&
 
install -m755 -v progs/xdemos/{glxinfo,glxgears} /usr/bin
 
  
 
== Multilib ==
 
== Multilib ==

Revision as of 23:53, 15 June 2008

Download Source:
http://downloads.sourceforge.net/mesa3d/MesaLib-7.9.tar.bz2
http://downloads.sourceforge.net/mesa3d/MesaDemos-7.9.tar.bz2
http://downloads.sourceforge.net/mesa3d/MesaGLUT-7.9.tar.bz2
http://svn.mandriva.com/svn/packages/cooker/mesa/current/SOURCES/mesa-7.9-build-config.patch

Back to libdrm

Introduction to Mesa

Mesa is an OpenGL compatible 3D library. Three packages are available.

  • MesaLib - the main Mesa library source code, drivers and documentation.
  • MesaDemos - OpenGL demonstration and test programs. Most of the programs require GLUT.
  • MesaGLUT - provides a working libglut.

If you're not interested in running the demos, you'll only need the first package. However, there are a few other packages that can use a GLUT library (such as LibTIFF), so you may wish to install MesaGLUT as well. If you choose to install the demos, extract all three tarballs from the same toplevel directory. All three will extract to the Mesa-7.9 directory.

Homepage: http://www.mesa3d.org/

Dependencies

Required

Optional

Caution.png

Note

Don't remove the source after building Mesa. It is needed by the Xorg7/Xserver build. You need to pass the path to the MesaLib source when building xorg-server, so take note of it.


Multilib

32Bit

The Mesa source is needed to build Xorg7/Xserver, save the Mesa source tree for use with the build.

mv Mesa-7.9{,-32} &&
cd Mesa-7.9-32
patch -Np1 -i ../mesa-7.9-build-config.patch

Create a basic configuration for your system. There are many more than linux-dri; execute make to see the list. Each is a file in the configs directory if you wish to research the differences. Replace linux-dri with the basic configuration you have selected:

ln -sf linux-dri configs/current

Regardless of the basic configuration you chose, add the following:

echo 'X11_INCLUDES = $(shell pkg-config --cflags-only-I x11)' >> configs/current &&
echo 'CFLAGS += $(X11_INCLUDES)' >> configs/current &&
echo 'EXTRA_LIB_PATH = $(shell pkg-config --libs-only-L x11)' >> configs/current &&
echo "DRI_DRIVER_INSTALL_DIR = ${XORG_PREFIX}/lib/xorg/modules/dri" >> configs/current &&
echo "INSTALL_DIR = /usr" >> configs/current &&
echo "LIB_DIR = lib" >> configs/current

If you have XCB installed you also need to add the following to the config:

echo 'DEFINES += -DUSE_XCB' >> configs/current &&
echo 'X11_INCLUDES += $(shell pkg-config --cflags-only-I xcb x11-xcb xcb-glx)' >> configs/current &&
echo 'GL_LIB_DEPS += $(shell pkg-config --libs xcb x11-xcb xcb-glx)' >> configs/current

Compile the package:

PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
make CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" default

Install the package:

make install

N32

The Mesa source is needed to build Xorg7/Xserver, save the Mesa source tree for use with the build.

mv Mesa-7.9{,-n32} &&
cd Mesa-7.9-n32
patch -Np1 -i ../mesa-7.9-build-config.patch

Create a basic configuration for your system. There are many more than linux-dri; execute make to see the list. Each is a file in the configs directory if you wish to research the differences. Replace linux-dri with the basic configuration you have selected:

ln -sf linux-dri configs/current

Regardless of the basic configuration you chose, add the following:

echo 'X11_INCLUDES = $(shell pkg-config --cflags-only-I x11)' >> configs/current &&
echo 'CFLAGS += $(X11_INCLUDES)' >> configs/current &&
echo 'EXTRA_LIB_PATH = $(shell pkg-config --libs-only-L x11)' >> configs/current &&
echo "DRI_DRIVER_INSTALL_DIR = ${XORG_PREFIX}/lib32/xorg/modules/dri" >> configs/current &&
echo "INSTALL_DIR = /usr" >> configs/current &&
echo "LIB_DIR = lib32" >> configs/current

If you have XCB installed you also need to add the following to the config:

echo 'DEFINES += -DUSE_XCB' >> configs/current &&
echo 'X11_INCLUDES += $(shell pkg-config --cflags-only-I xcb x11-xcb xcb-glx)' >> configs/current &&
echo 'GL_LIB_DEPS += $(shell pkg-config --libs xcb x11-xcb xcb-glx)' >> configs/current

Compile the package:

PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
make CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" default

Install the package:

make install

64Bit

The Mesa source is needed to build Xorg7/Xserver, save the Mesa source tree for use with the build.

mv Mesa-7.9{,-64} &&
cd Mesa-7.9-64
patch -Np1 -i ../mesa-7.9-build-config.patch

Create a basic configuration for your system. There are many more than linux-dri; execute make to see the list. Each is a file in the configs directory if you wish to research the differences. Replace linux-dri with the basic configuration you have selected:

ln -sf linux-dri configs/current

Regardless of the basic configuration you chose, add the following:

echo 'X11_INCLUDES = $(shell pkg-config --cflags-only-I x11)' >> configs/current &&
echo 'CFLAGS += $(X11_INCLUDES)' >> configs/current &&
echo 'EXTRA_LIB_PATH = $(shell pkg-config --libs-only-L x11)' >> configs/current &&
echo "DRI_DRIVER_INSTALL_DIR = ${XORG_PREFIX}/lib64/xorg/modules/dri" >> configs/current &&
echo "INSTALL_DIR = /usr" >> configs/current &&
echo "LIB_DIR = lib64" >> configs/current

If you have XCB installed you also need to add the following to the config:

echo 'DEFINES += -DUSE_XCB' >> configs/current &&
echo 'X11_INCLUDES += $(shell pkg-config --cflags-only-I xcb x11-xcb xcb-glx)' >> configs/current &&
echo 'GL_LIB_DEPS += $(shell pkg-config --libs xcb x11-xcb xcb-glx)' >> configs/current

Compile the package:

PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
make CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" default

Install the package:

make install

If you would like to build and install glxinfo and glxgears execute the following command:

PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
make CC="gcc ${BUILD64}" -C progs/xdemos glxinfo glxgears &&
install -m755 -v progs/xdemos/{glxinfo,glxgears} /usr/bin

Forward to xbitmaps

Contents

Installed Directories: /usr/include/GLES
Installed Programs: None
Installed Libraries: libGL.so, libGLU.so, libGLw.so, libOSMesa.so, libglut.so

Short Description