Go to file
Emil Velikov 7e4f0664ac tests/hash: return non-zero on failure
... and wire up to `make check' now that it's useful.

v2: Really return non-zero on failure.
v3: Initialise ret.

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Jan Vesely <jan.vesely@rutgers.edu> (v2)
2015-04-05 15:33:06 +01:00
exynos autotools: remove ${srcdir} from the includes 2015-03-20 17:18:01 +00:00
freedreno autotools: remove ${srcdir} from the includes 2015-03-20 17:18:01 +00:00
include/drm intel: Merge latest i915_drm.h 2015-03-19 17:19:46 +00:00
intel android: remove explicit include to libpciaccess 2015-03-26 20:37:10 +00:00
libkms android: add the missing tag "optional" to libkms 2015-03-20 17:03:16 +00:00
m4 build: Update autotools configuration 2011-03-21 13:43:43 +00:00
man man: Fix typo and use $() for make expressions 2013-01-25 13:46:57 -08:00
nouveau autotools: remove ${srcdir} from the includes 2015-03-20 17:18:01 +00:00
omap autotools: remove ${srcdir} from the includes 2015-03-20 17:18:01 +00:00
radeon autotools: remove ${srcdir} from the includes 2015-03-20 17:18:01 +00:00
tegra tegra: Implement drm_tegra_bo_{get,set}_tiling() 2014-11-27 17:20:32 +01:00
tests tests/hash: return non-zero on failure 2015-04-05 15:33:06 +01:00
.gitignore tests/hash: extract test out of xf86drmHash.c 2015-04-05 15:19:42 +01:00
Android.mk android: get rid of LIBDRM_TOP 2015-03-20 17:18:01 +00:00
CleanSpec.mk android: add CleanSpec.mk 2014-09-01 16:06:02 +01:00
Makefile.am automake: wrap an insanely long line 2015-03-10 17:50:49 +00:00
Makefile.sources tests/hash: extract test out of xf86drmHash.c 2015-04-05 15:19:42 +01:00
README Update README 2009-11-20 17:08:28 -05:00
RELEASING RELEASING: Fix annouce typo 2015-03-20 15:55:23 +00:00
autogen.sh autogen.sh: handle out-of-tree invokation 2015-03-17 22:35:51 +00:00
configure.ac build: Bump version number to 2.4.60 before release 2015-03-19 14:36:56 +00:00
libdrm.h libdrm: fix the Android 64bit build 2015-02-23 09:23:03 +00:00
libdrm.pc.in Revert "Fix pkgconfig includes for /usr/include/drm" 2010-04-09 16:33:38 -04:00
libdrm_lists.h lists: add nicer+unsafe foreach, and list join macros 2012-04-14 02:47:04 +10:00
xf86atomic.h Use __sync_add_and_fetch instead of __sync_fetch_and_add for atomic_dec_and_test 2015-03-13 20:21:57 +01:00
xf86drm.c Remove drmSetDebugMsgFunction and related infrastructure 2015-03-20 17:36:04 -04:00
xf86drm.h drm: add drmGet(Primary|Render)DeviceNameFromFd functions 2015-03-10 18:14:40 +00:00
xf86drmHash.c tests/hash: extract test out of xf86drmHash.c 2015-04-05 15:19:42 +01:00
xf86drmHash.h tests/hash: extract test out of xf86drmHash.c 2015-04-05 15:19:42 +01:00
xf86drmMode.c Fix type-limits, pointer-arith and sign-compare warnings 2015-03-14 17:02:06 -04:00
xf86drmMode.h update signed/object prop types 2014-11-24 19:56:50 -05:00
xf86drmRandom.c random: Use unsigned long for seed 2015-02-10 15:24:35 -05:00
xf86drmSL.c tests/drmsl: Extract tests out of xf86drmSL.c 2015-04-04 13:48:54 -04:00

README

libdrm - userspace library for drm

This  is libdrm,  a userspace  library for  accessing the  DRM, direct
rendering  manager, on  Linux,  BSD and  other  operating systes  that
support the  ioctl interface.  The library  provides wrapper functions
for the  ioctls to avoid  exposing the kernel interface  directly, and
for chipsets with drm memory manager, support for tracking relocations
and  buffers.   libdrm  is  a  low-level library,  typically  used  by
graphics drivers  such as the Mesa  DRI drivers, the  X drivers, libva
and  similar projects.  New  functionality in  the kernel  DRM drivers
typically requires  a new  libdrm, but a  new libdrm will  always work
with an older kernel.


Compiling
---------

libdrm  is  a  standard  autotools  packages and  follows  the  normal
configure, build  and install steps.   The first step is  to configure
the package, which is done by running the configure shell script:

	./configure

By default, libdrm  will install into the /usr/local/  prefix.  If you
want  to  install   this  DRM  to  replace  your   system  copy,  pass
--prefix=/usr and  --exec-prefix=/ to configure.  If  you are building
libdrm  from a  git checkout,  you first  need to  run  the autogen.sh
script.  You can  pass any options to autogen.sh  that you would other
wise  pass to configure,  or you  can just  re-run configure  with the
options you need once autogen.sh finishes.

Next step is to build libdrm:

	make

and once make finishes successfully, install the package using

	make install

If you are install into a system location, you will need to be root to
perform the install step.