configure.ac revision 1b12faf6
1# Copyright 2005 Adam Jackson. 2# 3# Permission is hereby granted, free of charge, to any person obtaining a 4# copy of this software and associated documentation files (the "Software"), 5# to deal in the Software without restriction, including without limitation 6# on the rights to use, copy, modify, merge, publish, distribute, sub 7# license, and/or sell copies of the Software, and to permit persons to whom 8# the Software is furnished to do so, subject to the following conditions: 9# 10# The above copyright notice and this permission notice (including the next 11# paragraph) shall be included in all copies or substantial portions of the 12# Software. 13# 14# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL 17# ADAM JACKSON BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 18# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 19# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 20# 21# Process this file with autoconf to produce a configure script 22 23# Initialize Autoconf 24AC_PREREQ([2.60]) 25AC_INIT([xf86-video-mach64], 26 [6.9.0], 27 [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], 28 [xf86-video-mach64]) 29AC_CONFIG_SRCDIR([Makefile.am]) 30AC_CONFIG_HEADERS([config.h]) 31AC_CONFIG_AUX_DIR(.) 32 33# Initialize Automake 34AM_INIT_AUTOMAKE([foreign dist-bzip2]) 35AM_MAINTAINER_MODE 36 37# Require X.Org macros 1.8 or later for MAN_SUBSTS set by XORG_MANPAGE_SECTIONS 38m4_ifndef([XORG_MACROS_VERSION], 39 [m4_fatal([must install xorg-macros 1.8 or later before running autoconf/autogen])]) 40XORG_MACROS_VERSION(1.8) 41XORG_DEFAULT_OPTIONS 42 43# Initialize libtool 44AC_DISABLE_STATIC 45AC_PROG_LIBTOOL 46 47AH_TOP([#include "xorg-server.h"]) 48 49# Define a configure option for an alternate module directory 50AC_ARG_WITH(xorg-module-dir, 51 AS_HELP_STRING([--with-xorg-module-dir=DIR], 52 [Default xorg module directory [[default=$libdir/xorg/modules]]]), 53 [moduledir="$withval"], 54 [moduledir="$libdir/xorg/modules"]) 55 56AC_ARG_ENABLE(dri, AS_HELP_STRING([--disable-dri], 57 [Disable DRI support [[default=auto]]]), 58 [DRI="$enableval"], 59 [DRI=auto]) 60 61AC_ARG_ENABLE(exa, 62 AS_HELP_STRING([--disable-exa], 63 [Disable EXA support [[default=enabled]]]), 64 [EXA="$enableval"], 65 [EXA=yes]) 66 67# Store the list of server defined optional extensions in REQUIRED_MODULES 68XORG_DRIVER_CHECK_EXT(RANDR, randrproto) 69XORG_DRIVER_CHECK_EXT(RENDER, renderproto) 70XORG_DRIVER_CHECK_EXT(XV, videoproto) 71XORG_DRIVER_CHECK_EXT(DPMSExtension, xextproto) 72 73# Obtain compiler/linker options for the driver dependencies 74PKG_CHECK_MODULES(XORG, [xorg-server >= 1.2 xproto fontsproto $REQUIRED_MODULES]) 75PKG_CHECK_MODULES(XEXT, [xextproto >= 7.0.99.1], 76 HAVE_XEXTPROTO_71="yes"; AC_DEFINE(HAVE_XEXTPROTO_71, 1, [xextproto 7.1 available]), 77 HAVE_XEXTPROTO_71="no") 78AM_CONDITIONAL(HAVE_XEXTPROTO_71, [ test "$HAVE_XEXTPROTO_71" = "yes" ]) 79sdkdir=`$PKG_CONFIG --variable=sdkdir xorg-server` 80 81# Checks for libraries. 82 83if test "$DRI" != no; then 84 AC_CHECK_FILE([${sdkdir}/dri.h], 85 [have_dri_h="yes"], [have_dri_h="no"]) 86 AC_CHECK_FILE([${sdkdir}/sarea.h], 87 [have_sarea_h="yes"], [have_sarea_h="no"]) 88 AC_CHECK_FILE([${sdkdir}/dristruct.h], 89 [have_dristruct_h="yes"], [have_dristruct_h="no"]) 90 AC_CHECK_FILE([${sdkdir}/damage.h], 91 [have_damage_h="yes"], [have_damage_h="no"]) 92fi 93 94AC_MSG_CHECKING([whether to include DRI support]) 95if test x$DRI = xauto; then 96 if test "$have_dri_h" = yes -a \ 97 "$have_sarea_h" = yes -a \ 98 "$have_dristruct_h" = yes; then 99 DRI="yes" 100 else 101 DRI="no" 102 fi 103fi 104AC_MSG_RESULT([$DRI]) 105 106AM_CONDITIONAL(DRI, test x$DRI = xyes) 107if test "$DRI" = yes; then 108 PKG_CHECK_MODULES(DRI, [libdrm >= 2.2 xf86driproto]) 109 AC_DEFINE(XF86DRI,1,[Enable DRI driver support]) 110 AC_DEFINE(XF86DRI_DEVEL,1,[Enable developmental DRI driver support]) 111fi 112 113# Note that this is sort of inverted from drivers/ati/Imakefile in 114# the monolith. We test for foo, not for !foo (i.e. ATMISC_CPIO, not 115# ATIMISC_AVOID_CPIO), but the defines are negative. So beware. Oh yeah, 116# TV_OUT is the special case where it's a positive define, not AVOID_TV_OUT. 117 118# AVOID_CPIO: Only x86, amd64, and alpha are cool with CPIO. It needs a 119# little-endian, undirected PIO space of at least 64kB. 120# AVOID_DGA: ??? 121# ATI_TV_OUT: This only works on x86. 122 123ATIMISC_CPIO=no 124ATIMISC_DGA=yes 125ATIMISC_TV_OUT=no 126 127case $host_cpu in 128 i*86) 129 ATIMISC_TV_OUT=yes 130 ATIMISC_CPIO=yes 131 ;; 132 x86_64|amd64|alpha|ia64) 133 ATIMISC_CPIO=yes 134 ;; 135 sparc) 136 ATIMISC_DGA=no 137 ;; 138 *) 139 ;; 140esac 141 142AC_MSG_CHECKING([whether to include PIO support]) 143AM_CONDITIONAL(ATIMISC_CPIO, test "x$ATIMISC_CPIO" = xyes) 144if test "x$ATIMISC_CPIO" = xyes; then 145 AC_MSG_RESULT([yes, PIO]) 146else 147 AC_DEFINE(AVOID_CPIO, 1, [Avoid PIO and use MMIO for atimisc.]) 148 AC_MSG_RESULT([no, MMIO]) 149fi 150 151AC_MSG_CHECKING([whether to include DGA support]) 152AC_MSG_RESULT([$ATIMISC_DGA]) 153AM_CONDITIONAL(ATIMISC_DGA, test "x$ATIMISC_DGA" = xyes) 154if ! test "x$ATIMISC_DGA" = xyes; then 155 AC_DEFINE(AVOID_DGA, 1, [Do not build DGA support.]) 156fi 157 158AC_MSG_CHECKING([whether to include TV Out support]) 159AC_MSG_RESULT([$ATIMISC_TV_OUT]) 160AM_CONDITIONAL(ATIMISC_TV_OUT, test "x$ATIMISC_TV_OUT" = xyes) 161if test "x$ATIMISC_TV_OUT" = xyes; then 162 AC_DEFINE(TV_OUT, 1, [Build TV-Out support for atimisc.]) 163fi 164 165AC_DEFINE(USE_XAA, 1, [Build support for XAA]) 166 167# Properly handle EXA. 168AC_MSG_CHECKING([whether to enable EXA support]) 169if test "x$EXA" = xyes; then 170 AC_MSG_RESULT(yes) 171 172 SAVE_CPPFLAGS="$CPPFLAGS" 173 CPPFLAGS="$CPPFLAGS $XORG_CFLAGS" 174 AC_CHECK_HEADER(exa.h, 175 [have_exa_h="yes"], [have_exa_h="no"]) 176 CPPFLAGS="$SAVE_CPPFLAGS" 177else 178 AC_MSG_RESULT(no) 179fi 180 181SAVE_CPPFLAGS="$CPPFLAGS" 182CPPFLAGS="$CPPFLAGS $XORG_CFLAGS" 183if test "x$have_exa_h" = xyes; then 184 AC_MSG_CHECKING([whether EXA version is at least 2.0.0]) 185 AC_PREPROC_IFELSE([AC_LANG_PROGRAM([[ 186#include "exa.h" 187#if EXA_VERSION_MAJOR < 2 188#error OLD EXA! 189#endif 190 ]])], 191 [USE_EXA=yes], 192 [USE_EXA=no]) 193 AC_MSG_RESULT($USE_EXA) 194 195 if test "x$USE_EXA" = xyes; then 196 AC_DEFINE(USE_EXA, 1, [Build support for Exa]) 197 fi 198fi 199 200AC_CHECK_DECL(XSERVER_LIBPCIACCESS, 201 [XSERVER_LIBPCIACCESS=yes],[XSERVER_LIBPCIACCESS=no], 202 [#include "xorg-server.h"]) 203 204CPPFLAGS="$SAVE_CPPFLAGS" 205 206AM_CONDITIONAL(USE_EXA, test "x$USE_EXA" = xyes) 207 208if test "x$XSERVER_LIBPCIACCESS" = xyes; then 209 PKG_CHECK_MODULES([PCIACCESS], [pciaccess >= 0.8.0]) 210 XORG_CFLAGS="$XORG_CFLAGS $PCIACCESS_CFLAGS" 211fi 212AM_CONDITIONAL(XSERVER_LIBPCIACCESS, test "x$XSERVER_LIBPCIACCESS" = xyes) 213 214AC_SUBST([moduledir]) 215 216DRIVER_NAME=mach64 217AC_SUBST([DRIVER_NAME]) 218 219AC_MSG_NOTICE( 220[Please change the Driver line in xorg.conf from "ati" to "mach64"] 221[ or install the ati wrapper as well:] 222[ git://anongit.freedesktop.org/git/xorg/driver/xf86-video-ati] 223) 224 225AC_CONFIG_FILES([ 226 Makefile 227 src/Makefile 228 man/Makefile 229]) 230AC_OUTPUT 231