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.
|
|
|
|
|
|
|
|
AC_PREREQ(2.57)
|
2009-02-21 10:57:19 -07:00
|
|
|
AC_INIT([libdrm], 2.4.5, [dri-devel@lists.sourceforge.net], libdrm)
|
2005-07-10 16:42:42 -06:00
|
|
|
AC_CONFIG_SRCDIR([Makefile.am])
|
|
|
|
AM_INIT_AUTOMAKE([dist-bzip2])
|
|
|
|
|
|
|
|
AM_CONFIG_HEADER([libdrm/config.h])
|
|
|
|
|
2006-06-27 15:04:50 -06:00
|
|
|
AC_DISABLE_STATIC
|
2005-07-10 16:42:42 -06:00
|
|
|
AC_PROG_LIBTOOL
|
|
|
|
AC_PROG_CC
|
|
|
|
|
|
|
|
AC_HEADER_STDC
|
2006-10-02 07:06:35 -06:00
|
|
|
AC_SYS_LARGEFILE
|
2005-07-10 16:42:42 -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)
|
2008-08-24 00:54:43 -06: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-02-10 21:18:03 -07:00
|
|
|
AC_ARG_ENABLE(nouveau-experimental-api,
|
|
|
|
AS_HELP_STRING([--enable-nouveau-experimental-api],
|
|
|
|
[Enable support for nouveau's experimental API (default: disabled)]),
|
|
|
|
[NOUVEAU=$enableval], [NOUVEAU=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])
|
|
|
|
|
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 \
|
|
|
|
-Wstrict-aliasing=2 -Winit-self -Wunsafe-loop-optimizations \
|
|
|
|
-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
|
|
|
|
|
2009-02-22 03:40:47 -07:00
|
|
|
AM_CONDITIONAL(HAVE_NOUVEAU, [test "x$NOUVEAU" = xyes])
|
2009-02-10 21:18:03 -07:00
|
|
|
|
2009-02-03 13:03:41 -07:00
|
|
|
PKG_CHECK_MODULES(CAIRO, cairo, [HAVE_CAIRO=yes], [HAVE_CAIRO=no])
|
|
|
|
if test "x$HAVE_CAIRO" = xyes; then
|
|
|
|
AC_DEFINE(HAVE_CAIRO, 1, [Have cairo support])
|
|
|
|
fi
|
|
|
|
AM_CONDITIONAL(HAVE_CAIRO, [test "x$HAVE_CAIRO" = xyes])
|
|
|
|
|
|
|
|
|
2008-06-03 11:20:49 -06:00
|
|
|
AC_SUBST(WARN_CFLAGS)
|
2007-07-19 05:59:59 -06:00
|
|
|
AC_OUTPUT([
|
|
|
|
Makefile
|
|
|
|
libdrm/Makefile
|
2008-06-03 11:20:49 -06:00
|
|
|
libdrm/intel/Makefile
|
2009-01-29 18:25:35 -07:00
|
|
|
libdrm/nouveau/Makefile
|
|
|
|
libdrm/nouveau/libdrm_nouveau.pc
|
2007-07-19 05:59:59 -06:00
|
|
|
shared-core/Makefile
|
|
|
|
tests/Makefile
|
2008-12-17 11:41:21 -07:00
|
|
|
tests/modeprint/Makefile
|
|
|
|
tests/modetest/Makefile
|
2007-07-19 05:59:59 -06:00
|
|
|
libdrm.pc])
|