Difference between revisions of "Xorg7/libdrm"
From CBLFS
Jump to navigationJump to search (→Multilib) |
|||
Line 31: | Line 31: | ||
Compile the package: | Compile the package: | ||
− | CC="gcc ${BUILD32}" ./configure $XORG_CONFIG32 && | + | CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ |
+ | ./configure $XORG_CONFIG32 && | ||
make | make | ||
Line 42: | Line 43: | ||
Compile the package: | Compile the package: | ||
− | CC="gcc ${BUILDN32}" ./configure $XORG_CONFIGN32 && | + | CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ |
+ | ./configure $XORG_CONFIGN32 && | ||
make | make | ||
Line 53: | Line 55: | ||
Compile the package: | Compile the package: | ||
− | CC="gcc ${BUILD64}" ./configure $XORG_CONFIG64 && | + | CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ |
+ | ./configure $XORG_CONFIG64 && | ||
make | make | ||
Revision as of 11:54, 21 December 2008
Download Source: | http://cross-lfs.org/~jciccone/drm-2.4.22.tar.bz2 |
---|
Back to the Xorg Libraries
Contents
Introduction to Xorg7/libdrm
Userspace interface to kernel Direct Rendering Module (DRM) services are provided by libdrm.
Project Homepage: http://dri.freedesktop.org/wiki/
While there are newer versions of libdrm available, MesaLib 7.9 needs libdrm 2.4.22. Newer versions of libdrm will not work.
Non-Multilib
Compile the package:
./configure $XORG_CONFIG && make
Install the package:
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ ./configure $XORG_CONFIG32 && make
Install the package:
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ ./configure $XORG_CONFIGN32 && make
Install the package:
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ ./configure $XORG_CONFIG64 && make
Install the package:
make install
Contents
Installed Directories: | ${XORG_PREFIX}/include/drm |
---|---|
Installed Libraries: | libdrm.{la,so} |
Short Description
libdrm.{la,so} | Shared library providing the necessary interfaces. |
---|
Forward to MesaLib