Difference between revisions of "Xorg7/libdrm"

From CBLFS
Jump to navigationJump to search
(libdrm: Added note about mesalib not working with newer versions of libdrm.)
(Versioning template.)
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| http://dri.freedesktop.org/libdrm/libdrm-2.0.2.tar.bz2
+
| http://dri.freedesktop.org/libdrm/libdrm-{{Libdrm-Version}}.tar.bz2
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| http://dri.freedesktop.org/libdrm/libdrm-2.0.2.tar.gz
+
| http://dri.freedesktop.org/libdrm/libdrm-{{Libdrm-Version}}.tar.gz
 
|-
 
|-
 
|}
 
|}
Line 15: Line 15:
 
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.
  
NOTE: While there <i>are</i> newer versions of libdrm available, MesaLib 6.5 needs libdrm 2.0.2. Newer versions of libdrm will not work.
+
NOTE: While there <i>are</i> newer versions of libdrm available, MesaLib 6.5 needs libdrm {{Libdrm-Version}}. Newer versions of libdrm will not work.
  
 
== Non-Multilib ==
 
== Non-Multilib ==

Revision as of 20:00, 17 December 2006

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

Back to the Xorg Libraries

libdrm

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

NOTE: While there are newer versions of libdrm available, MesaLib 6.5 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

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