Xorg7/libdrm: Difference between revisions

From CBLFS
Jump to navigationJump to search
No edit summary
Added contents.
Line 11: Line 11:
Back to the Xorg [[Xorg7/Libraries|Libraries]]
Back to the Xorg [[Xorg7/Libraries|Libraries]]


=libdrm=
= libdrm =


Userspace interface to kernel Direct Rendering Module (DRM) services are provided by libdrm.
Userspace interface to kernel Direct Rendering Module (DRM) services are provided by libdrm.


==Non-Multilib==
== Non-Multilib ==


Compile the package:
Compile the package:
Line 26: Line 26:
  make install
  make install


==Multilib==
== Multilib ==


===32-bit===
=== 32-bit ===


Compile the package:
Compile the package:
Line 39: Line 39:
  make install
  make install


===N32===
=== N32 ===


Compile the package:
Compile the package:
Line 50: Line 50:
  make install
  make install


===64-bit===
=== 64-bit ===


Compile the package:
Compile the package:
Line 60: Line 60:


  make install
  make install
== Contents ==
* Installed Libraries: libdrm.{so,la}
* Installed Directories: ${XORG_PREFIX}/include/drm


Forward to [[Xorg7/MesaLib|MesaLib]]
Forward to [[Xorg7/MesaLib|MesaLib]]

Revision as of 10:39, 6 November 2006

Download Source: http://dri.freedesktop.org/libdrm/libdrm-2.0.2.tar.bz2
Download Source: http://dri.freedesktop.org/libdrm/libdrm-2.0.2.tar.gz

Back to the Xorg Libraries

libdrm

Userspace interface to kernel Direct Rendering Module (DRM) services are provided by libdrm.

Non-Multilib

Compile the package:

./configure $XORG_CONFIG &&
make

Install the package:

make install

Multilib

32-bit

Compile the package:

CC="gcc ${BUILD32}" ./configure $XORG_CONFIG32 &&
make

Install the package:

make install

N32

Compile the package:

CC="gcc ${BUILDN32}" ./configure $XORG_CONFIGN32 &&
make

Install the package:

make install

64-bit

Compile the package:

CC="gcc ${BUILD64}" ./configure $XORG_CONFIG64 &&
make

Install the package:

make install

Contents

  • Installed Libraries: libdrm.{so,la}
  • Installed Directories: ${XORG_PREFIX}/include/drm

Forward to MesaLib