2005-07-10 16:42:42 -06:00
# Copyright 2005 Adam Jackson.
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# on the rights to use, copy, modify, merge, publish, distribute, sub
# license, and/or sell copies of the Software, and to permit persons to whom
# the Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice (including the next
# paragraph) shall be included in all copies or substantial portions of the
# Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
# ADAM JACKSON BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2011-02-09 06:28:20 -07:00
AC_PREREQ([2.63])
AC_INIT([libdrm],
2012-11-05 17:23:53 -07:00
[2.4.40],
2011-02-09 06:28:20 -07:00
[https://bugs.freedesktop.org/enter_bug.cgi?product=DRI],
[libdrm])
AC_CONFIG_HEADERS([config.h])
2005-07-10 16:42:42 -06:00
AC_CONFIG_SRCDIR([Makefile.am])
2011-02-09 06:28:20 -07:00
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([1.10 foreign dist-bzip2])
AM_MAINTAINER_MODE([enable])
2005-07-10 16:42:42 -06:00
2011-02-09 06:28:20 -07:00
# Enable quiet compiles on automake 1.11.
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
2005-07-10 16:42:42 -06:00
2011-02-09 06:28:20 -07:00
# Check for programs
2005-07-10 16:42:42 -06:00
AC_PROG_CC
2011-02-09 06:28:20 -07:00
AC_USE_SYSTEM_EXTENSIONS
2006-10-02 07:06:35 -06:00
AC_SYS_LARGEFILE
2009-12-16 16:03:58 -07:00
AC_FUNC_ALLOCA
2005-07-10 16:42:42 -06:00
2011-02-09 06:28:20 -07:00
# Initialize libtool
LT_PREREQ([2.2])
LT_INIT([disable-static])
2010-05-25 21:13:37 -06:00
2008-06-13 00:22:26 -06:00
PKG_CHECK_MODULES(PTHREADSTUBS, pthread-stubs)
AC_SUBST(PTHREADSTUBS_CFLAGS)
AC_SUBST(PTHREADSTUBS_LIBS)
2005-07-12 18:13:12 -06:00
pkgconfigdir=${libdir}/pkgconfig
2005-07-10 16:42:42 -06:00
AC_SUBST(pkgconfigdir)
2011-02-09 06:28:20 -07:00
AC_ARG_ENABLE([udev],
[AS_HELP_STRING([--enable-udev],
[Enable support for using udev instead of mknod (default: disabled)])],
[UDEV=$enableval], [UDEV=no])
2005-07-10 16:42:42 -06:00
2009-11-24 09:54:10 -07:00
AC_ARG_ENABLE(libkms,
2010-02-18 05:27:29 -07:00
AS_HELP_STRING([--disable-libkms],
2010-04-16 11:12:37 -06:00
[Disable KMS mm abstraction library (default: auto)]),
[LIBKMS=$enableval], [LIBKMS=auto])
2009-11-24 09:54:10 -07:00
2009-10-03 15:56:04 -06:00
AC_ARG_ENABLE(intel,
AS_HELP_STRING([--disable-intel],
2009-10-12 16:58:47 -06:00
[Enable support for intel's KMS API (default: auto)]),
[INTEL=$enableval], [INTEL=auto])
2009-10-03 15:56:04 -06:00
2010-02-01 17:58:50 -07:00
AC_ARG_ENABLE(radeon,
AS_HELP_STRING([--disable-radeon],
2009-08-29 03:08:57 -06:00
[Enable support for radeon's KMS API (default: auto)]),
[RADEON=$enableval], [RADEON=auto])
2010-02-01 17:58:50 -07:00
2011-12-08 23:11:06 -07:00
AC_ARG_ENABLE(nouveau,
AS_HELP_STRING([--disable-nouveau],
[Enable support for nouveau's KMS API (default: auto)]),
[NOUVEAU=$enableval], [NOUVEAU=auto])
2012-08-13 05:35:07 -06:00
AC_ARG_ENABLE(vmwgfx,
AS_HELP_STRING([--disable-vmwgfx],
[Enable support for vmwgfx's KMS API (default: yes)]),
[VMWGFX=$enableval], [VMWGFX=yes])
2010-01-05 11:53:10 -07:00
2012-03-28 13:39:43 -06:00
AC_ARG_ENABLE(omap-experimental-api,
AS_HELP_STRING([--enable-omap-experimental-api],
[Enable support for OMAP's experimental API (default: disabled)]),
[OMAP=$enableval], [OMAP=no])
2009-06-17 01:47:42 -06:00
2012-05-04 04:13:14 -06:00
AC_ARG_ENABLE(exynos-experimental-api,
AS_HELP_STRING([--enable-exynos-experimental-api],
[Enable support for EXYNOS's experimental API (default: disabled)]),
[EXYNOS=$enableval], [EXYNOS=no])
2008-06-03 11:20:49 -06:00
dnl ===========================================================================
dnl check compiler flags
AC_DEFUN([LIBDRM_CC_TRY_FLAG], [
AC_MSG_CHECKING([whether $CC supports $1])
libdrm_save_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS $1"
AC_COMPILE_IFELSE([ ], [libdrm_cc_flag=yes], [libdrm_cc_flag=no])
CFLAGS="$libdrm_save_CFLAGS"
if test "x$libdrm_cc_flag" = "xyes"; then
ifelse([$2], , :, [$2])
else
ifelse([$3], , :, [$3])
fi
AC_MSG_RESULT([$libdrm_cc_flag])
])
2009-01-07 12:47:52 -07:00
dnl We use clock_gettime to check for timeouts in drmWaitVBlank
AC_CHECK_FUNCS([clock_gettime], [CLOCK_LIB=],
[AC_CHECK_LIB([rt], [clock_gettime], [CLOCK_LIB=-lrt],
[AC_MSG_ERROR([Couldn't find clock_gettime])])])
AC_SUBST([CLOCK_LIB])
2012-01-03 13:33:37 -07:00
AC_CHECK_FUNCS([open_memstream], [HAVE_OPEN_MEMSTREAM=yes])
2008-06-03 11:20:49 -06:00
dnl Use lots of warning flags with with gcc and compatible compilers
dnl Note: if you change the following variable, the cache is automatically
dnl skipped and all flags rechecked. So there's no need to do anything
dnl else. If for any reason you need to force a recheck, just change
dnl MAYBE_WARN in an ignorable way (like adding whitespace)
MAYBE_WARN="-Wall -Wextra \
-Wsign-compare -Werror-implicit-function-declaration \
-Wpointer-arith -Wwrite-strings -Wstrict-prototypes \
-Wmissing-prototypes -Wmissing-declarations -Wnested-externs \
-Wpacked -Wswitch-enum -Wmissing-format-attribute \
2012-08-02 12:25:57 -06:00
-Wstrict-aliasing=2 -Winit-self \
2008-06-03 11:20:49 -06:00
-Wdeclaration-after-statement -Wold-style-definition \
-Wno-missing-field-initializers -Wno-unused-parameter \
-Wno-attributes -Wno-long-long -Winline"
# invalidate cached value if MAYBE_WARN has changed
if test "x$libdrm_cv_warn_maybe" != "x$MAYBE_WARN"; then
unset libdrm_cv_warn_cflags
fi
AC_CACHE_CHECK([for supported warning flags], libdrm_cv_warn_cflags, [
echo
WARN_CFLAGS=""
# Some warning options are not supported by all versions of
# gcc, so test all desired options against the current
# compiler.
#
# Note that there are some order dependencies
# here. Specifically, an option that disables a warning will
# have no net effect if a later option then enables that
# warnings, (perhaps implicitly). So we put some grouped
# options (-Wall and -Wextra) up front and the -Wno options
# last.
for W in $MAYBE_WARN; do
LIBDRM_CC_TRY_FLAG([$W], [WARN_CFLAGS="$WARN_CFLAGS $W"])
done
libdrm_cv_warn_cflags=$WARN_CFLAGS
libdrm_cv_warn_maybe=$MAYBE_WARN
AC_MSG_CHECKING([which warning flags were supported])])
WARN_CFLAGS="$libdrm_cv_warn_cflags"
2008-08-24 00:54:43 -06:00
if test "x$UDEV" = xyes; then
AC_DEFINE(UDEV, 1, [Have UDEV support])
fi
2010-04-16 11:12:37 -06:00
AC_CANONICAL_HOST
if test "x$LIBKMS" = xauto ; then
case $host_os in
linux*) LIBKMS="yes" ;;
*) LIBKMS="no" ;;
esac
fi
2009-11-24 09:54:10 -07:00
AM_CONDITIONAL(HAVE_LIBKMS, [test "x$LIBKMS" = xyes])
2010-01-05 11:53:10 -07:00
AM_CONDITIONAL(HAVE_VMWGFX, [test "x$VMWGFX" = xyes])
2010-01-05 12:55:02 -07:00
if test "x$VMWGFX" = xyes; then
AC_DEFINE(HAVE_VMWGFX, 1, [Have vmwgfx kernel headers])
fi
2010-01-05 11:53:10 -07:00
2009-02-22 03:40:47 -07:00
AM_CONDITIONAL(HAVE_NOUVEAU, [test "x$NOUVEAU" = xyes])
2010-02-27 08:04:37 -07:00
if test "x$NOUVEAU" = xyes; then
AC_DEFINE(HAVE_NOUVEAU, 1, [Have nouveau (nvidia) support])
fi
2009-02-10 21:18:03 -07:00
2012-03-28 13:39:43 -06:00
AM_CONDITIONAL(HAVE_OMAP, [test "x$OMAP" = xyes])
if test "x$OMAP" = xyes; then
AC_DEFINE(HAVE_OMAP, 1, [Have OMAP support])
fi
2012-05-04 04:13:14 -06:00
AM_CONDITIONAL(HAVE_EXYNOS, [test "x$EXYNOS" = xyes])
if test "x$EXYNOS" = xyes; then
AC_DEFINE(HAVE_EXYNOS, 1, [Have EXYNOS support])
fi
2012-10-03 19:21:57 -06:00
AC_ARG_ENABLE([cairo-tests],
[AS_HELP_STRING([--enable-cairo-tests],
[Enable support for Cairo rendering in tests (default: auto)])],
[CAIRO=$enableval], [CAIRO=auto])
2009-02-03 13:03:41 -07:00
PKG_CHECK_MODULES(CAIRO, cairo, [HAVE_CAIRO=yes], [HAVE_CAIRO=no])
2012-10-03 19:21:57 -06:00
AC_MSG_CHECKING([whether to enable Cairo tests])
if test "x$CAIRO" = xauto; then
CAIRO="$HAVE_CAIRO"
2009-02-03 13:03:41 -07:00
fi
2012-10-03 19:21:57 -06:00
if test "x$CAIRO" = xyes; then
if ! test "x$HAVE_CAIRO" = xyes; then
AC_MSG_ERROR([Cairo support required but not present])
fi
AC_DEFINE(HAVE_CAIRO, 1, [Have Cairo support])
fi
AC_MSG_RESULT([$CAIRO])
AM_CONDITIONAL(HAVE_CAIRO, [test "x$CAIRO" = xyes])
2009-02-03 13:03:41 -07:00
2009-04-06 15:13:01 -06:00
# For enumerating devices in test case
PKG_CHECK_MODULES(LIBUDEV, libudev, [HAVE_LIBUDEV=yes], [HAVE_LIBUDEV=no])
if test "x$HAVE_LIBUDEV" = xyes; then
AC_DEFINE(HAVE_LIBUDEV, 1, [Have libudev support])
fi
AM_CONDITIONAL(HAVE_LIBUDEV, [test "x$HAVE_LIBUDEV" = xyes])
2012-09-28 15:44:19 -06:00
AC_PATH_PROG(XSLTPROC, xsltproc)
AM_CONDITIONAL([HAVE_XSLTPROC], [test "x$XSLTPROC" != "x"])
omap: add refcnting and handle tracking
There can be scenarios, especially when re-importing an existing buffer,
where you end up with multiple 'struct omap_bo's wrapping a single GEM
object handle. Which causes badness when the first of the evil-clones
is omap_bo_del()'d.
To do this, introduce reference counting and a hashtable to track the
handles per fd.
First, to avoid bo's slipping through the crack if multiple 'struct
omap_device's are created for one drm fd, a hashtable mapping drm
fd to omap_device, and the omap_device itself is reference counted.
Per omap_device, we keep a handle_table mapping GEM handle to omap_bo.
When buffers are imported from flink name or dmabuf fd, the handle
table is consulted, and if an omap_bo already exists, it's refcnt is
incremented and it is returned. For good measure, to avoid the
handle_table being deleted before the omap_bo is freed, the omap_bo
holds a reference to the omap_device.
TODO: check the overhead of the hashtable. If too much we could maybe
get away with only tracking exported and imported bo's in the table.
TODO: all the import/export flink/dmabuf operations are generic DRM
ioctls. Really all this functionality could be handled by a generic
drm_bo and drm_device "base class" that could be extended by omap,
exynos, etc. That would also allow more common userspace code by
avoiding artificial libdrm_omap dependencies.
Signed-off-by: Rob Clark <rob@ti.com>
2012-07-13 15:18:25 -06:00
if test "x$INTEL" != "xno" -o "x$RADEON" != "xno" -o "x$NOUVEAU" != "xno" -o "x$OMAP" != "xno"; then
2009-10-03 15:56:04 -06:00
# Check for atomic intrinsics
AC_CACHE_CHECK([for native atomic primitives], drm_cv_atomic_primitives,
[
drm_cv_atomic_primitives="none"
2011-02-09 06:28:20 -07:00
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
2009-10-03 15:56:04 -06:00
int atomic_add(int i) { return __sync_fetch_and_add (&i, 1); }
int atomic_cmpxchg(int i, int j, int k) { return __sync_val_compare_and_swap (&i, j, k); }
2011-02-09 06:28:20 -07:00
]],[[]])],
[drm_cv_atomic_primitives="Intel"],[])
2009-10-13 08:13:00 -06:00
if test "x$drm_cv_atomic_primitives" = "xnone"; then
AC_CHECK_HEADER([atomic_ops.h], drm_cv_atomic_primitives="libatomic-ops")
fi
2010-01-16 20:28:50 -07:00
# atomic functions defined in <atomic.h> & libc on Solaris
if test "x$drm_cv_atomic_primitives" = "xnone"; then
AC_CHECK_FUNC([atomic_cas_uint],
drm_cv_atomic_primitives="Solaris")
fi
2009-10-03 15:56:04 -06:00
])
if test "x$drm_cv_atomic_primitives" = xIntel; then
2010-03-10 04:35:59 -07:00
AC_DEFINE(HAVE_LIBDRM_ATOMIC_PRIMITIVES, 1,
2009-10-03 15:56:04 -06:00
[Enable if your compiler supports the Intel __sync_* atomic primitives])
fi
2009-10-13 08:13:00 -06:00
if test "x$drm_cv_atomic_primitives" = "xlibatomic-ops"; then
AC_DEFINE(HAVE_LIB_ATOMIC_OPS, 1, [Enable if you have libatomic-ops-dev installed])
fi
2009-10-12 16:58:47 -06:00
if test "x$drm_cv_atomic_primitives" = "xnone"; then
2009-08-29 03:08:57 -06:00
if test "x$INTEL" != "xauto"; then
2010-03-17 06:34:53 -06:00
if test "x$INTEL" != "xno"; then
AC_MSG_ERROR([libdrm_intel depends upon atomic operations, which were not found for your compiler/cpu. Try compiling with -march=native, or install the libatomics-op-dev package, or, failing both of those, disable support for Intel GPUs by passing --disable-intel to ./configure])
fi
2009-08-29 03:08:57 -06:00
else
AC_MSG_WARN([Disabling libdrm_intel. It depends on atomic operations, which were not found for your compiler/cpu. Try compiling with -march=native, or install the libatomics-op-dev package.])
INTEL=no
fi
if test "x$RADEON" != "xauto"; then
2010-03-17 06:34:53 -06:00
if test "x$RADEON" != "xno"; then
AC_MSG_ERROR([libdrm_radeon depends upon atomic operations, which were not found for your compiler/cpu. Try compiling with -march=native, or install the libatomics-op-dev package, or, failing both of those, disable support for Radeon support by passing --disable-radeon to ./configure])
fi
2009-08-29 03:08:57 -06:00
else
AC_MSG_WARN([Disabling libdrm_radeon. It depends on atomic operations, which were not found for your compiler/cpu. Try compiling with -march=native, or install the libatomics-op-dev package.])
RADEON=no
fi
2011-12-08 23:11:06 -07:00
if test "x$NOUVEAU" != "xauto"; then
if test "x$NOUVEAU" != "xno"; then
AC_MSG_ERROR([libdrm_nouveau depends upon atomic operations, which were not found for your compiler/cpu. Try compiling with -march=native, or install the libatomics-op-dev package, or, failing both of those, disable support for NVIDIA GPUs by passing --disable-nouveau to ./configure])
fi
else
AC_MSG_WARN([Disabling libdrm_nouveau. It depends on atomic operations, which were not found for your compiler/cpu. Try compiling with -march=native, or install the libatomics-op-dev package.])
NOUVEAU=no
fi
2009-11-23 10:38:40 -07:00
else
2009-08-29 03:08:57 -06:00
if test "x$INTEL" != "xno"; then
2012-01-31 15:44:14 -07:00
case $host_cpu in
i?86|x86_64) INTEL=yes ;;
2012-01-30 16:20:04 -07:00
*) INTEL=no ;;
esac
2009-08-29 03:08:57 -06:00
fi
if test "x$RADEON" != "xno"; then
RADEON=yes
fi
2011-12-08 23:11:06 -07:00
if test "x$NOUVEAU" != "xno"; then
NOUVEAU=yes
fi
2009-10-12 16:58:47 -06:00
fi
2009-10-01 21:39:22 -06:00
fi
2012-03-01 10:19:59 -07:00
if test "x$INTEL" != "xno"; then
PKG_CHECK_MODULES(PCIACCESS, [pciaccess >= 0.10])
fi
AC_SUBST(PCIACCESS_CFLAGS)
AC_SUBST(PCIACCESS_LIBS)
2012-02-12 17:19:17 -07:00
PKG_CHECK_MODULES(VALGRIND, [valgrind], [have_valgrind=yes], [have_valgrind=no])
if test "x$have_valgrind" = "xyes"; then
AC_DEFINE([HAVE_VALGRIND], 1, [Use valgrind intrinsics to suppress false warnings])
fi
2012-02-09 03:23:10 -07:00
2009-10-12 16:58:47 -06:00
AM_CONDITIONAL(HAVE_INTEL, [test "x$INTEL" != "xno"])
2010-03-17 14:41:08 -06:00
AM_CONDITIONAL(HAVE_RADEON, [test "x$RADEON" != "xno"])
2011-12-08 23:11:06 -07:00
AM_CONDITIONAL(HAVE_NOUVEAU, [test "x$NOUVEAU" != "xno"])
2011-02-17 02:46:35 -07:00
if test "x$RADEON" = xyes; then
AC_DEFINE(HAVE_RADEON, 1, [Have radeon support])
fi
2009-10-12 16:58:47 -06:00
2009-11-17 07:23:52 -07:00
AC_ARG_WITH([kernel-source],
[AS_HELP_STRING([--with-kernel-source],
[specify path to linux kernel source])],
[kernel_source="$with_kernel_source"])
AC_SUBST(kernel_source)
2009-10-12 16:58:47 -06:00
2008-06-03 11:20:49 -06:00
AC_SUBST(WARN_CFLAGS)
2011-02-09 06:28:20 -07:00
AC_CONFIG_FILES([
2007-07-19 05:59:59 -06:00
Makefile
2009-11-24 09:54:10 -07:00
libkms/Makefile
libkms/libkms.pc
2009-11-17 09:14:54 -07:00
intel/Makefile
intel/libdrm_intel.pc
radeon/Makefile
radeon/libdrm_radeon.pc
nouveau/Makefile
nouveau/libdrm_nouveau.pc
2012-03-28 13:39:43 -06:00
omap/Makefile
omap/libdrm_omap.pc
2012-05-04 04:13:14 -06:00
exynos/Makefile
exynos/libdrm_exynos.pc
2007-07-19 05:59:59 -06:00
tests/Makefile
2008-12-17 11:41:21 -07:00
tests/modeprint/Makefile
tests/modetest/Makefile
2010-01-08 08:34:44 -07:00
tests/kmstest/Makefile
2011-11-10 14:47:10 -07:00
tests/radeon/Makefile
2010-04-27 13:43:20 -06:00
tests/vbltest/Makefile
2009-11-20 17:42:59 -07:00
include/Makefile
include/drm/Makefile
2012-09-06 17:16:50 -06:00
man/Makefile
2009-10-30 19:25:44 -06:00
libdrm.pc])
2011-02-09 06:28:20 -07:00
AC_OUTPUT
2009-11-23 09:41:15 -07:00
echo ""
echo "$PACKAGE_STRING will be compiled with:"
echo ""
2009-11-24 09:54:10 -07:00
echo " libkms $LIBKMS"
2009-11-23 10:38:40 -07:00
echo " Intel API $INTEL"
2010-01-05 11:53:10 -07:00
echo " vmwgfx API $VMWGFX"
2009-11-23 10:38:40 -07:00
echo " Radeon API $RADEON"
2009-11-23 09:41:15 -07:00
echo " Nouveau API $NOUVEAU"
2012-03-28 13:39:43 -06:00
echo " OMAP API $OMAP"
2012-05-04 04:13:14 -06:00
echo " EXYNOS API $EXYNOS"
2009-11-23 09:41:15 -07:00
echo ""