libdrm-2.4.46
Installation of libdrm
Install libdrm by running the
following commands:
sed -e "/pthread-stubs/d" -i configure.ac &&
autoreconf -fi &&
./configure --prefix=/usr --enable-udev &&
make
To check the results, issue make
check.
Now, as the root
user:
make install
Command Explanations
sed -e "/pthread-stubs/d" -i
configure.ac: This sed removes dependency on
libpthread-stubs package which is useless on Linux.
--enable-udev
: This option enables
support for using Udev instead of
mknod.
Contents
Installed Programs:
None
Installed Libraries:
libdrm.so, libdrm_intel.so,
libdrm_nouveau.so, libdrm_radeon.so and libkms.so
Installed Directories:
/usr/include/libdrm and
/usr/include/libkms
Short Descriptions
libdrm.so
|
contains the Direct Rendering Manager API functions.
|
libdrm_intel.so
|
contains the Intel specific Direct Rendering Manager
functions.
|
libdrm_nouveau.so
|
contains the open source nVidia (Nouveau) specific Direct
Rendering Manager functions.
|
libdrm_radeon.so
|
contains the AMD Radeon specific Direct Rendering Manager
functions.
|
libkms.so
|
contains API functions for kernel mode setting
abstraction.
|
Last updated on 2013-08-18 14:52:29 -0700