2007-11-24 12:04:00 -07:00
dnl Copyright © 2003-2007 Keith Packard, Daniel Stone
2006-11-26 11:13:41 -07:00
dnl
2007-11-24 12:04:00 -07:00
dnl Permission is hereby granted, free of charge, to any person obtaining a
dnl copy of this software and associated documentation files (the "Software"),
dnl to deal in the Software without restriction, including without limitation
dnl the rights to use, copy, modify, merge, publish, distribute, sublicense,
dnl and/or sell copies of the Software, and to permit persons to whom the
dnl Software is furnished to do so, subject to the following conditions:
2006-11-26 11:13:41 -07:00
dnl
2007-11-24 12:04:00 -07:00
dnl The above copyright notice and this permission notice (including the next
dnl paragraph) shall be included in all copies or substantial portions of the
dnl Software.
2006-11-26 11:13:41 -07:00
dnl
2007-11-24 12:04:00 -07:00
dnl THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
dnl IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
dnl FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
dnl THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
dnl LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
dnl FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
dnl DEALINGS IN THE SOFTWARE.
dnl
dnl Authors: Keith Packard <keithp@keithp.com>
dnl Daniel Stone <daniel@fooishbar.org>
dnl an unwitting cast of miscellaneous others
2006-11-26 11:13:41 -07:00
dnl
dnl Process this file with autoconf to create configure.
2012-06-10 07:21:05 -06:00
AC_PREREQ(2.60)
2016-08-09 12:59:50 -06:00
AC_INIT([xorg-server], 1.18.4, [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xorg-server)
RELEASE_DATE="2016-07-19"
RELEASE_NAME="Skordalia"
2006-11-26 11:13:41 -07:00
AC_CONFIG_SRCDIR([Makefile.am])
2014-09-27 11:52:59 -06:00
AC_CONFIG_MACRO_DIR([m4])
2010-07-27 13:02:24 -06:00
AM_INIT_AUTOMAKE([foreign dist-bzip2])
2014-05-02 13:27:46 -06:00
AC_USE_SYSTEM_EXTENSIONS
2006-11-26 11:13:41 -07:00
2011-11-05 07:32:40 -06:00
# Require xorg-macros minimum of 1.14 for XORG_COMPILER_BRAND in XORG_DEFAULT_OPTIONS
2010-07-27 13:02:24 -06:00
m4_ifndef([XORG_MACROS_VERSION],
2011-11-05 07:32:40 -06:00
[m4_fatal([must install xorg-macros 1.14 or later before running autoconf/autogen])])
XORG_MACROS_VERSION(1.14)
2010-07-27 13:02:24 -06:00
XORG_DEFAULT_OPTIONS
XORG_WITH_DOXYGEN(1.6.1)
2011-11-05 07:32:40 -06:00
XORG_CHECK_SGML_DOCTOOLS(1.8)
XORG_ENABLE_DOCS
XORG_ENABLE_DEVEL_DOCS
XORG_WITH_XMLTO(0.0.20)
XORG_WITH_FOP
XORG_WITH_XSLTPROC
XORG_ENABLE_UNIT_TESTS
2012-06-10 07:21:05 -06:00
XORG_LD_WRAP([optional])
2010-07-27 13:02:24 -06:00
2014-05-02 13:27:46 -06:00
m4_ifndef([XORG_FONT_MACROS_VERSION], [m4_fatal([must install font-util 1.1 or later before running autoconf/autogen])])
2010-07-27 13:02:24 -06:00
XORG_FONT_MACROS_VERSION(1.1)
2009-09-06 13:44:18 -06:00
2006-11-26 11:13:41 -07:00
dnl this gets generated by autoheader, and thus contains all the defines. we
dnl don't ever actually use it, internally.
AC_CONFIG_HEADERS(include/do-not-use-config.h)
dnl xorg-server.h is an external header, designed to be included by loadable
dnl drivers.
AC_CONFIG_HEADERS(include/xorg-server.h)
dnl dix-config.h covers most of the DIX (i.e. everything but the DDX, not just
dnl dix/).
AC_CONFIG_HEADERS(include/dix-config.h)
dnl xorg-config.h covers the Xorg DDX.
AC_CONFIG_HEADERS(include/xorg-config.h)
dnl xkb-config.h covers XKB for the Xorg and Xnest DDXs.
AC_CONFIG_HEADERS(include/xkb-config.h)
dnl xwin-config.h covers the XWin DDX.
AC_CONFIG_HEADERS(include/xwin-config.h)
dnl kdrive-config.h covers the kdrive DDX
AC_CONFIG_HEADERS(include/kdrive-config.h)
2010-07-27 13:02:24 -06:00
dnl version-config.h covers the version numbers so they can be bumped without
dnl forcing an entire recompile.x
AC_CONFIG_HEADERS(include/version-config.h)
2006-11-26 11:13:41 -07:00
AM_PROG_AS
AC_PROG_LN_S
2014-09-27 11:52:59 -06:00
LT_PREREQ([2.2])
LT_INIT([disable-static win32-dll])
2006-11-26 11:13:41 -07:00
PKG_PROG_PKG_CONFIG
AC_PROG_LEX
AC_PROG_YACC
2007-11-24 12:04:00 -07:00
AC_SYS_LARGEFILE
2006-11-26 11:13:41 -07:00
XORG_PROG_RAWCPP
2010-07-27 13:02:24 -06:00
# Quoted so that make will expand $(CWARNFLAGS) in makefiles to allow
# easier overrides at build time.
XSERVER_CFLAGS='$(CWARNFLAGS)'
2006-11-26 11:13:41 -07:00
2012-06-10 07:21:05 -06:00
dnl Explicitly add -fno-strict-aliasing since this option should disappear
dnl from util-macros CWARNFLAGS
if test "x$GCC" = xyes ; then
XSERVER_CFLAGS="$XSERVER_CFLAGS -fno-strict-aliasing"
fi
2007-11-24 12:04:00 -07:00
dnl Check for dtrace program (needed to build Xserver dtrace probes)
2008-06-14 18:17:32 -06:00
dnl Also checks for <sys/sdt.h>, since some Linux distros have an
dnl ISDN trace program named dtrace
2007-11-24 12:04:00 -07:00
AC_ARG_WITH(dtrace, AS_HELP_STRING([--with-dtrace=PATH],
[Enable dtrace probes (default: enabled if dtrace found)]),
[WDTRACE=$withval], [WDTRACE=auto])
if test "x$WDTRACE" = "xyes" -o "x$WDTRACE" = "xauto" ; then
AC_PATH_PROG(DTRACE, [dtrace], [not_found], [$PATH:/usr/sbin])
if test "x$DTRACE" = "xnot_found" ; then
if test "x$WDTRACE" = "xyes" ; then
AC_MSG_FAILURE([dtrace requested but not found])
fi
WDTRACE="no"
2008-06-14 18:17:32 -06:00
else
AC_CHECK_HEADER(sys/sdt.h, [HAS_SDT_H="yes"], [HAS_SDT_H="no"])
if test "x$WDTRACE" = "xauto" -a "x$HAS_SDT_H" = "xno" ; then
WDTRACE="no"
fi
2007-11-24 12:04:00 -07:00
fi
fi
if test "x$WDTRACE" != "xno" ; then
AC_DEFINE(XSERVER_DTRACE, 1,
[Define to 1 if the DTrace Xserver provider probes should be built in.])
2010-07-27 13:02:24 -06:00
# Solaris/OpenSolaris require dtrace -G to build dtrace probe information into
# object files, and require linking with those as relocatable objects, not .a
# archives. MacOS X handles all this in the normal compiler toolchain, and on
# some releases (like Tiger), will error out on dtrace -G. For now, other
# platforms with Dtrace ports are assumed to support -G (the FreeBSD and Linux
# ports appear to, based on my web searches, but have not yet been tested).
case $host_os in
darwin*) SPECIAL_DTRACE_OBJECTS=no ;;
*) SPECIAL_DTRACE_OBJECTS=yes ;;
esac
2007-11-24 12:04:00 -07:00
fi
AM_CONDITIONAL(XSERVER_DTRACE, [test "x$WDTRACE" != "xno"])
2010-07-27 13:02:24 -06:00
AM_CONDITIONAL(SPECIAL_DTRACE_OBJECTS, [test "x$SPECIAL_DTRACE_OBJECTS" = "xyes"])
2007-11-24 12:04:00 -07:00
2006-11-26 11:13:41 -07:00
AC_HEADER_DIRENT
AC_HEADER_STDC
2014-09-27 11:52:59 -06:00
AC_CHECK_HEADERS([fcntl.h stdlib.h string.h unistd.h dlfcn.h stropts.h \
fnmatch.h sys/mkdev.h sys/utsname.h])
2006-11-26 11:13:41 -07:00
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
2013-06-07 11:28:45 -06:00
AC_C_TYPEOF
2015-09-16 13:10:19 -06:00
AC_C_BIGENDIAN(AC_DEFINE(X_BYTE_ORDER, X_BIG_ENDIAN, [byte order]),
AC_DEFINE(X_BYTE_ORDER, X_LITTLE_ENDIAN, [byte order]))
2006-11-26 11:13:41 -07:00
AC_CHECK_SIZEOF([unsigned long])
if test "$ac_cv_sizeof_unsigned_long" = 8; then
AC_DEFINE(_XSERVER64, 1, [Define to 1 if unsigned long is 64 bits.])
fi
AC_TYPE_PID_T
2007-11-24 12:04:00 -07:00
# Checks for headers/macros for byte swapping
# Known variants:
# <byteswap.h> bswap_16, bswap_32, bswap_64 (glibc)
# <sys/endian.h> __swap16, __swap32, __swap64 (OpenBSD)
# <sys/endian.h> bswap16, bswap32, bswap64 (other BSD's)
# and a fallback to local macros if none of the above are found
# if <byteswap.h> is found, assume it's the correct version
AC_CHECK_HEADERS([byteswap.h])
# if <sys/endian.h> is found, have to check which version
AC_CHECK_HEADER([sys/endian.h], [HAVE_SYS_ENDIAN_H="yes"], [HAVE_SYS_ENDIAN_H="no"])
if test "x$HAVE_SYS_ENDIAN_H" = "xyes" ; then
AC_MSG_CHECKING([for __swap16 variant of <sys/endian.h> byteswapping macros])
AC_LINK_IFELSE([AC_LANG_PROGRAM([
2009-09-06 13:44:18 -06:00
#include <sys/types.h>
2007-11-24 12:04:00 -07:00
#include <sys/endian.h>
], [
int a = 1, b;
b = __swap16(a);
])
], [SYS_ENDIAN__SWAP='yes'], [SYS_ENDIAN__SWAP='no'])
AC_MSG_RESULT([$SYS_ENDIAN__SWAP])
AC_MSG_CHECKING([for bswap16 variant of <sys/endian.h> byteswapping macros])
AC_LINK_IFELSE([AC_LANG_PROGRAM([
2009-09-06 13:44:18 -06:00
#include <sys/types.h>
2007-11-24 12:04:00 -07:00
#include <sys/endian.h>
], [
int a = 1, b;
b = bswap16(a);
])
], [SYS_ENDIAN_BSWAP='yes'], [SYS_ENDIAN_BSWAP='no'])
AC_MSG_RESULT([$SYS_ENDIAN_BSWAP])
if test "$SYS_ENDIAN_BSWAP" = "yes" ; then
USE_SYS_ENDIAN_H=yes
BSWAP=bswap
else
if test "$SYS_ENDIAN__SWAP" = "yes" ; then
USE_SYS_ENDIAN_H=yes
BSWAP=__swap
else
USE_SYS_ENDIAN_H=no
fi
fi
if test "$USE_SYS_ENDIAN_H" = "yes" ; then
AC_DEFINE([USE_SYS_ENDIAN_H], 1,
[Define to use byteswap macros from <sys/endian.h>])
AC_DEFINE_UNQUOTED([bswap_16], ${BSWAP}16,
[Define to 16-bit byteswap macro])
AC_DEFINE_UNQUOTED([bswap_32], ${BSWAP}32,
[Define to 32-bit byteswap macro])
AC_DEFINE_UNQUOTED([bswap_64], ${BSWAP}64,
[Define to 64-bit byteswap macro])
fi
fi
2008-11-02 08:26:08 -07:00
dnl Check to see if dlopen is in default libraries (like Solaris, which
dnl has it in libc), or if libdl is needed to get it.
AC_CHECK_FUNC([dlopen], [],
AC_CHECK_LIB([dl], [dlopen], DLOPEN_LIBS="-ldl"))
2010-07-27 13:02:24 -06:00
AC_SUBST(DLOPEN_LIBS)
2008-11-02 08:26:08 -07:00
2006-11-26 11:13:41 -07:00
dnl Checks for library functions.
2012-06-10 07:21:05 -06:00
AC_CHECK_FUNCS([backtrace ffs geteuid getuid issetugid getresuid \
2015-09-16 13:10:19 -06:00
getdtablesize getifaddrs getpeereid getpeerucred getprogname getzoneid \
2016-05-29 06:02:34 -06:00
mmap posix_fallocate seteuid shmctl64 strncasecmp vasprintf vsnprintf \
walkcontext])
AC_REPLACE_FUNCS([reallocarray strcasecmp strcasestr strlcat strlcpy strndup])
2012-06-10 07:21:05 -06:00
2015-09-16 13:10:19 -06:00
AC_CHECK_DECLS([program_invocation_short_name], [], [], [[#include <errno.h>]])
2016-05-29 06:02:34 -06:00
dnl Check for SO_PEERCRED #define
AC_CACHE_CHECK([for SO_PEERCRED in sys/socket.h],
[xorg_cv_sys_have_so_peercred],
[AC_EGREP_CPP(yes_have_so_peercred,[
#include <sys/types.h>
#include <sys/socket.h>
#ifdef SO_PEERCRED
yes_have_so_peercred
#endif
],
[xorg_cv_sys_have_so_peercred=yes],
[xorg_cv_sys_have_so_peercred=no])])
dnl define NO_LOCAL_CLIENT_CRED if no getpeereid, getpeerucred or SO_PEERCRED
if test "x$ac_cv_func_getpeereid" = xno && test "x$ac_cv_func_getpeerucred" = xno && test "x$xorg_cv_sys_have_so_peercred" = xno ; then
AC_DEFINE([NO_LOCAL_CLIENT_CRED], 1, [Define to 1 if no local socket credentials interface exists])
fi
2012-06-10 07:21:05 -06:00
dnl Find the math libary, then check for cbrt function in it.
2006-11-26 11:13:41 -07:00
AC_CHECK_LIB(m, sqrt)
2012-06-10 07:21:05 -06:00
AC_CHECK_FUNCS([cbrt])
2006-11-26 11:13:41 -07:00
AC_CHECK_HEADERS([ndbm.h dbm.h rpcsvc/dbm.h])
dnl AGPGART headers
2010-07-27 13:02:24 -06:00
AC_CHECK_HEADERS([linux/agpgart.h sys/agpio.h sys/agpgart.h], AGP=yes)
2006-11-26 11:13:41 -07:00
AM_CONDITIONAL(AGP, [test "x$AGP" = xyes])
dnl fbdev header
AC_CHECK_HEADERS([linux/fb.h], FBDEV=yes)
AM_CONDITIONAL(FBDEVHW, [test "x$FBDEV" = xyes])
dnl FreeBSD kldload support (sys/linker.h)
AC_CHECK_HEADERS([sys/linker.h],
[ac_cv_sys_linker_h=yes],
[ac_cv_sys_linker_h=no],
[#include <sys/param.h>])
AM_CONDITIONAL(FREEBSD_KLDLOAD, [test "x$ac_cv_sys_linker_h" = xyes])
AC_CACHE_CHECK([for SYSV IPC],
ac_cv_sysv_ipc,
2014-09-27 11:52:59 -06:00
[AC_LINK_IFELSE([AC_LANG_PROGRAM([[
2007-04-10 13:02:08 -06:00
#include <sys/types.h>
#include <sys/ipc.h>
2006-11-26 11:13:41 -07:00
#include <sys/shm.h>
2013-06-07 11:28:45 -06:00
#include <sys/stat.h>
2014-09-27 11:52:59 -06:00
]],[[
2007-03-03 04:31:18 -07:00
{
2006-11-26 11:13:41 -07:00
int id;
2013-06-07 11:28:45 -06:00
id = shmget(IPC_PRIVATE, 512, S_IRUSR | S_IWUSR);
2006-11-26 11:13:41 -07:00
if (id < 0) return -1;
return shmctl(id, IPC_RMID, 0);
2014-09-27 11:52:59 -06:00
}]])],
[ac_cv_sysv_ipc=yes],
[ac_cv_sysv_ipc=no])])
2006-11-26 11:13:41 -07:00
if test "x$ac_cv_sysv_ipc" = xyes; then
AC_DEFINE(HAVE_SYSV_IPC, 1, [Define to 1 if SYSV IPC is available])
fi
dnl OpenBSD /dev/xf86 aperture driver
if test -c /dev/xf86 ; then
AC_DEFINE(HAS_APERTURE_DRV, 1, [System has /dev/xf86 aperture driver])
fi
2007-04-17 16:03:42 -06:00
dnl BSD APM support
AC_CHECK_HEADER([machine/apmvar.h],[
AC_CHECK_HEADER([sys/event.h],
ac_cv_BSD_KQUEUE_APM=yes,
ac_cv_BSD_APM=yes)])
AM_CONDITIONAL(BSD_APM, [test "x$ac_cv_BSD_APM" = xyes])
AM_CONDITIONAL(BSD_KQUEUE_APM, [test "x$ac_cv_BSD_KQUEUE_APM" = xyes])
2014-05-02 13:27:46 -06:00
dnl glibc backtrace support check
2006-11-26 11:13:41 -07:00
AC_CHECK_HEADER([execinfo.h],[
AC_CHECK_LIB(c, backtrace, [
AC_DEFINE(HAVE_BACKTRACE, 1, [Has backtrace support])
AC_DEFINE(HAVE_EXECINFO_H, 1, [Have execinfo.h])
])]
)
dnl ---------------------------------------------------------------------------
dnl Bus options and CPU capabilities. Replaces logic in
dnl hw/xfree86/os-support/bus/Makefile.am, among others.
dnl ---------------------------------------------------------------------------
DEFAULT_INT10="x86emu"
dnl Override defaults as needed for specific platforms:
case $host_cpu in
alpha*)
ALPHA_VIDEO=yes
case $host_os in
2008-11-02 08:26:08 -07:00
*freebsd*) SYS_LIBS=-lio ;;
2006-11-26 11:13:41 -07:00
*netbsd*) AC_DEFINE(USE_ALPHA_PIO, 1, [NetBSD PIO alpha IO]) ;;
2007-01-03 06:20:49 -07:00
*openbsd*) SYS_LIBS=-lalpha ;;
2006-11-26 11:13:41 -07:00
esac
2008-11-02 08:26:08 -07:00
GLX_ARCH_DEFINES="-D__GLX_ALIGN64 -mieee"
2006-11-26 11:13:41 -07:00
;;
arm*)
ARM_VIDEO=yes
2014-09-27 11:52:59 -06:00
DEFAULT_INT10="stub"
2006-11-26 11:13:41 -07:00
;;
i*86)
I386_VIDEO=yes
case $host_os in
*freebsd*) AC_DEFINE(USE_DEV_IO) ;;
2008-06-14 18:17:32 -06:00
*dragonfly*) AC_DEFINE(USE_DEV_IO) ;;
2006-11-26 11:13:41 -07:00
*netbsd*) AC_DEFINE(USE_I386_IOPL)
SYS_LIBS=-li386
;;
*openbsd*) AC_DEFINE(USE_I386_IOPL)
SYS_LIBS=-li386
;;
esac
;;
powerpc*)
PPC_VIDEO=yes
case $host_os in
*freebsd*) DEFAULT_INT10=stub ;;
esac
;;
2013-07-15 07:23:17 -06:00
m88k)
LUNA88K_VIDEO=yes
BSD_ARCH_SOURCES="luna88k_video.c ioperm_noop.c"
;;
2008-01-04 06:44:23 -07:00
mips*)
SGI_VIDEO=yes
BSD_ARCH_SOURCES="sgi_video.c ioperm_noop.c"
;;
2006-11-26 11:13:41 -07:00
sparc*)
SPARC64_VIDEO=yes
BSD_ARCH_SOURCES="sparc64_video.c ioperm_noop.c"
2008-11-02 08:26:08 -07:00
GLX_ARCH_DEFINES="-D__GLX_ALIGN64"
2006-11-26 11:13:41 -07:00
;;
x86_64*|amd64*)
I386_VIDEO=yes
case $host_os in
*freebsd*) AC_DEFINE(USE_DEV_IO, 1, [BSD /dev/io]) ;;
2008-06-14 18:17:32 -06:00
*dragonfly*) AC_DEFINE(USE_DEV_IO, 1, [BSD /dev/io]) ;;
2006-11-26 11:13:41 -07:00
*netbsd*) AC_DEFINE(USE_I386_IOPL, 1, [BSD i386 iopl])
SYS_LIBS=-lx86_64
;;
*openbsd*) AC_DEFINE(USE_AMD64_IOPL, 1, [BSD AMD64 iopl])
SYS_LIBS=-lamd64
;;
esac
2008-11-02 08:26:08 -07:00
GLX_ARCH_DEFINES="-D__GLX_ALIGN64"
;;
ia64*)
GLX_ARCH_DEFINES="-D__GLX_ALIGN64"
;;
s390*)
GLX_ARCH_DEFINES="-D__GLX_ALIGN64"
2006-11-26 11:13:41 -07:00
;;
2011-01-02 06:29:50 -07:00
hppa*)
case $host_os in
*openbsd*) HPPA_VIDEO=yes
;;
esac
;;
2006-11-26 11:13:41 -07:00
esac
2008-11-02 08:26:08 -07:00
AC_SUBST(GLX_ARCH_DEFINES)
2006-11-26 11:13:41 -07:00
dnl BSD *_video.c selection
AM_CONDITIONAL(ALPHA_VIDEO, [test "x$ALPHA_VIDEO" = xyes])
AM_CONDITIONAL(ARM_VIDEO, [test "x$ARM_VIDEO" = xyes])
2007-03-04 12:52:11 -07:00
AM_CONDITIONAL(HPPA_VIDEO, [test "x$HPPA_VIDEO" = xyes])
2006-11-26 11:13:41 -07:00
AM_CONDITIONAL(I386_VIDEO, [test "x$I386_VIDEO" = xyes])
2013-07-15 07:23:17 -06:00
AM_CONDITIONAL(LUNA88K_VIDEO, [test "x$LUNA88K_VIDEO" = xyes])
2006-11-26 11:13:41 -07:00
AM_CONDITIONAL(PPC_VIDEO, [test "x$PPC_VIDEO" = xyes])
2008-01-04 06:44:23 -07:00
AM_CONDITIONAL(SGI_VIDEO, [test "x$SGI_VIDEO" = xyes])
2006-11-26 11:13:41 -07:00
AM_CONDITIONAL(SPARC64_VIDEO, [test "x$SPARC64_VIDEO" = xyes])
DRI=no
2010-07-27 13:02:24 -06:00
USE_SIGIO_BY_DEFAULT="yes"
2006-11-26 11:13:41 -07:00
dnl it would be nice to autodetect these *CONS_SUPPORTs
case $host_os in
2008-06-14 18:17:32 -06:00
*freebsd* | *dragonfly*)
2006-11-26 11:13:41 -07:00
case $host_os in
kfreebsd*-gnu) ;;
*) AC_DEFINE(CSRG_BASED, 1, [System is BSD-like]) ;;
esac
AC_DEFINE(PCCONS_SUPPORT, 1, [System has PC console])
AC_DEFINE(PCVT_SUPPORT, 1, [System has PCVT console])
AC_DEFINE(SYSCONS_SUPPORT, 1, [System has syscons console])
DRI=yes
;;
*netbsd*)
AC_DEFINE(CSRG_BASED, 1, [System is BSD-like])
AC_DEFINE(PCCONS_SUPPORT, 1, [System has PC console])
2007-11-24 12:04:00 -07:00
AC_DEFINE(PCVT_SUPPORT, 1, [System has PCVT console])
2006-11-26 11:13:41 -07:00
AC_DEFINE(WSCONS_SUPPORT, 1, [System has wscons console])
DRI=yes
;;
*openbsd*)
AC_DEFINE(CSRG_BASED, 1, [System is BSD-like])
AC_DEFINE(WSCONS_SUPPORT, 1, [System has wscons console])
2010-09-01 03:32:32 -06:00
# Disable use of SIGIO by default; it breaks multi-card
# configurations. We don't want to run thousands of lines of
# potentially signal-unsafe code for no particular benefit.
USE_SIGIO_BY_DEFAULT="no"
2006-11-26 11:13:41 -07:00
;;
*linux*)
DRI=yes
;;
2007-11-24 12:04:00 -07:00
*solaris*)
PKG_CHECK_EXISTS(libdrm, DRI=yes, DRI=no)
2010-07-27 13:02:24 -06:00
# Disable use of SIGIO by default until some system bugs are
# fixed - see Sun/OpenSolaris bug id 6879897
USE_SIGIO_BY_DEFAULT="no"
2007-11-24 12:04:00 -07:00
;;
2009-09-06 13:44:18 -06:00
darwin*)
AC_DEFINE(CSRG_BASED, 1, [System is BSD-like])
;;
2013-06-07 11:28:45 -06:00
cygwin*|mingw*)
2016-05-29 06:02:34 -06:00
CFLAGS="$CFLAGS -DFD_SETSIZE=512"
2010-07-27 13:02:24 -06:00
;;
2006-11-26 11:13:41 -07:00
esac
2007-11-24 12:04:00 -07:00
dnl augment XORG_RELEASE_VERSION for our snapshot number and to expose the
dnl major number
PVMAJOR=`echo $PACKAGE_VERSION | cut -d . -f 1`
2009-09-06 13:44:18 -06:00
PVS=`echo $PACKAGE_VERSION | cut -d . -f 4 | cut -d - -f 1`
2007-11-24 12:04:00 -07:00
if test "x$PVS" = "x"; then
PVS="0"
2006-11-26 11:13:41 -07:00
fi
2007-11-24 12:04:00 -07:00
VENDOR_RELEASE="((($PVMAJOR) * 10000000) + (($PVM) * 100000) + (($PVP) * 1000) + $PVS)"
VENDOR_MAN_VERSION="Version ${PACKAGE_VERSION}"
2006-11-26 11:13:41 -07:00
2007-11-24 12:04:00 -07:00
VENDOR_NAME="The X.Org Foundation"
VENDOR_NAME_SHORT="X.Org"
VENDOR_WEB="http://wiki.x.org"
2006-11-26 11:13:41 -07:00
dnl Build options.
AC_ARG_ENABLE(werror, AS_HELP_STRING([--enable-werror],
2010-07-27 13:02:24 -06:00
[Obsolete - use --enable-strict-compilation instead]),
AC_MSG_ERROR([--enable-werror has been replaced by --enable-strict-compilation]))
2006-11-26 11:13:41 -07:00
AC_ARG_ENABLE(debug, AS_HELP_STRING([--enable-debug],
[Enable debugging (default: disabled)]),
[DEBUGGING=$enableval], [DEBUGGING=no])
2010-07-27 13:02:24 -06:00
AC_ARG_ENABLE(use-sigio-by-default, AS_HELP_STRING([--enable-use-sigio-by-default]
[Enable SIGIO input handlers by default (default: $USE_SIGIO_BY_DEFAULT)]),
[USE_SIGIO_BY_DEFAULT=$enableval], [])
2006-11-26 11:13:41 -07:00
AC_ARG_WITH(int10, AS_HELP_STRING([--with-int10=BACKEND], [int10 backend: vm86, x86emu or stub]),
[INT10="$withval"],
[INT10="$DEFAULT_INT10"])
2007-11-24 12:04:00 -07:00
AC_ARG_WITH(vendor-name, AS_HELP_STRING([--with-vendor-name=VENDOR],
2006-11-26 11:13:41 -07:00
[Vendor string reported by the server]),
2007-11-24 12:04:00 -07:00
[ VENDOR_NAME="$withval" ], [])
AC_ARG_WITH(vendor-name-short, AS_HELP_STRING([--with-vendor-name-short=VENDOR],
2006-11-26 11:13:41 -07:00
[Short version of vendor string reported by the server]),
2007-11-24 12:04:00 -07:00
[ VENDOR_NAME_SHORT="$withval" ], [])
2006-11-26 11:13:41 -07:00
AC_ARG_WITH(vendor-web, AS_HELP_STRING([--with-vendor-web=URL],
[Vendor web address reported by the server]),
2007-11-24 12:04:00 -07:00
[ VENDOR_WEB="$withval" ], [])
2006-11-26 11:13:41 -07:00
AC_ARG_WITH(module-dir, AS_HELP_STRING([--with-module-dir=DIR],
[Directory where modules are installed (default: $libdir/xorg/modules)]),
[ moduledir="$withval" ],
[ moduledir="${libdir}/xorg/modules" ])
AC_ARG_WITH(log-dir, AS_HELP_STRING([--with-log-dir=DIR],
[Directory where log files are kept (default: $localstatedir/log)]),
[ logdir="$withval" ],
[ logdir="$localstatedir/log" ])
AC_ARG_WITH(builder-addr, AS_HELP_STRING([--with-builder-addr=ADDRESS],
[Builder address (default: xorg@lists.freedesktop.org)]),
[ BUILDERADDR="$withval" ],
[ BUILDERADDR="xorg@lists.freedesktop.org" ])
2007-11-24 12:04:00 -07:00
AC_ARG_WITH(os-name, AS_HELP_STRING([--with-os-name=OSNAME], [Name of OS (default: output of "uname -srm")]),
2006-11-26 11:13:41 -07:00
[ OSNAME="$withval" ],
2007-11-24 12:04:00 -07:00
[ OSNAME=`uname -srm` ])
2006-11-26 11:13:41 -07:00
AC_ARG_WITH(os-vendor, AS_HELP_STRING([--with-os-vendor=OSVENDOR], [Name of OS vendor]),
[ OSVENDOR="$withval" ],
[ OSVENDOR="" ])
2007-11-24 12:04:00 -07:00
AC_ARG_WITH(builderstring, AS_HELP_STRING([--with-builderstring=BUILDERSTRING], [Additional builder string]),
[ BUILDERSTRING="$withval" ]
[ ])
2015-06-20 04:03:56 -06:00
AC_ARG_ENABLE(listen-tcp, AS_HELP_STRING([--enable-listen-tcp],
[Listen on TCP by default (default:disabled)]),
[LISTEN_TCP=$enableval], [LISTEN_TCP=no])
AC_ARG_ENABLE(listen-unix, AS_HELP_STRING([--disable-listen-unix],
[Listen on Unix by default (default:enabled)]),
[LISTEN_UNIX=$enableval], [LISTEN_UNIX=yes])
AC_ARG_ENABLE(listen-local, AS_HELP_STRING([--disable-listen-local],
[Listen on local by default (default:enabled)]),
[LISTEN_LOCAL=$enableval], [LISTEN_LOCAL=yes])
2010-07-27 13:02:24 -06:00
dnl Determine font path
XORG_FONTROOTDIR
XORG_FONTSUBDIR(FONTMISCDIR, fontmiscdir, misc)
XORG_FONTSUBDIR(FONTOTFDIR, fontotfdir, OTF)
XORG_FONTSUBDIR(FONTTTFDIR, fontttfdir, TTF)
XORG_FONTSUBDIR(FONTTYPE1DIR, fonttype1dir, Type1)
XORG_FONTSUBDIR(FONT75DPIDIR, font75dpidir, 75dpi)
XORG_FONTSUBDIR(FONT100DPIDIR, font100dpidir, 100dpi)
2014-09-27 11:52:59 -06:00
dnl Uses --with-default-font-path if set, otherwise uses standard
dnl subdirectories of FONTROOTDIR. Some distros set the default font path to
dnl "catalogue:/etc/X11/fontpath.d,built-ins"
2010-07-27 13:02:24 -06:00
DEFAULT_FONT_PATH="${FONTMISCDIR}/,${FONTTTFDIR}/,${FONTOTFDIR}/,${FONTTYPE1DIR}/,${FONT100DPIDIR}/,${FONT75DPIDIR}/"
2014-09-27 11:52:59 -06:00
case $host_os in
darwin*) DEFAULT_FONT_PATH="${DEFAULT_FONT_PATH},/Library/Fonts,/System/Library/Fonts" ;;
esac
2006-11-26 11:13:41 -07:00
AC_ARG_WITH(default-font-path, AS_HELP_STRING([--with-default-font-path=PATH], [Comma separated list of font dirs]),
[ FONTPATH="$withval" ],
[ FONTPATH="${DEFAULT_FONT_PATH}" ])
2010-07-27 13:02:24 -06:00
AC_MSG_CHECKING([for default font path])
AC_MSG_RESULT([$FONTPATH])
2006-11-26 11:13:41 -07:00
AC_ARG_WITH(xkb-path, AS_HELP_STRING([--with-xkb-path=PATH], [Path to XKB base dir (default: ${datadir}/X11/xkb)]),
[ XKBPATH="$withval" ],
[ XKBPATH="${datadir}/X11/xkb" ])
AC_ARG_WITH(xkb-output, AS_HELP_STRING([--with-xkb-output=PATH], [Path to XKB output dir (default: ${datadir}/X11/xkb/compiled)]),
[ XKBOUTPUT="$withval" ],
[ XKBOUTPUT="compiled" ])
2010-07-27 13:02:24 -06:00
AC_ARG_WITH(default-xkb-rules, AS_HELP_STRING([--with-default-xkb-rules=RULES],
[Keyboard ruleset (default: base/evdev)]),
[ XKB_DFLT_RULES="$withval" ],
[ XKB_DFLT_RULES="" ])
AC_ARG_WITH(default-xkb-model, AS_HELP_STRING([--with-default-xkb-model=MODEL],
[Keyboard model (default: pc105)]),
[ XKB_DFLT_MODEL="$withval" ],
[ XKB_DFLT_MODEL="pc105" ])
AC_ARG_WITH(default-xkb-layout, AS_HELP_STRING([--with-default-xkb-layout=LAYOUT],
[Keyboard layout (default: us)]),
[ XKB_DFLT_LAYOUT="$withval" ],
[ XKB_DFLT_LAYOUT="us" ])
AC_ARG_WITH(default-xkb-variant, AS_HELP_STRING([--with-default-xkb-variant=VARIANT],
[Keyboard variant (default: (none))]),
[ XKB_DFLT_VARIANT="$withval" ],
[ XKB_DFLT_VARIANT="" ])
AC_ARG_WITH(default-xkb-options, AS_HELP_STRING([--with-default-xkb-options=OPTIONS],
[Keyboard layout options (default: (none))]),
[ XKB_DFLT_OPTIONS="$withval" ],
[ XKB_DFLT_OPTIONS="" ])
2008-11-02 08:26:08 -07:00
AC_ARG_WITH(serverconfig-path, AS_HELP_STRING([--with-serverconfig-path=PATH],
[Directory where ancillary server config files are installed (default: ${libdir}/xorg)]),
2007-11-24 12:04:00 -07:00
[ SERVERCONFIG="$withval" ],
2008-11-02 08:26:08 -07:00
[ SERVERCONFIG="${libdir}/xorg" ])
AC_ARG_WITH(apple-applications-dir,AS_HELP_STRING([--with-apple-applications-dir=PATH], [Path to the Applications directory (default: /Applications/Utilities)]),
[ APPLE_APPLICATIONS_DIR="${withval}" ],
[ APPLE_APPLICATIONS_DIR="/Applications/Utilities" ])
AC_SUBST([APPLE_APPLICATIONS_DIR])
2009-09-06 13:44:18 -06:00
AC_ARG_WITH(apple-application-name,AS_HELP_STRING([--with-apple-application-name=NAME], [Name for the .app (default: X11)]),
[ APPLE_APPLICATION_NAME="${withval}" ],
[ APPLE_APPLICATION_NAME="X11" ])
AC_SUBST([APPLE_APPLICATION_NAME])
2016-08-09 12:59:50 -06:00
AC_ARG_WITH(bundle-id-prefix, AS_HELP_STRING([--with-bundle-id-prefix=RDNS_PREFIX], [Prefix to use for bundle identifiers (default: org.x)]),
2011-11-05 07:32:40 -06:00
[ BUNDLE_ID_PREFIX="${withval}" ])
AC_SUBST([BUNDLE_ID_PREFIX])
AC_DEFINE_UNQUOTED(BUNDLE_ID_PREFIX, "$BUNDLE_ID_PREFIX", [Prefix to use for bundle identifiers])
2016-08-09 12:59:50 -06:00
m4_define(DEFAULT_BUNDLE_VERSION, m4_esyscmd([echo ]AC_PACKAGE_VERSION[ | cut -f1-3 -d. | tr -d '\n']))
AC_ARG_WITH(bundle-version, AS_HELP_STRING([--with-bundle-version=VERSION], [Version to use for X11.app's CFBundleVersion (default: ]DEFAULT_BUNDLE_VERSION[)]),
[ BUNDLE_VERSION="${withval}" ],
[ BUNDLE_VERSION="DEFAULT_BUNDLE_VERSION" ])
AC_SUBST([BUNDLE_VERSION])
AC_ARG_WITH(bundle-version-string, AS_HELP_STRING([--with-bundle-version-string=VERSION], [Version to use for X11.app's CFBundleShortVersionString (default: ]AC_PACKAGE_VERSION[)]),
[ BUNDLE_VERSION_STRING="${withval}" ],
[ BUNDLE_VERSION_STRING="${PACKAGE_VERSION}" ])
AC_SUBST([BUNDLE_VERSION_STRING])
2010-07-27 13:02:24 -06:00
AC_ARG_ENABLE(sparkle,AS_HELP_STRING([--enable-sparkle], [Enable updating of X11.app using the Sparkle Framework (default: disabled)]),
[ XQUARTZ_SPARKLE="${enableval}" ],
[ XQUARTZ_SPARKLE="no" ])
AC_SUBST([XQUARTZ_SPARKLE])
2016-08-09 12:59:50 -06:00
AC_ARG_WITH(sparkle-feed-url, AS_HELP_STRING([--with-sparkle-feed-url=URL], [URL for the Sparkle feed (default: https://www.xquartz.org/releases/sparkle/release.xml)]),
[ XQUARTZ_SPARKLE_FEED_URL="${withval}" ],
[ XQUARTZ_SPARKLE_FEED_URL="https://www.xquartz.org/releases/sparkle/release.xml" ])
AC_SUBST([XQUARTZ_SPARKLE_FEED_URL])
2014-09-27 11:52:59 -06:00
AC_ARG_ENABLE(visibility, AS_HELP_STRING([--enable-visibility], [Enable symbol visibility (default: auto)]),
2010-07-27 13:02:24 -06:00
[SYMBOL_VISIBILITY=$enableval],
[SYMBOL_VISIBILITY=auto])
2007-11-24 12:04:00 -07:00
dnl GLX build options
AC_ARG_ENABLE(aiglx, AS_HELP_STRING([--enable-aiglx], [Build accelerated indirect GLX (default: enabled)]),
[AIGLX=$enableval],
[AIGLX=yes])
2016-05-29 06:02:34 -06:00
2011-11-05 07:32:40 -06:00
AC_ARG_WITH(khronos-spec-dir, AS_HELP_STRING([--with-khronos-spec-dir=PATH], [Path to Khronos OpenGL registry database files (default: auto)]),
[KHRONOS_SPEC_DIR="${withval}"],
[KHRONOS_SPEC_DIR=auto])
2006-11-26 11:13:41 -07:00
2006-11-28 13:29:31 -07:00
dnl Privsep
AC_ARG_ENABLE(privsep,
AC_HELP_STRING([--enable-privsep],
[Build support for X server privilege separation (default is NO)]),
[ENABLE_PRIVSEP="$enableval"], [ENABLE_PRIVSEP="no"])
if test x$ENABLE_PRIVSEP = xyes ; then
AC_DEFINE(X_PRIVSEP, 1, [Use X server privilege separation])
fi
AM_CONDITIONAL(X_PRIVSEP, [test x$ENABLE_PRIVSEP = xyes])
2006-11-26 11:13:41 -07:00
dnl Extensions.
AC_ARG_ENABLE(composite, AS_HELP_STRING([--disable-composite], [Build Composite extension (default: enabled)]), [COMPOSITE=$enableval], [COMPOSITE=yes])
2013-06-07 11:28:45 -06:00
AC_ARG_ENABLE(mitshm, AS_HELP_STRING([--disable-mitshm], [Build SHM extension (default: auto)]), [MITSHM=$enableval], [MITSHM=auto])
2006-11-26 11:13:41 -07:00
AC_ARG_ENABLE(xres, AS_HELP_STRING([--disable-xres], [Build XRes extension (default: enabled)]), [RES=$enableval], [RES=yes])
2010-07-27 13:02:24 -06:00
AC_ARG_ENABLE(record, AS_HELP_STRING([--disable-record], [Build Record extension (default: enabled)]), [RECORD=$enableval], [RECORD=yes])
2006-11-26 11:13:41 -07:00
AC_ARG_ENABLE(xv, AS_HELP_STRING([--disable-xv], [Build Xv extension (default: enabled)]), [XV=$enableval], [XV=yes])
AC_ARG_ENABLE(xvmc, AS_HELP_STRING([--disable-xvmc], [Build XvMC extension (default: enabled)]), [XVMC=$enableval], [XVMC=yes])
2007-11-24 12:04:00 -07:00
AC_ARG_ENABLE(dga, AS_HELP_STRING([--disable-dga], [Build DGA extension (default: auto)]), [DGA=$enableval], [DGA=auto])
2006-11-26 11:13:41 -07:00
AC_ARG_ENABLE(screensaver, AS_HELP_STRING([--disable-screensaver], [Build ScreenSaver extension (default: enabled)]), [SCREENSAVER=$enableval], [SCREENSAVER=yes])
AC_ARG_ENABLE(xdmcp, AS_HELP_STRING([--disable-xdmcp], [Build XDMCP extension (default: auto)]), [XDMCP=$enableval], [XDMCP=auto])
AC_ARG_ENABLE(xdm-auth-1, AS_HELP_STRING([--disable-xdm-auth-1], [Build XDM-Auth-1 extension (default: auto)]), [XDMAUTH=$enableval], [XDMAUTH=auto])
AC_ARG_ENABLE(glx, AS_HELP_STRING([--disable-glx], [Build GLX extension (default: enabled)]), [GLX=$enableval], [GLX=yes])
AC_ARG_ENABLE(dri, AS_HELP_STRING([--enable-dri], [Build DRI extension (default: auto)]), [DRI=$enableval])
2009-09-06 13:44:18 -06:00
AC_ARG_ENABLE(dri2, AS_HELP_STRING([--enable-dri2], [Build DRI2 extension (default: auto)]), [DRI2=$enableval], [DRI2=auto])
2014-05-02 13:27:46 -06:00
AC_ARG_ENABLE(dri3, AS_HELP_STRING([--enable-dri3], [Build DRI3 extension (default: auto)]), [DRI3=$enableval], [DRI3=auto])
AC_ARG_ENABLE(present, AS_HELP_STRING([--disable-present], [Build Present extension (default: enabled)]), [PRESENT=$enableval], [PRESENT=yes])
2006-11-26 11:13:41 -07:00
AC_ARG_ENABLE(xinerama, AS_HELP_STRING([--disable-xinerama], [Build Xinerama extension (default: enabled)]), [XINERAMA=$enableval], [XINERAMA=yes])
2007-11-24 12:04:00 -07:00
AC_ARG_ENABLE(xf86vidmode, AS_HELP_STRING([--disable-xf86vidmode], [Build XF86VidMode extension (default: auto)]), [XF86VIDMODE=$enableval], [XF86VIDMODE=auto])
AC_ARG_ENABLE(xace, AS_HELP_STRING([--disable-xace], [Build X-ACE extension (default: enabled)]), [XACE=$enableval], [XACE=yes])
2010-07-27 13:02:24 -06:00
AC_ARG_ENABLE(xselinux, AS_HELP_STRING([--enable-xselinux], [Build SELinux extension (default: disabled)]), [XSELINUX=$enableval], [XSELINUX=no])
AC_ARG_ENABLE(xcsecurity, AS_HELP_STRING([--enable-xcsecurity], [Build Security extension (default: disabled)]), [XCSECURITY=$enableval], [XCSECURITY=no])
2006-11-26 11:13:41 -07:00
AC_ARG_ENABLE(tslib, AS_HELP_STRING([--enable-tslib], [Build kdrive tslib touchscreen support (default: disabled)]), [TSLIB=$enableval], [TSLIB=no])
AC_ARG_ENABLE(dbe, AS_HELP_STRING([--disable-dbe], [Build DBE extension (default: enabled)]), [DBE=$enableval], [DBE=yes])
2010-07-27 13:02:24 -06:00
AC_ARG_ENABLE(xf86bigfont, AS_HELP_STRING([--enable-xf86bigfont], [Build XF86 Big Font extension (default: disabled)]), [XF86BIGFONT=$enableval], [XF86BIGFONT=no])
2006-11-26 11:13:41 -07:00
AC_ARG_ENABLE(dpms, AS_HELP_STRING([--disable-dpms], [Build DPMS extension (default: enabled)]), [DPMSExtension=$enableval], [DPMSExtension=yes])
2010-07-27 13:02:24 -06:00
AC_ARG_ENABLE(config-udev, AS_HELP_STRING([--enable-config-udev], [Build udev support (default: auto)]), [CONFIG_UDEV=$enableval], [CONFIG_UDEV=auto])
2013-06-07 11:28:45 -06:00
AC_ARG_ENABLE(config-udev-kms, AS_HELP_STRING([--enable-config-udev-kms], [Build udev kms support (default: auto)]), [CONFIG_UDEV_KMS=$enableval], [CONFIG_UDEV_KMS=auto])
2007-11-24 12:04:00 -07:00
AC_ARG_ENABLE(config-hal, AS_HELP_STRING([--disable-config-hal], [Build HAL support (default: auto)]), [CONFIG_HAL=$enableval], [CONFIG_HAL=auto])
2011-06-29 13:55:01 -06:00
AC_ARG_ENABLE(config-wscons, AS_HELP_STRING([--enable-config-wscons], [Build wscons config support (default: auto)]), [CONFIG_WSCONS=$enableval], [CONFIG_WSCONS=auto])
2006-11-26 11:13:41 -07:00
AC_ARG_ENABLE(xfree86-utils, AS_HELP_STRING([--enable-xfree86-utils], [Build xfree86 DDX utilities (default: enabled)]), [XF86UTILS=$enableval], [XF86UTILS=yes])
2010-07-27 13:02:24 -06:00
AC_ARG_ENABLE(vgahw, AS_HELP_STRING([--enable-vgahw], [Build Xorg with vga access (default: enabled)]), [VGAHW=$enableval], [VGAHW=yes])
AC_ARG_ENABLE(vbe, AS_HELP_STRING([--enable-vbe], [Build Xorg with VBE module (default: enabled)]), [VBE=$enableval], [VBE=yes])
AC_ARG_ENABLE(int10-module, AS_HELP_STRING([--enable-int10-module], [Build Xorg with int10 module (default: enabled)]), [INT10MODULE=$enableval], [INT10MODULE=yes])
AC_ARG_ENABLE(windowswm, AS_HELP_STRING([--enable-windowswm], [Build XWin with WindowsWM extension (default: no)]), [WINDOWSWM=$enableval], [WINDOWSWM=no])
2010-12-05 08:36:02 -07:00
AC_ARG_ENABLE(libdrm, AS_HELP_STRING([--enable-libdrm], [Build Xorg with libdrm support (default: enabled)]), [DRM=$enableval],[DRM=yes])
2011-11-05 07:32:40 -06:00
AC_ARG_ENABLE(clientids, AS_HELP_STRING([--disable-clientids], [Build Xorg with client ID tracking (default: enabled)]), [CLIENTIDS=$enableval], [CLIENTIDS=yes])
2012-06-10 07:21:05 -06:00
AC_ARG_ENABLE(pciaccess, AS_HELP_STRING([--enable-pciaccess], [Build Xorg with pciaccess library (default: enabled)]), [PCI=$enableval], [PCI=yes])
2014-09-27 11:52:59 -06:00
AC_ARG_ENABLE(linux_acpi, AS_HELP_STRING([--disable-linux-acpi], [Disable building ACPI support on Linux (if available).]), [enable_linux_acpi=$enableval], [enable_linux_acpi=yes])
AC_ARG_ENABLE(linux_apm, AS_HELP_STRING([--disable-linux-apm], [Disable building APM support on Linux (if available).]), [enable_linux_apm=$enableval], [enable_linux_apm=yes])
AC_ARG_ENABLE(systemd-logind, AS_HELP_STRING([--enable-systemd-logind], [Build systemd-logind support (default: auto)]), [SYSTEMD_LOGIND=$enableval], [SYSTEMD_LOGIND=auto])
AC_ARG_ENABLE(suid-wrapper, AS_HELP_STRING([--enable-suid-wrapper], [Build suid-root wrapper for legacy driver support on rootless xserver systems (default: no)]), [SUID_WRAPPER=$enableval], [SUID_WRAPPER=no])
2006-11-26 11:13:41 -07:00
dnl DDXes.
AC_ARG_ENABLE(xorg, AS_HELP_STRING([--enable-xorg], [Build Xorg server (default: auto)]), [XORG=$enableval], [XORG=auto])
2014-09-27 11:52:59 -06:00
AC_ARG_ENABLE(dmx, AS_HELP_STRING([--enable-dmx], [Build DMX server (default: no)]), [DMX=$enableval], [DMX=no])
2006-11-26 11:13:41 -07:00
AC_ARG_ENABLE(xvfb, AS_HELP_STRING([--enable-xvfb], [Build Xvfb server (default: yes)]), [XVFB=$enableval], [XVFB=yes])
AC_ARG_ENABLE(xnest, AS_HELP_STRING([--enable-xnest], [Build Xnest server (default: auto)]), [XNEST=$enableval], [XNEST=auto])
2008-11-02 08:26:08 -07:00
AC_ARG_ENABLE(xquartz, AS_HELP_STRING([--enable-xquartz], [Build Xquartz server for OS-X (default: auto)]), [XQUARTZ=$enableval], [XQUARTZ=auto])
2014-09-27 11:52:59 -06:00
AC_ARG_ENABLE(xwayland, AS_HELP_STRING([--enable-xwayland], [Build Xwayland server (default: auto)]), [XWAYLAND=$enableval], [XWAYLAND=auto])
2010-07-27 13:02:24 -06:00
AC_ARG_ENABLE(standalone-xpbproxy, AS_HELP_STRING([--enable-standalone-xpbproxy], [Build a standalone xpbproxy (in addition to the one integrated into Xquartz as a separate thread) (default: no)]), [STANDALONE_XPBPROXY=$enableval], [STANDALONE_XPBPROXY=no])
2006-11-26 11:13:41 -07:00
AC_ARG_ENABLE(xwin, AS_HELP_STRING([--enable-xwin], [Build XWin server (default: auto)]), [XWIN=$enableval], [XWIN=auto])
2014-09-27 11:52:59 -06:00
AC_ARG_ENABLE(glamor, AS_HELP_STRING([--enable-glamor], [Build glamor dix module (default: no)]), [GLAMOR=$enableval], [GLAMOR=no])
2006-11-26 11:13:41 -07:00
dnl kdrive and its subsystems
AC_ARG_ENABLE(kdrive, AS_HELP_STRING([--enable-kdrive], [Build kdrive servers (default: no)]), [KDRIVE=$enableval], [KDRIVE=no])
AC_ARG_ENABLE(xephyr, AS_HELP_STRING([--enable-xephyr], [Build the kdrive Xephyr server (default: auto)]), [XEPHYR=$enableval], [XEPHYR=auto])
2007-11-24 12:04:00 -07:00
AC_ARG_ENABLE(xfake, AS_HELP_STRING([--enable-xfake], [Build the kdrive 'fake' server (default: auto)]), [XFAKE=$enableval], [XFAKE=auto])
AC_ARG_ENABLE(xfbdev, AS_HELP_STRING([--enable-xfbdev], [Build the kdrive framebuffer device server (default: auto)]), [XFBDEV=$enableval], [XFBDEV=auto])
2010-07-27 13:02:24 -06:00
dnl kdrive options
AC_ARG_ENABLE(kdrive-kbd, AS_HELP_STRING([--enable-kdrive-kbd], [Build kbd driver for kdrive (default: auto)]), [KDRIVE_KBD=$enableval], [KDRIVE_KBD=auto])
2014-09-27 11:52:59 -06:00
AC_ARG_ENABLE(kdrive-mouse, AS_HELP_STRING([--enable-kdrive-mouse], [Build mouse driver for kdrive (default: auto)]), [KDRIVE_MOUSE=$enableval], [KDRIVE_MOUSE=auto])
AC_ARG_ENABLE(kdrive-evdev, AS_HELP_STRING([--enable-kdrive-evdev], [Build evdev driver for kdrive (default: auto)]), [KDRIVE_EVDEV=$enableval], [KDRIVE_EVDEV=auto])
2014-05-02 13:27:46 -06:00
AC_ARG_ENABLE(libunwind, AS_HELP_STRING([--enable-libunwind], [Use libunwind for backtracing (default: auto)]), [LIBUNWIND="$enableval"], [LIBUNWIND="auto"])
2015-09-16 13:10:19 -06:00
AC_ARG_ENABLE(xshmfence, AS_HELP_STRING([--disable-xshmfence], [Disable xshmfence (default: auto)]), [XSHMFENCE="$enableval"], [XSHMFENCE="auto"])
2006-11-26 11:13:41 -07:00
dnl chown/chmod to be setuid root as part of build
dnl Replaces InstallXserverSetUID in imake
AC_ARG_ENABLE(install-setuid,
AS_HELP_STRING([--enable-install-setuid],
[Install Xorg server as owned by root with setuid bit (default: auto)]),
[SETUID=$enableval], [SETUID=auto])
AC_MSG_CHECKING([to see if we can install the Xorg server as root])
if test "x$SETUID" = "xauto" ; then
case $host_os in
2010-07-27 13:02:24 -06:00
cygwin*) SETUID="no" ;;
2013-06-07 11:28:45 -06:00
mingw*) SETUID="no" ;;
2006-11-26 11:13:41 -07:00
darwin*) SETUID="no" ;;
*)
case $host_cpu in
sparc) SETUID="no" ;;
*) SETUID="yes" ;;
esac
esac
if test "x$SETUID" = xyes; then
touch testfile
chown root testfile > /dev/null 2>&1 || SETUID="no"
rm -f testfile
fi
fi
AC_MSG_RESULT([$SETUID])
AM_CONDITIONAL(INSTALL_SETUID, [test "x$SETUID" = "xyes"])
dnl Issue an error if xtrans.m4 was not found and XTRANS_CONNECTION_FLAGS macro
dnl was not expanded, since xorg-server with no transport types is rather useless.
dnl
dnl If you're seeing an error here, be sure you installed the lib/xtrans module
dnl first and if it's not in the default location, that you set the ACLOCAL
dnl environment variable to find it, such as:
dnl ACLOCAL="aclocal -I ${PREFIX}/share/aclocal"
2010-07-27 13:02:24 -06:00
m4_pattern_forbid([^XTRANS_CONNECTION_FLAGS$])
2006-11-26 11:13:41 -07:00
# Transport selection macro from xtrans.m4
XTRANS_CONNECTION_FLAGS
# Secure RPC detection macro from xtrans.m4
XTRANS_SECURE_RPC_FLAGS
2007-12-13 14:47:48 -07:00
AM_CONDITIONAL(SECURE_RPC, [test "x$SECURE_RPC" = xyes])
2006-11-26 11:13:41 -07:00
AM_CONDITIONAL(INT10_VM86, [test "x$INT10" = xvm86])
AM_CONDITIONAL(INT10_X86EMU, [test "x$INT10" = xx86emu])
AM_CONDITIONAL(INT10_STUB, [test "x$INT10" = xstub])
2010-07-27 13:02:24 -06:00
dnl DDX Detection... Yes, it's ugly to have it here... but we need to
dnl handle this early on so that we don't require unsupported extensions
2009-09-06 13:44:18 -06:00
case $host_os in
2013-06-07 11:28:45 -06:00
cygwin* | mingw*)
CONFIG_HAL=no
CONFIG_UDEV=no
CONFIG_UDEV_KMS=no
2010-07-27 13:02:24 -06:00
DGA=no
2015-09-16 13:10:19 -06:00
DRM=no
2010-07-27 13:02:24 -06:00
DRI2=no
2014-05-02 13:27:46 -06:00
DRI3=no
2013-06-07 11:28:45 -06:00
INT10MODULE=no
PCI=no
VGAHW=no
VBE=no
XF86UTILS=no
2010-07-27 13:02:24 -06:00
XF86VIDMODE=no
XSELINUX=no
XV=no
2013-06-07 11:28:45 -06:00
SYMBOL_VISIBILITY=no
2010-07-27 13:02:24 -06:00
;;
2009-09-06 13:44:18 -06:00
darwin*)
2012-06-10 07:21:05 -06:00
PCI=no
INT10MODULE=no
VGAHW=no
VBE=no
DRM=no
2009-09-06 13:44:18 -06:00
DRI2=no
2014-05-02 13:27:46 -06:00
DRI3=no
2009-09-06 13:44:18 -06:00
if test x$XQUARTZ = xauto; then
AC_CACHE_CHECK([whether to build Xquartz],xorg_cv_Carbon_framework,[
save_LDFLAGS=$LDFLAGS
LDFLAGS="$LDFLAGS -framework Carbon"
2012-06-10 07:21:05 -06:00
AC_LINK_IFELSE([AC_LANG_SOURCE([char FSFindFolder(); int main() { FSFindFolder(); return 0;}])],
2011-11-05 07:32:40 -06:00
[xorg_cv_Carbon_framework=yes],
[xorg_cv_Carbon_framework=no])
LDFLAGS=$save_LDFLAGS])
2009-09-06 13:44:18 -06:00
if test "X$xorg_cv_Carbon_framework" = Xyes; then
XQUARTZ=yes
else
XQUARTZ=no
fi
fi
2011-11-05 07:32:40 -06:00
AC_CHECK_FUNC(dispatch_async,
AC_DEFINE([HAVE_LIBDISPATCH], 1, [Define to 1 if you have the libdispatch (GCD) available]),
[])
2009-09-06 13:44:18 -06:00
if test "x$XQUARTZ" = xyes ; then
XQUARTZ=yes
XVFB=no
XNEST=no
2014-09-27 11:52:59 -06:00
XWAYLAND=no
2009-09-06 13:44:18 -06:00
COMPOSITE=no
DGA=no
DPMSExtension=no
XF86VIDMODE=no
fi
;;
2016-05-29 06:02:34 -06:00
gnu*)
DRM=no
DRI2=no
DRI3=no
;;
2010-07-27 13:02:24 -06:00
*) XQUARTZ=no ;;
2009-09-06 13:44:18 -06:00
esac
2006-11-26 11:13:41 -07:00
dnl ---------------------------------------------------------------------------
dnl Extension section
dnl ---------------------------------------------------------------------------
XEXT_INC='-I$(top_srcdir)/Xext'
XEXT_LIB='$(top_builddir)/Xext/libXext.la'
2010-07-27 13:02:24 -06:00
dnl Optional modules
VIDEOPROTO="videoproto"
COMPOSITEPROTO="compositeproto >= 0.4"
RECORDPROTO="recordproto >= 1.13.99.1"
SCRNSAVERPROTO="scrnsaverproto >= 1.1"
2013-06-07 11:28:45 -06:00
RESOURCEPROTO="resourceproto >= 1.2.0"
2010-07-27 13:02:24 -06:00
DRIPROTO="xf86driproto >= 2.1.0"
2013-06-07 11:28:45 -06:00
DRI2PROTO="dri2proto >= 2.8"
2014-05-02 13:27:46 -06:00
DRI3PROTO="dri3proto >= 1.0"
2010-07-27 13:02:24 -06:00
XINERAMAPROTO="xineramaproto"
BIGFONTPROTO="xf86bigfontproto >= 1.2.0"
DGAPROTO="xf86dgaproto >= 2.0.99.1"
2014-05-02 13:27:46 -06:00
GLPROTO="glproto >= 1.4.17"
2010-07-27 13:02:24 -06:00
DMXPROTO="dmxproto >= 2.2.99.1"
VIDMODEPROTO="xf86vidmodeproto >= 2.2.99.1"
WINDOWSWMPROTO="windowswmproto"
APPLEWMPROTO="applewmproto >= 1.4"
2015-09-16 13:10:19 -06:00
LIBXSHMFENCE="xshmfence >= 1.1"
2010-07-27 13:02:24 -06:00
2012-06-10 07:21:05 -06:00
dnl Required modules
2016-05-29 06:02:34 -06:00
XPROTO="xproto >= 7.0.28"
RANDRPROTO="randrproto >= 1.5.0"
2012-06-10 07:21:05 -06:00
RENDERPROTO="renderproto >= 0.11"
2014-05-02 13:27:46 -06:00
XEXTPROTO="xextproto >= 7.2.99.901"
2013-06-07 11:28:45 -06:00
INPUTPROTO="inputproto >= 2.3"
2012-06-10 07:21:05 -06:00
KBPROTO="kbproto >= 1.0.3"
2014-09-27 11:52:59 -06:00
FONTSPROTO="fontsproto >= 2.1.3"
2012-06-10 07:21:05 -06:00
FIXESPROTO="fixesproto >= 5.0"
DAMAGEPROTO="damageproto >= 1.1"
XCMISCPROTO="xcmiscproto >= 1.2.0"
BIGREQSPROTO="bigreqsproto >= 1.1.0"
2015-09-16 13:10:19 -06:00
XTRANS="xtrans >= 1.3.5"
2014-05-02 13:27:46 -06:00
PRESENTPROTO="presentproto >= 1.0"
2010-07-27 13:02:24 -06:00
dnl List of libraries that require a specific version
LIBAPPLEWM="applewm >= 1.4"
LIBDMX="dmx >= 1.0.99.1"
LIBDRI="dri >= 7.8.0"
LIBDRM="libdrm >= 2.3.0"
2014-09-27 11:52:59 -06:00
LIBEGL="egl"
LIBGBM="gbm >= 10.2.0"
2010-07-27 13:02:24 -06:00
LIBGL="gl >= 7.1.0"
LIBXEXT="xext >= 1.0.99.4"
2010-12-05 08:36:02 -07:00
LIBXFONT="xfont >= 1.4.2"
2010-07-27 13:02:24 -06:00
LIBXI="xi >= 1.2.99.1"
LIBXTST="xtst >= 1.0.99.2"
2012-06-10 07:21:05 -06:00
LIBPCIACCESS="pciaccess >= 0.12.901"
2010-07-27 13:02:24 -06:00
LIBUDEV="libudev >= 143"
LIBSELINUX="libselinux >= 2.0.86"
2010-12-05 08:36:02 -07:00
LIBDBUS="dbus-1 >= 1.0"
2013-06-07 11:28:45 -06:00
LIBPIXMAN="pixman-1 >= 0.27.2"
2010-12-05 08:36:02 -07:00
dnl Pixman is always required, but we separate it out so we can link
dnl specific modules against it
PKG_CHECK_MODULES(PIXMAN, $LIBPIXMAN)
REQUIRED_LIBS="$REQUIRED_LIBS $LIBPIXMAN $LIBXFONT xau"
2012-06-10 07:21:05 -06:00
dnl Core modules for most extensions, et al.
SDK_REQUIRED_MODULES="$XPROTO $RANDRPROTO $RENDERPROTO $XEXTPROTO $INPUTPROTO $KBPROTO $FONTSPROTO $LIBPIXMAN"
# Make SDK_REQUIRED_MODULES available for inclusion in xorg-server.pc
AC_SUBST(SDK_REQUIRED_MODULES)
REQUIRED_MODULES="$FIXESPROTO $DAMAGEPROTO $XCMISCPROTO $XTRANS $BIGREQSPROTO $SDK_REQUIRED_MODULES"
2010-07-27 13:02:24 -06:00
2014-09-27 11:52:59 -06:00
dnl systemd socket activation
dnl activate the code in libxtrans that grabs systemd's socket fds
2016-05-29 06:02:34 -06:00
dnl libsystemd-daemon was moved into libsystemd in version 209
LIBSYSTEMD="libsystemd >= 209"
2014-09-27 11:52:59 -06:00
AC_ARG_WITH([systemd-daemon],
AS_HELP_STRING([--with-systemd-daemon],
[support systemd socket activation (default: auto)]),
[WITH_SYSTEMD_DAEMON=$withval], [WITH_SYSTEMD_DAEMON=auto])
2016-05-29 06:02:34 -06:00
if test "x$WITH_SYSTEMD_DAEMON" = "xyes" -o "x$WITH_SYSTEMD_DAEMON" = "xauto" ; then
PKG_CHECK_MODULES([SYSTEMD_DAEMON], [$LIBSYSTEMD],
[HAVE_SYSTEMD_DAEMON=yes;
LIBSYSTEMD_DAEMON="$LIBSYSTEMD"],
[PKG_CHECK_MODULES([SYSTEMD_DAEMON], [libsystemd-daemon],
[HAVE_SYSTEMD_DAEMON=yes;
LIBSYSTEMD_DAEMON=libsystemd-daemon],
[HAVE_SYSTEMD_DAEMON=no])])
if test "x$HAVE_SYSTEMD_DAEMON" = xyes; then
AC_DEFINE(HAVE_SYSTEMD_DAEMON, 1, [Define to 1 if libsystemd-daemon is available])
REQUIRED_LIBS="$REQUIRED_LIBS $LIBSYSTEMD_DAEMON"
elif test "x$WITH_SYSTEMD_DAEMON" = xyes; then
2014-09-27 11:52:59 -06:00
AC_MSG_ERROR([systemd support requested but no library has been found])
fi
fi
AM_CONDITIONAL([HAVE_SYSTEMD_DAEMON], [test "x$HAVE_SYSTEMD_DAEMON" = "xyes"])
if test "x$CONFIG_UDEV" = xyes && test "x$CONFIG_HAL" = xyes; then
AC_MSG_ERROR([Hotplugging through both libudev and hal not allowed])
2010-07-27 13:02:24 -06:00
fi
PKG_CHECK_MODULES(UDEV, $LIBUDEV, [HAVE_LIBUDEV=yes], [HAVE_LIBUDEV=no])
if test "x$CONFIG_UDEV" = xauto; then
CONFIG_UDEV="$HAVE_LIBUDEV"
2015-09-16 13:10:19 -06:00
AC_DEFINE(HAVE_LIBUDEV, 1, [Define to 1 if libudev is available.])
2010-07-27 13:02:24 -06:00
fi
AM_CONDITIONAL(CONFIG_UDEV, [test "x$CONFIG_UDEV" = xyes])
if test "x$CONFIG_UDEV" = xyes; then
CONFIG_HAL=no
2013-06-07 11:28:45 -06:00
if test "x$CONFIG_UDEV_KMS" = xauto; then
CONFIG_UDEV_KMS="$HAVE_LIBUDEV"
fi
2010-07-27 13:02:24 -06:00
if ! test "x$HAVE_LIBUDEV" = xyes; then
AC_MSG_ERROR([udev configuration API requested, but libudev is not installed])
fi
AC_DEFINE(CONFIG_UDEV, 1, [Use libudev for input hotplug])
2013-06-07 11:28:45 -06:00
if test "x$CONFIG_UDEV_KMS" = xyes; then
AC_DEFINE(CONFIG_UDEV_KMS, 1, [Use libudev for kms enumeration])
fi
2012-06-10 07:21:05 -06:00
SAVE_LIBS=$LIBS
SAVE_CFLAGS=$CFLAGS
2016-08-09 12:59:50 -06:00
CFLAGS="$CFLAGS $UDEV_CFLAGS"
2012-06-10 07:21:05 -06:00
LIBS=$UDEV_LIBS
AC_CHECK_FUNCS([udev_monitor_filter_add_match_tag])
AC_CHECK_FUNCS([udev_enumerate_add_match_tag])
LIBS=$SAVE_LIBS
CFLAGS=$SAVE_CFLAGS
2010-07-27 13:02:24 -06:00
fi
2013-06-07 11:28:45 -06:00
AM_CONDITIONAL(CONFIG_UDEV_KMS, [test "x$CONFIG_UDEV_KMS" = xyes])
2007-11-24 12:04:00 -07:00
2010-12-05 08:36:02 -07:00
PKG_CHECK_MODULES(DBUS, $LIBDBUS, [HAVE_DBUS=yes], [HAVE_DBUS=no])
2007-11-24 12:04:00 -07:00
if test "x$HAVE_DBUS" = xyes; then
AC_DEFINE(HAVE_DBUS, 1, [Have D-Bus support])
fi
AM_CONDITIONAL(HAVE_DBUS, [test "x$HAVE_DBUS" = xyes])
PKG_CHECK_MODULES(HAL, hal, [HAVE_HAL=yes], [HAVE_HAL=no])
if test "x$CONFIG_HAL" = xauto; then
CONFIG_HAL="$HAVE_HAL"
fi
if test "x$CONFIG_HAL" = xyes; then
if ! test "x$HAVE_HAL" = xyes; then
AC_MSG_ERROR([HAL hotplug API requested, but HAL is not installed.])
fi
AC_DEFINE(CONFIG_HAL, 1, [Use the HAL hotplug API])
2014-09-27 11:52:59 -06:00
NEED_DBUS="yes"
2007-11-24 12:04:00 -07:00
fi
AM_CONDITIONAL(CONFIG_HAL, [test "x$CONFIG_HAL" = xyes])
2014-09-27 11:52:59 -06:00
if test "x$SYSTEMD_LOGIND" = xauto; then
if test "x$HAVE_DBUS" = xyes -a "x$CONFIG_UDEV" = xyes ; then
SYSTEMD_LOGIND=yes
else
SYSTEMD_LOGIND=no
fi
fi
if test "x$SYSTEMD_LOGIND" = xyes; then
if ! test "x$HAVE_DBUS" = xyes; then
AC_MSG_ERROR([systemd-logind requested, but D-Bus is not installed.])
fi
if ! test "x$CONFIG_UDEV" = xyes ; then
AC_MSG_ERROR([systemd-logind is only supported in combination with udev configuration.])
fi
AC_DEFINE(SYSTEMD_LOGIND, 1, [Enable systemd-logind integration])
NEED_DBUS="yes"
fi
AM_CONDITIONAL(SYSTEMD_LOGIND, [test "x$SYSTEMD_LOGIND" = xyes])
if test "x$SUID_WRAPPER" = xyes; then
dnl This is a define so that if some platforms want to put the wrapper
dnl somewhere else this can be easily changed
2015-09-16 13:10:19 -06:00
AC_DEFINE_DIR(SUID_WRAPPER_DIR, libexecdir, [Where to install the Xorg binary and Xorg.wrap])
2014-09-27 11:52:59 -06:00
SETUID="no"
fi
AM_CONDITIONAL(SUID_WRAPPER, [test "x$SUID_WRAPPER" = xyes])
if test "x$NEED_DBUS" = xyes; then
AC_DEFINE(NEED_DBUS, 1, [Enable D-Bus core])
2007-11-24 12:04:00 -07:00
fi
2014-09-27 11:52:59 -06:00
AM_CONDITIONAL(NEED_DBUS, [test "x$NEED_DBUS" = xyes])
2010-07-27 13:02:24 -06:00
2011-06-29 13:55:01 -06:00
if test "x$CONFIG_WSCONS" = xauto; then
case $host_os in
*openbsd*)
CONFIG_WSCONS=yes;
;;
*)
CONFIG_WSCONS=no;
;;
esac
fi
AM_CONDITIONAL(CONFIG_WSCONS, [test "x$CONFIG_WSCONS" = xyes])
if test "x$CONFIG_WSCONS" = xyes; then
AC_DEFINE(CONFIG_WSCONS, 1, [Use wscons for input auto configuration])
fi
2010-07-27 13:02:24 -06:00
if test "x$USE_SIGIO_BY_DEFAULT" = xyes; then
USE_SIGIO_BY_DEFAULT_VALUE=TRUE
else
USE_SIGIO_BY_DEFAULT_VALUE=FALSE
fi
AC_DEFINE_UNQUOTED([USE_SIGIO_BY_DEFAULT], [$USE_SIGIO_BY_DEFAULT_VALUE],
[Use SIGIO handlers for input device events by default])
2006-11-26 11:13:41 -07:00
2008-11-02 08:26:08 -07:00
AC_MSG_CHECKING([for glibc...])
2012-06-10 07:21:05 -06:00
AC_PREPROC_IFELSE([AC_LANG_SOURCE([
2008-11-02 08:26:08 -07:00
#include <features.h>
#ifndef __GLIBC__
#error
#endif
2012-06-10 07:21:05 -06:00
])], glibc=yes, glibc=no)
2008-11-02 08:26:08 -07:00
AC_MSG_RESULT([$glibc])
AC_CHECK_FUNCS([clock_gettime], [have_clock_gettime=yes],
[AC_CHECK_LIB([rt], [clock_gettime], [have_clock_gettime=-lrt],
[have_clock_gettime=no])])
AC_MSG_CHECKING([for a useful monotonic clock ...])
if ! test "x$have_clock_gettime" = xno; then
if ! test "x$have_clock_gettime" = xyes; then
CLOCK_LIBS="$have_clock_gettime"
else
CLOCK_LIBS=""
fi
LIBS_SAVE="$LIBS"
LIBS="$CLOCK_LIBS"
CPPFLAGS_SAVE="$CPPFLAGS"
if test x"$glibc" = xyes; then
CPPFLAGS="$CPPFLAGS -D_POSIX_C_SOURCE=200112L"
fi
2012-06-10 07:21:05 -06:00
AC_RUN_IFELSE([AC_LANG_SOURCE([
2008-11-02 08:26:08 -07:00
#include <time.h>
int main(int argc, char *argv[[]]) {
struct timespec tp;
if (clock_gettime(CLOCK_MONOTONIC, &tp) == 0)
return 0;
else
return 1;
}
2012-06-10 07:21:05 -06:00
])], [MONOTONIC_CLOCK=yes], [MONOTONIC_CLOCK=no],
2008-11-02 08:26:08 -07:00
[MONOTONIC_CLOCK="cross compiling"])
LIBS="$LIBS_SAVE"
CPPFLAGS="$CPPFLAGS_SAVE"
else
MONOTONIC_CLOCK=no
fi
AC_MSG_RESULT([$MONOTONIC_CLOCK])
if test "x$MONOTONIC_CLOCK" = xyes; then
AC_DEFINE(MONOTONIC_CLOCK, 1, [Have monotonic clock from clock_gettime()])
LIBS="$LIBS $CLOCK_LIBS"
fi
2006-11-26 11:13:41 -07:00
AM_CONDITIONAL(XV, [test "x$XV" = xyes])
if test "x$XV" = xyes; then
AC_DEFINE(XV, 1, [Support Xv extension])
AC_DEFINE(XvExtension, 1, [Build Xv extension])
2010-07-27 13:02:24 -06:00
REQUIRED_MODULES="$REQUIRED_MODULES $VIDEOPROTO"
2010-12-05 08:36:02 -07:00
SDK_REQUIRED_MODULES="$SDK_REQUIRED_MODULES $VIDEOPROTO"
2006-11-26 11:13:41 -07:00
else
XVMC=no
fi
AM_CONDITIONAL(XVMC, [test "x$XVMC" = xyes])
if test "x$XVMC" = xyes; then
AC_DEFINE(XvMCExtension, 1, [Build XvMC extension])
fi
AM_CONDITIONAL(COMPOSITE, [test "x$COMPOSITE" = xyes])
if test "x$COMPOSITE" = xyes; then
AC_DEFINE(COMPOSITE, 1, [Support Composite Extension])
2010-07-27 13:02:24 -06:00
REQUIRED_MODULES="$REQUIRED_MODULES $COMPOSITEPROTO"
2006-11-26 11:13:41 -07:00
COMPOSITE_LIB='$(top_builddir)/composite/libcomposite.la'
COMPOSITE_INC='-I$(top_srcdir)/composite'
fi
2013-06-07 11:28:45 -06:00
if test "x$MITSHM" = xauto; then
MITSHM="$ac_cv_sysv_ipc"
fi
2006-11-26 11:13:41 -07:00
AM_CONDITIONAL(MITSHM, [test "x$MITSHM" = xyes])
if test "x$MITSHM" = xyes; then
AC_DEFINE(MITSHM, 1, [Support MIT-SHM extension])
AC_DEFINE(HAS_SHM, 1, [Support SHM])
fi
AM_CONDITIONAL(RECORD, [test "x$RECORD" = xyes])
if test "x$RECORD" = xyes; then
AC_DEFINE(XRECORD, 1, [Support Record extension])
2010-07-27 13:02:24 -06:00
REQUIRED_MODULES="$REQUIRED_MODULES $RECORDPROTO"
2006-11-26 11:13:41 -07:00
RECORD_LIB='$(top_builddir)/record/librecord.la'
fi
AM_CONDITIONAL(SCREENSAVER, [test "x$SCREENSAVER" = xyes])
if test "x$SCREENSAVER" = xyes; then
AC_DEFINE(SCREENSAVER, 1, [Support MIT-SCREEN-SAVER extension])
2010-07-27 13:02:24 -06:00
REQUIRED_MODULES="$REQUIRED_MODULES $SCRNSAVERPROTO"
2014-05-02 13:27:46 -06:00
SDK_REQUIRED_MODULES="$SDK_REQUIRED_MODULES $SCRNSAVERPROTO"
2006-11-26 11:13:41 -07:00
fi
AM_CONDITIONAL(RES, [test "x$RES" = xyes])
if test "x$RES" = xyes; then
AC_DEFINE(RES, 1, [Support X resource extension])
2010-07-27 13:02:24 -06:00
REQUIRED_MODULES="$REQUIRED_MODULES $RESOURCEPROTO"
2014-05-02 13:27:46 -06:00
SDK_REQUIRED_MODULES="$SDK_REQUIRED_MODULES $RESOURCEPROTO"
2006-11-26 11:13:41 -07:00
fi
2015-06-20 04:03:56 -06:00
if test "x$LISTEN_TCP" = xyes; then
AC_DEFINE(LISTEN_TCP, 1, [Listen on TCP socket])
fi
if test "x$LISTEN_UNIX" = xyes; then
AC_DEFINE(LISTEN_UNIX, 1, [Listen on Unix socket])
fi
if test "x$LISTEN_LOCAL" = xyes; then
AC_DEFINE(LISTEN_LOCAL, 1, [Listen on local socket])
fi
2011-11-05 07:32:40 -06:00
# The XRes extension may support client ID tracking only if it has
# been specifically enabled. Client ID tracking is implicitly not
# supported if XRes extension is disabled.
AC_MSG_CHECKING([whether to track client ids])
if test "x$RES" = xyes && test "x$CLIENTIDS" = xyes; then
AC_DEFINE(CLIENTIDS, 1, [Support client ID tracking])
else
CLIENTIDS=no
fi
2012-01-31 00:52:35 -07:00
if test "x$CLIENTIDS" = xyes; then
case $host_os in
openbsd*)
SYS_LIBS="$SYS_LIBS -lkvm"
;;
esac
fi
2011-11-05 07:32:40 -06:00
AC_MSG_RESULT([$CLIENTIDS])
AM_CONDITIONAL(CLIENTIDS, [test "x$CLIENTIDS" = xyes])
2006-11-26 11:13:41 -07:00
AM_CONDITIONAL(DRI, test "x$DRI" = xyes)
if test "x$DRI" = xyes; then
AC_DEFINE(XF86DRI, 1, [Build DRI extension])
2013-06-07 11:28:45 -06:00
REQUIRED_MODULES="$REQUIRED_MODULES $DRIPROTO $GLPROTO $LIBDRI"
SDK_REQUIRED_MODULES="$SDK_REQUIRED_MODULES $DRIPROTO $GLPROTO $LIBDRI"
2006-11-26 11:13:41 -07:00
fi
2010-07-27 13:02:24 -06:00
PKG_CHECK_MODULES([DRI2PROTO], $DRI2PROTO,
2009-09-06 13:44:18 -06:00
[HAVE_DRI2PROTO=yes], [HAVE_DRI2PROTO=no])
case "$DRI2,$HAVE_DRI2PROTO" in
yes,no)
AC_MSG_ERROR([DRI2 requested, but dri2proto not found.])
;;
yes,yes | auto,yes)
AC_DEFINE(DRI2, 1, [Build DRI2 extension])
DRI2=yes
2014-05-02 13:27:46 -06:00
LIBGL="gl >= 9.2.0"
2010-12-05 08:36:02 -07:00
SDK_REQUIRED_MODULES="$SDK_REQUIRED_MODULES $DRI2PROTO"
2009-09-06 13:44:18 -06:00
;;
esac
2008-11-02 08:26:08 -07:00
AM_CONDITIONAL(DRI2, test "x$DRI2" = xyes)
2009-09-06 13:44:18 -06:00
2014-05-02 13:27:46 -06:00
dnl
dnl Locate a suitable tmp file system for creating shared memeory files
dnl
AC_ARG_WITH(shared-memory-dir, AS_HELP_STRING([--with-shared-memory-dir=PATH], [Path to directory in a world-writable temporary directory for anonymous shared memory (default: auto)]),
[],
[with_shared_memory_dir=yes])
shmdirs="/run/shm /var/tmp /tmp"
case x"$with_shared_memory_dir" in
xyes)
for dir in $shmdirs; do
case x"$with_shared_memory_dir" in
xyes)
echo Checking temp dir "$dir"
if test -d "$dir"; then
with_shared_memory_dir="$dir"
fi
;;
esac
done
;;
x/*)
;;
xno)
;;
*)
AC_MSG_ERROR([Invalid directory specified for --with-shared-memory-dir: $with_shared_memory_dir])
;;
esac
case x"$with_shared_memory_dir" in
xyes)
AC_MSG_ERROR([No directory found for shared memory temp files.])
;;
xno)
;;
*)
AC_DEFINE_UNQUOTED(SHMDIR, ["$with_shared_memory_dir"], [Directory for shared memory temp files])
;;
esac
AC_ARG_ENABLE(xtrans-send-fds, AS_HELP_STRING([--disable-xtrans-send-fds], [Use Xtrans support for fd passing (default: auto)]), [XTRANS_SEND_FDS=$enableval], [XTRANS_SEND_FDS=auto])
case "x$XTRANS_SEND_FDS" in
xauto)
case "$host_os" in
linux*|openbsd*|solaris*)
XTRANS_SEND_FDS=yes
;;
*)
XTRANS_SEND_FDS=no
;;
esac
esac
case "x$XTRANS_SEND_FDS" in
xyes)
AC_DEFINE(XTRANS_SEND_FDS, 1, [Enable xtrans fd passing support])
;;
esac
case "$DRI3,$XTRANS_SEND_FDS" in
yes,yes | auto,yes)
;;
yes,no)
AC_MSG_ERROR([DRI3 requested, but xtrans fd passing support not found.])
DRI3=no
;;
no,*)
;;
*)
AC_MSG_NOTICE([DRI3 disabled because xtrans fd passing support not found.])
DRI3=no
;;
esac
PKG_CHECK_MODULES([DRI3PROTO], $DRI3PROTO,
[HAVE_DRI3PROTO=yes], [HAVE_DRI3PROTO=no])
case "$DRI3,$HAVE_DRI3PROTO" in
yes,yes | auto,yes)
;;
yes,no)
AC_MSG_ERROR([DRI3 requested, but dri3proto not found.])
DRI3=no
;;
no,*)
;;
*)
AC_MSG_NOTICE([DRI3 disabled because dri3proto not found.])
DRI3=no
;;
esac
AC_CHECK_FUNCS([sigaction])
BUSFAULT=no
case x"$ac_cv_func_sigaction" in
xyes)
AC_DEFINE(HAVE_SIGACTION, 1, [Have sigaction function])
BUSFAULT=yes
;;
esac
case x"$BUSFAULT" in
xyes)
AC_DEFINE(BUSFAULT, 1, [Include busfault OS API])
;;
esac
AM_CONDITIONAL(BUSFAULT, test x"$BUSFAULT" = xyes)
2015-09-16 13:10:19 -06:00
PKG_CHECK_MODULES([XSHMFENCE], $LIBXSHMFENCE, [HAVE_XSHMFENCE=yes], [HAVE_XSHMFENCE=no])
if test "x$XSHMFENCE" = "xauto"; then
XSHMFENCE="$HAVE_XSHMFENCE"
fi
2014-05-02 13:27:46 -06:00
2015-09-16 13:10:19 -06:00
if test "x$XSHMFENCE" = "xyes"; then
if test "x$HAVE_XSHMFENCE" != "xyes"; then
AC_MSG_ERROR([xshmfence requested but not installed.])
fi
AC_DEFINE(HAVE_XSHMFENCE, 1, [Have xshmfence support])
REQUIRED_LIBS="$REQUIRED_LIBS $LIBXSHMFENCE"
fi
2014-05-02 13:27:46 -06:00
2015-09-16 13:10:19 -06:00
AM_CONDITIONAL(XSHMFENCE, [test "x$XSHMFENCE" = xyes])
2014-05-02 13:27:46 -06:00
2015-09-16 13:10:19 -06:00
case "$DRI3,$XSHMFENCE" in
2014-05-02 13:27:46 -06:00
yes,yes | auto,yes)
;;
yes,no)
AC_MSG_ERROR([DRI3 requested, but xshmfence not found.])
DRI3=no
;;
no,*)
;;
*)
AC_MSG_NOTICE([DRI3 disabled because xshmfence not found.])
DRI3=no
;;
esac
case x"$DRI3" in
xyes|xauto)
DRI3=yes
AC_DEFINE(DRI3, 1, [Build DRI3 extension])
DRI3_LIB='$(top_builddir)/dri3/libdri3.la'
SDK_REQUIRED_MODULES="$SDK_REQUIRED_MODULES $DRI3PROTO"
AC_MSG_NOTICE([DRI3 enabled]);
;;
esac
AM_CONDITIONAL(DRI3, test "x$DRI3" = xyes)
if test "x$DRI" = xyes || test "x$DRI2" = xyes || test "x$DRI3" = xyes || test "x$CONFIG_UDEV_KMS" = xyes; then
2010-12-05 08:36:02 -07:00
if test "x$DRM" = xyes; then
AC_DEFINE(WITH_LIBDRM, 1, [Building with libdrm support])
PKG_CHECK_MODULES([LIBDRM], $LIBDRM)
fi
2009-09-06 13:44:18 -06:00
fi
2008-11-02 08:26:08 -07:00
if test "x$DRI2" = xyes; then
2009-09-06 13:44:18 -06:00
save_CFLAGS=$CFLAGS
2016-08-09 12:59:50 -06:00
CFLAGS="$CFLAGS $GL_CFLAGS $LIBDRM_CFLAGS"
2009-09-06 13:44:18 -06:00
AC_COMPILE_IFELSE([AC_LANG_SOURCE([[#include <GL/gl.h>
#include <GL/internal/dri_interface.h>
#ifndef __DRI_DRI2
#error DRI2 extension not available.
#endif]])],
[HAVE_DRI2EXTENSION=yes],
[HAVE_DRI2EXTENSION=no])
CFLAGS=$save_CFLAGS
if test "x$HAVE_DRI2EXTENSION" = xyes; then
AC_DEFINE(DRI2_AIGLX, 1, [Build DRI2 AIGLX loader])
DRI2_AIGLX=yes
else
AC_MSG_NOTICE([DRI2 AIGLX disabled, __DRI_DRI2 not defined in dri_interface.h.])
DRI2_AIGLX=no
fi
2008-11-02 08:26:08 -07:00
fi
2009-09-06 13:44:18 -06:00
AM_CONDITIONAL(DRI2_AIGLX, test "x$DRI2_AIGLX" = xyes)
2014-05-02 13:27:46 -06:00
if test "x$GLX" = xyes; then
PKG_CHECK_MODULES([XLIB], [x11])
PKG_CHECK_MODULES([GL], $GLPROTO $LIBGL)
AC_SUBST(XLIB_CFLAGS)
AC_DEFINE(GLXEXT, 1, [Build GLX extension])
GLX_LIBS='$(top_builddir)/glx/libglx.la'
GLX_SYS_LIBS="$GLX_SYS_LIBS $GL_LIBS"
else
2014-09-27 11:52:59 -06:00
GLX=no
2014-05-02 13:27:46 -06:00
fi
AM_CONDITIONAL(GLX, test "x$GLX" = xyes)
if test "x$GLX" = xno; then
2014-09-27 11:52:59 -06:00
AIGLX=no
2014-05-02 13:27:46 -06:00
fi
if test "x$AIGLX" = xyes -a \( "x$DRI2" = xyes \); then
AC_DEFINE(AIGLX, 1, [Build AIGLX loader])
fi
AM_CONDITIONAL(AIGLX_DRI_LOADER, { test "x$DRI2" = xyes; } && test "x$AIGLX" = xyes)
AC_SUBST([GLX_DEFINES])
AC_SUBST([GLX_SYS_LIBS])
AM_CONDITIONAL(PRESENT, [test "x$PRESENT" = xyes])
if test "x$PRESENT" = xyes; then
AC_DEFINE(PRESENT, 1, [Support Present extension])
REQUIRED_MODULES="$REQUIRED_MODULES $PRESENTPROTO"
SDK_REQUIRED_MODULES="$SDK_REQUIRED_MODULES $PRESENTPROTO"
PRESENT_INC='-I$(top_srcdir)/present'
PRESENT_LIB='$(top_builddir)/present/libpresent.la'
fi
2012-10-14 02:58:45 -06:00
# link Xorg with pthreads for llvm-pipe driver on OpenBSD
if test "x$DRI2" = xyes; then
case $host_os in
openbsd*)
2013-06-07 11:28:45 -06:00
XORG_SYS_LIBS="-lpthread"
;;
2012-10-14 02:58:45 -06:00
esac
fi
2008-11-02 08:26:08 -07:00
2006-11-26 11:13:41 -07:00
AM_CONDITIONAL(XINERAMA, [test "x$XINERAMA" = xyes])
if test "x$XINERAMA" = xyes; then
AC_DEFINE(XINERAMA, 1, [Support Xinerama extension])
AC_DEFINE(PANORAMIX, 1, [Internal define for Xinerama])
2010-07-27 13:02:24 -06:00
REQUIRED_MODULES="$REQUIRED_MODULES $XINERAMAPROTO"
2010-12-05 08:36:02 -07:00
SDK_REQUIRED_MODULES="$SDK_REQUIRED_MODULES $XINERAMAPROTO"
2006-11-26 11:13:41 -07:00
fi
AM_CONDITIONAL(XACE, [test "x$XACE" = xyes])
if test "x$XACE" = xyes; then
AC_DEFINE(XACE, 1, [Build X-ACE extension])
fi
2008-11-02 08:26:08 -07:00
AM_CONDITIONAL(XSELINUX, [test "x$XSELINUX" = xyes])
if test "x$XSELINUX" = xyes; then
if test "x$XACE" != xyes; then
AC_MSG_ERROR([cannot build SELinux extension without X-ACE])
fi
AC_CHECK_HEADERS([libaudit.h], [], AC_MSG_ERROR([SELinux extension requires audit system headers]))
AC_CHECK_LIB(audit, audit_open, [], AC_MSG_ERROR([SELinux extension requires audit system library]))
2010-07-27 13:02:24 -06:00
PKG_CHECK_MODULES([SELINUX], $LIBSELINUX)
SELINUX_LIBS="$SELINUX_LIBS -laudit"
2008-11-02 08:26:08 -07:00
AC_DEFINE(XSELINUX, 1, [Build SELinux extension])
fi
2006-11-26 11:13:41 -07:00
AM_CONDITIONAL(XCSECURITY, [test "x$XCSECURITY" = xyes])
if test "x$XCSECURITY" = xyes; then
if test "x$XACE" != xyes; then
AC_MSG_ERROR([cannot build Security extension without X-ACE])
fi
AC_DEFINE(XCSECURITY, 1, [Build Security extension])
fi
AM_CONDITIONAL(DBE, [test "x$DBE" = xyes])
if test "x$DBE" = xyes; then
AC_DEFINE(DBE, 1, [Support DBE extension])
DBE_LIB='$(top_builddir)/dbe/libdbe.la'
2013-06-07 11:28:45 -06:00
DBE_INC='-I$(top_srcdir)/dbe'
2006-11-26 11:13:41 -07:00
fi
AM_CONDITIONAL(XF86BIGFONT, [test "x$XF86BIGFONT" = xyes])
if test "x$XF86BIGFONT" = xyes; then
AC_DEFINE(XF86BIGFONT, 1, [Support XF86 Big font extension])
2010-07-27 13:02:24 -06:00
REQUIRED_MODULES="$REQUIRED_MODULES $BIGFONTPROTO"
2014-05-02 13:27:46 -06:00
SDK_REQUIRED_MODULES="$SDK_REQUIRED_MODULES $BIGFONTPROTO"
2006-11-26 11:13:41 -07:00
fi
AM_CONDITIONAL(DPMSExtension, [test "x$DPMSExtension" = xyes])
if test "x$DPMSExtension" = xyes; then
AC_DEFINE(DPMSExtension, 1, [Support DPMS extension])
fi
AC_DEFINE(RENDER, 1, [Support RENDER extension])
RENDER_LIB='$(top_builddir)/render/librender.la'
RENDER_INC='-I$(top_srcdir)/render'
AC_DEFINE(RANDR, 1, [Support RANDR extension])
RANDR_LIB='$(top_builddir)/randr/librandr.la'
RANDR_INC='-I$(top_srcdir)/randr'
AC_DEFINE(XFIXES,1,[Support XFixes extension])
FIXES_LIB='$(top_builddir)/xfixes/libxfixes.la'
FIXES_INC='-I$(top_srcdir)/xfixes'
AC_DEFINE(DAMAGE,1,[Support Damage extension])
DAMAGE_LIB='$(top_builddir)/damageext/libdamageext.la'
DAMAGE_INC='-I$(top_srcdir)/damageext'
MIEXT_DAMAGE_LIB='$(top_builddir)/miext/damage/libdamage.la'
MIEXT_DAMAGE_INC='-I$(top_srcdir)/miext/damage'
2009-09-06 13:44:18 -06:00
# XINPUT extension is integral part of the server
2010-07-27 13:02:24 -06:00
AC_DEFINE(XINPUT, 1, [Support X Input extension])
2007-11-24 12:04:00 -07:00
XI_LIB='$(top_builddir)/Xi/libXi.la'
XI_INC='-I$(top_srcdir)/Xi'
2006-11-26 11:13:41 -07:00
AM_CONDITIONAL(XF86UTILS, test "x$XF86UTILS" = xyes)
2010-07-27 13:02:24 -06:00
AM_CONDITIONAL(VGAHW, test "x$VGAHW" = xyes)
AM_CONDITIONAL(VBE, test "x$VBE" = xyes)
AM_CONDITIONAL(INT10MODULE, test "x$INT10MODULE" = xyes)
2006-11-26 11:13:41 -07:00
AC_DEFINE(SHAPE, 1, [Support SHAPE extension])
2010-07-27 13:02:24 -06:00
AC_DEFINE_DIR(XKB_BASE_DIRECTORY, XKBPATH, [Path to XKB data])
AC_ARG_WITH(xkb-bin-directory,
2014-09-27 11:52:59 -06:00
AS_HELP_STRING([--with-xkb-bin-directory=DIR], [Directory containing xkbcomp program (default: ${bindir})]),
2010-07-27 13:02:24 -06:00
[XKB_BIN_DIRECTORY="$withval"],
[XKB_BIN_DIRECTORY="$bindir"])
AC_DEFINE_DIR(XKB_BIN_DIRECTORY, XKB_BIN_DIRECTORY, [Path to XKB bin dir])
dnl Make sure XKM_OUTPUT_DIR is an absolute path
XKBOUTPUT_FIRSTCHAR=`echo $XKBOUTPUT | cut -b 1`
if [[ x$XKBOUTPUT_FIRSTCHAR != x/ -a x$XKBOUTPUT_FIRSTCHAR != 'x$' ]] ; then
XKBOUTPUT="$XKB_BASE_DIRECTORY/$XKBOUTPUT"
fi
dnl XKM_OUTPUT_DIR (used in code) must end in / or file names get hosed
dnl XKB_COMPILED_DIR (used in Makefiles) must not or install-sh gets confused
XKBOUTPUT=`echo $XKBOUTPUT/ | $SED 's|/*$|/|'`
XKB_COMPILED_DIR=`echo $XKBOUTPUT | $SED 's|/*$||'`
AC_DEFINE_DIR(XKM_OUTPUT_DIR, XKBOUTPUT, [Path to XKB output dir])
AC_SUBST(XKB_COMPILED_DIR)
if test "x$XKB_DFLT_RULES" = x; then
case $host_os in
linux*)
dnl doesn't take AutoAddDevices into account, but whatever.
2011-11-05 07:32:40 -06:00
XKB_DFLT_RULES="evdev"
2010-07-27 13:02:24 -06:00
;;
*)
XKB_DFLT_RULES="base"
;;
esac
fi
AC_DEFINE_UNQUOTED(XKB_DFLT_RULES, ["$XKB_DFLT_RULES"], [Default XKB ruleset])
AC_DEFINE_UNQUOTED(XKB_DFLT_MODEL, ["$XKB_DFLT_MODEL"], [Default XKB model])
AC_DEFINE_UNQUOTED(XKB_DFLT_LAYOUT, ["$XKB_DFLT_LAYOUT"], [Default XKB layout])
AC_DEFINE_UNQUOTED(XKB_DFLT_VARIANT, ["$XKB_DFLT_VARIANT"], [Default XKB variant])
AC_DEFINE_UNQUOTED(XKB_DFLT_OPTIONS, ["$XKB_DFLT_OPTIONS"], [Default XKB options])
2011-11-05 07:32:40 -06:00
AC_SUBST([XKB_DFLT_RULES])
AC_SUBST([XKB_DFLT_MODEL])
AC_SUBST([XKB_DFLT_LAYOUT])
AC_SUBST([XKB_DFLT_VARIANT])
AC_SUBST([XKB_DFLT_OPTIONS])
2010-07-27 13:02:24 -06:00
2006-11-26 11:13:41 -07:00
XKB_LIB='$(top_builddir)/xkb/libxkb.la'
XKB_STUB_LIB='$(top_builddir)/xkb/libxkbstubs.la'
2010-07-27 13:02:24 -06:00
REQUIRED_MODULES="$REQUIRED_MODULES xkbfile"
2006-11-26 11:13:41 -07:00
PKG_CHECK_MODULES([XDMCP], [xdmcp], [have_libxdmcp="yes"], [have_libxdmcp="no"])
if test "x$have_libxdmcp" = xyes; then
AC_CHECK_LIB(Xdmcp, XdmcpWrap, [have_xdmcpwrap="yes"], [have_xdmcpwrap="no"], [$XDMCP_LIBS])
fi
if test "x$XDMCP" = xauto; then
if test "x$have_libxdmcp" = xyes; then
XDMCP=yes
else
XDMCP=no
fi
fi
if test "x$XDMAUTH" = xauto; then
if test "x$have_libxdmcp" = xyes && test "x$have_xdmcpwrap" = xyes; then
XDMAUTH=yes
else
XDMAUTH=no
fi
fi
AM_CONDITIONAL(XDMCP, [test "x$XDMCP" = xyes])
if test "x$XDMCP" = xyes; then
AC_DEFINE(XDMCP, 1, [Support XDM Control Protocol])
REQUIRED_LIBS="$REQUIRED_LIBS xdmcp"
XDMCP_MODULES="xdmcp"
fi
AM_CONDITIONAL(XDMAUTH, [test "x$XDMAUTH" = xyes])
if test "x$XDMAUTH" = xyes; then
AC_DEFINE(HASXDMAUTH,1,[Support XDM-AUTH*-1])
if ! test "x$XDMCP" = xyes; then
REQUIRED_LIBS="$REQUIRED_LIBS xdmcp"
XDMCP_MODULES="xdmcp"
fi
fi
2016-05-29 06:02:34 -06:00
if test "x$XF86VIDMODE" = xauto; then
PKG_CHECK_EXISTS($VIDMODEPROTO, [XF86VIDMODE=yes], [XF86VIDMODE=no])
fi
if test "x$XF86VIDMODE" = xyes; then
AC_DEFINE(XF86VIDMODE, 1, [Support XFree86 Video Mode extension])
fi
AM_CONDITIONAL([XF86VIDMODE], [test "x$XF86VIDMODE" = xyes])
2006-11-26 11:13:41 -07:00
AC_DEFINE_DIR(COMPILEDDEFAULTFONTPATH, FONTPATH, [Default font path])
2008-11-02 08:26:08 -07:00
AC_DEFINE_DIR(SERVER_MISC_CONFIG_PATH, SERVERCONFIG, [Server miscellaneous config path])
2010-07-27 13:02:24 -06:00
AC_DEFINE_DIR(BASE_FONT_PATH, FONTROOTDIR, [Default base font path])
2011-11-05 07:32:40 -06:00
dridriverdir=`$PKG_CONFIG --variable=dridriverdir dri`
AC_DEFINE_DIR(DRI_DRIVER_PATH, dridriverdir, [Default DRI driver path])
2007-11-24 12:04:00 -07:00
AC_DEFINE_UNQUOTED(XVENDORNAME, ["$VENDOR_NAME"], [Vendor name])
AC_DEFINE_UNQUOTED(XVENDORNAMESHORT, ["$VENDOR_NAME_SHORT"], [Short vendor name])
2006-11-26 11:13:41 -07:00
AC_DEFINE_UNQUOTED(XORG_DATE, ["$RELEASE_DATE"], [Vendor release])
AC_DEFINE_UNQUOTED(XORG_MAN_VERSION, ["$VENDOR_MAN_VERSION"], [Vendor man version])
AC_DEFINE_UNQUOTED(BUILDERADDR, ["$BUILDERADDR"], [Builder address])
2007-11-24 12:04:00 -07:00
if test -z "$OSNAME"; then
OSNAME="UNKNOWN"
fi
2006-11-26 11:13:41 -07:00
AC_DEFINE_UNQUOTED(OSNAME, ["$OSNAME"], [Operating System Name])
AC_DEFINE_UNQUOTED(OSVENDOR, ["$OSVENDOR"], [Operating System Vendor])
2007-11-24 12:04:00 -07:00
AC_DEFINE_UNQUOTED(BUILDERSTRING, ["$BUILDERSTRING"], [Builder string])
AC_SUBST([VENDOR_NAME_SHORT])
2010-07-27 13:02:24 -06:00
AC_DEFINE_UNQUOTED(VENDOR_NAME, ["$VENDOR_NAME"], [Vendor name])
AC_DEFINE_UNQUOTED(VENDOR_NAME_SHORT, ["$VENDOR_NAME_SHORT"], [Vendor name])
AC_DEFINE_UNQUOTED(VENDOR_RELEASE, [$VENDOR_RELEASE], [Vendor release])
AC_DEFINE_UNQUOTED(VENDOR_MAN_VERSION, ["$VENDOR_MAN_VERSION"], [Vendor man version])
2006-11-26 11:13:41 -07:00
2007-11-24 12:04:00 -07:00
if test "x$DEBUGGING" = xyes; then
AC_DEFINE(DEBUG, 1, [Enable debugging code])
2006-11-26 11:13:41 -07:00
fi
2007-11-24 12:04:00 -07:00
AM_CONDITIONAL(DEBUG, [test "x$DEBUGGING" = xyes])
2006-11-26 11:13:41 -07:00
AC_DEFINE(XTEST, 1, [Support XTest extension])
AC_DEFINE(XSYNC, 1, [Support XSync extension])
AC_DEFINE(XCMISC, 1, [Support XCMisc extension])
AC_DEFINE(BIGREQS, 1, [Support BigRequests extension])
2010-07-27 13:02:24 -06:00
if test "x$SPECIAL_DTRACE_OBJECTS" = "xyes" ; then
2007-11-24 12:04:00 -07:00
DIX_LIB='$(top_builddir)/dix/dix.O'
2014-05-02 13:27:46 -06:00
OS_LIB='$(top_builddir)/os/os.O $(SHA1_LIBS) $(DLOPEN_LIBS) $(LIBUNWIND_LIBS)'
2007-11-24 12:04:00 -07:00
else
DIX_LIB='$(top_builddir)/dix/libdix.la'
OS_LIB='$(top_builddir)/os/libos.la'
fi
2010-07-27 13:02:24 -06:00
AC_SUBST([DIX_LIB])
AC_SUBST([OS_LIB])
MAIN_LIB='$(top_builddir)/dix/libmain.la'
AC_SUBST([MAIN_LIB])
2006-11-26 11:13:41 -07:00
MI_LIB='$(top_builddir)/mi/libmi.la'
MI_EXT_LIB='$(top_builddir)/mi/libmiext.la'
MI_INC='-I$(top_srcdir)/mi'
FB_LIB='$(top_builddir)/fb/libfb.la'
FB_INC='-I$(top_srcdir)/fb'
MIEXT_SHADOW_INC='-I$(top_srcdir)/miext/shadow'
MIEXT_SHADOW_LIB='$(top_builddir)/miext/shadow/libshadow.la'
2011-11-05 07:32:40 -06:00
MIEXT_SYNC_INC='-I$(top_srcdir)/miext/sync'
MIEXT_SYNC_LIB='$(top_builddir)/miext/sync/libsync.la'
2006-11-26 11:13:41 -07:00
CORE_INCS='-I$(top_srcdir)/include -I$(top_builddir)/include'
2010-07-27 13:02:24 -06:00
# SHA1 hashing
AC_ARG_WITH([sha1],
2013-06-07 11:28:45 -06:00
[AS_HELP_STRING([--with-sha1=libc|libmd|libnettle|libgcrypt|libcrypto|libsha1|CommonCrypto|CryptoAPI],
2010-07-27 13:02:24 -06:00
[choose SHA1 implementation])])
AC_CHECK_FUNC([SHA1Init], [HAVE_SHA1_IN_LIBC=yes])
if test "x$with_sha1" = x && test "x$HAVE_SHA1_IN_LIBC" = xyes; then
with_sha1=libc
fi
if test "x$with_sha1" = xlibc && test "x$HAVE_SHA1_IN_LIBC" != xyes; then
AC_MSG_ERROR([libc requested but not found])
fi
if test "x$with_sha1" = xlibc; then
AC_DEFINE([HAVE_SHA1_IN_LIBC], [1],
[Use libc SHA1 functions])
SHA1_LIBS=""
fi
AC_CHECK_FUNC([CC_SHA1_Init], [HAVE_SHA1_IN_COMMONCRYPTO=yes])
if test "x$with_sha1" = x && test "x$HAVE_SHA1_IN_COMMONCRYPTO" = xyes; then
with_sha1=CommonCrypto
fi
if test "x$with_sha1" = xCommonCrypto && test "x$HAVE_SHA1_IN_COMMONCRYPTO" != xyes; then
AC_MSG_ERROR([CommonCrypto requested but not found])
fi
if test "x$with_sha1" = xCommonCrypto; then
AC_DEFINE([HAVE_SHA1_IN_COMMONCRYPTO], [1],
[Use CommonCrypto SHA1 functions])
SHA1_LIBS=""
fi
2013-06-07 11:28:45 -06:00
dnl stdcall functions cannot be tested with AC_CHECK_LIB
AC_CHECK_HEADER([wincrypt.h], [HAVE_SHA1_IN_CRYPTOAPI=yes], [], [#include <windows.h>])
if test "x$with_sha1" = x && test "x$HAVE_SHA1_IN_CRYPTOAPI" = xyes; then
with_sha1=CryptoAPI
fi
if test "x$with_sha1" = xCryptoAPI && test "x$HAVE_SHA1_IN_CRYPTOAPI" != xyes; then
AC_MSG_ERROR([CryptoAPI requested but not found])
fi
if test "x$with_sha1" = xCryptoAPI; then
AC_DEFINE([HAVE_SHA1_IN_CRYPTOAPI], [1],
[Use CryptoAPI SHA1 functions])
SHA1_LIBS=""
fi
2010-07-27 13:02:24 -06:00
AC_CHECK_LIB([md], [SHA1Init], [HAVE_LIBMD=yes])
if test "x$with_sha1" = x && test "x$HAVE_LIBMD" = xyes; then
with_sha1=libmd
fi
if test "x$with_sha1" = xlibmd && test "x$HAVE_LIBMD" != xyes; then
AC_MSG_ERROR([libmd requested but not found])
fi
if test "x$with_sha1" = xlibmd; then
AC_DEFINE([HAVE_SHA1_IN_LIBMD], [1],
[Use libmd SHA1 functions])
SHA1_LIBS=-lmd
fi
2010-12-05 08:36:02 -07:00
PKG_CHECK_MODULES([LIBSHA1], [libsha1], [HAVE_LIBSHA1=yes], [HAVE_LIBSHA1=no])
2010-07-27 13:02:24 -06:00
if test "x$with_sha1" = x && test "x$HAVE_LIBSHA1" = xyes; then
with_sha1=libsha1
fi
if test "x$with_sha1" = xlibsha1 && test "x$HAVE_LIBSHA1" != xyes; then
AC_MSG_ERROR([libsha1 requested but not found])
fi
if test "x$with_sha1" = xlibsha1; then
AC_DEFINE([HAVE_SHA1_IN_LIBSHA1], [1],
[Use libsha1 for SHA1])
SHA1_LIBS=-lsha1
fi
2013-06-07 11:28:45 -06:00
AC_CHECK_LIB([nettle], [nettle_sha1_init], [HAVE_LIBNETTLE=yes])
if test "x$with_sha1" = x && test "x$HAVE_LIBNETTLE" = xyes; then
with_sha1=libnettle
fi
if test "x$with_sha1" = xlibnettle && test "x$HAVE_LIBNETTLE" != xyes; then
AC_MSG_ERROR([libnettle requested but not found])
fi
if test "x$with_sha1" = xlibnettle; then
AC_DEFINE([HAVE_SHA1_IN_LIBNETTLE], [1],
[Use libnettle SHA1 functions])
SHA1_LIBS=-lnettle
fi
2010-07-27 13:02:24 -06:00
AC_CHECK_LIB([gcrypt], [gcry_md_open], [HAVE_LIBGCRYPT=yes])
if test "x$with_sha1" = x && test "x$HAVE_LIBGCRYPT" = xyes; then
with_sha1=libgcrypt
fi
if test "x$with_sha1" = xlibgcrypt && test "x$HAVE_LIBGCRYPT" != xyes; then
AC_MSG_ERROR([libgcrypt requested but not found])
fi
if test "x$with_sha1" = xlibgcrypt; then
AC_DEFINE([HAVE_SHA1_IN_LIBGCRYPT], [1],
[Use libgcrypt SHA1 functions])
SHA1_LIBS=-lgcrypt
fi
# We don't need all of the OpenSSL libraries, just libcrypto
AC_CHECK_LIB([crypto], [SHA1_Init], [HAVE_LIBCRYPTO=yes])
PKG_CHECK_MODULES([OPENSSL], [openssl], [HAVE_OPENSSL_PKC=yes],
[HAVE_OPENSSL_PKC=no])
if test "x$HAVE_LIBCRYPTO" = xyes || test "x$HAVE_OPENSSL_PKC" = xyes; then
if test "x$with_sha1" = x; then
with_sha1=libcrypto
fi
else
if test "x$with_sha1" = xlibcrypto; then
AC_MSG_ERROR([OpenSSL libcrypto requested but not found])
fi
2009-09-06 13:44:18 -06:00
fi
2010-07-27 13:02:24 -06:00
if test "x$with_sha1" = xlibcrypto; then
if test "x$HAVE_LIBCRYPTO" = xyes; then
SHA1_LIBS=-lcrypto
else
SHA1_LIBS="$OPENSSL_LIBS"
SHA1_CFLAGS="$OPENSSL_CFLAGS"
fi
2009-09-06 13:44:18 -06:00
fi
2010-07-27 13:02:24 -06:00
AC_MSG_CHECKING([for SHA1 implementation])
if test "x$with_sha1" = x; then
AC_MSG_ERROR([No suitable SHA1 implementation found])
fi
AC_MSG_RESULT([$with_sha1])
AC_SUBST(SHA1_LIBS)
AC_SUBST(SHA1_CFLAGS)
2009-09-06 13:44:18 -06:00
PKG_CHECK_MODULES([XSERVERCFLAGS], [$REQUIRED_MODULES $REQUIRED_LIBS])
PKG_CHECK_MODULES([XSERVERLIBS], [$REQUIRED_LIBS])
2008-11-02 08:26:08 -07:00
2014-05-02 13:27:46 -06:00
PKG_CHECK_MODULES(LIBUNWIND, libunwind, [HAVE_LIBUNWIND=yes], [HAVE_LIBUNWIND=no])
if test "x$LIBUNWIND" = "xauto"; then
LIBUNWIND="$HAVE_LIBUNWIND"
fi
if test "x$LIBUNWIND" = "xyes"; then
if test "x$HAVE_LIBUNWIND" != "xyes"; then
AC_MSG_ERROR([libunwind requested but not installed.])
fi
AC_DEFINE(HAVE_LIBUNWIND, 1, [Have libunwind support])
fi
AM_CONDITIONAL(HAVE_LIBUNWIND, [test "x$LIBUNWIND" = xyes])
2008-11-02 08:26:08 -07:00
# Autotools has some unfortunate issues with library handling. In order to
# get a server to rebuild when a dependency in the tree is changed, it must
# be listed in SERVERNAME_DEPENDENCIES. However, no system libraries may be
2009-09-06 13:44:18 -06:00
# listed there, or some versions of autotools will break (especially if a -L
2008-11-02 08:26:08 -07:00
# is required to find the library). So, we keep two sets of libraries
# detected: NAMESPACE_LIBS for in-tree libraries to be linked against, which
# will go into the _DEPENDENCIES and _LDADD of the server, and
# NAMESPACE_SYS_LIBS which will go into only the _LDADD. The
# NAMESPACEMODULES_LIBS detected from pkgconfig should always go in
# NAMESPACE_SYS_LIBS.
#
# XSERVER_LIBS is the set of in-tree libraries which all servers require.
# XSERVER_SYS_LIBS is the set of out-of-tree libraries which all servers
# require.
#
2010-07-27 13:02:24 -06:00
XSERVER_CFLAGS="${XSERVER_CFLAGS} ${XSERVERCFLAGS_CFLAGS}"
2010-12-05 08:36:02 -07:00
XSERVER_LIBS="$DIX_LIB $MI_LIB $OS_LIB"
2010-07-27 13:02:24 -06:00
XSERVER_SYS_LIBS="${XSERVERLIBS_LIBS} ${SYS_LIBS} ${LIBS}"
2008-11-02 08:26:08 -07:00
AC_SUBST([XSERVER_LIBS])
AC_SUBST([XSERVER_SYS_LIBS])
UTILS_SYS_LIBS="${SYS_LIBS}"
AC_SUBST([UTILS_SYS_LIBS])
2006-11-26 11:13:41 -07:00
2007-11-24 12:04:00 -07:00
# The Xorg binary needs to export symbols so that they can be used from modules
2010-07-27 13:02:24 -06:00
# Some platforms require extra flags to do this. libtool should set the
# necessary flags for each platform when -export-dynamic is passed to it.
LD_EXPORT_SYMBOLS_FLAG="-export-dynamic"
2007-11-24 12:04:00 -07:00
case $host_os in
openbsd*)
case $host_cpu in
2016-08-13 08:05:23 -06:00
m88k)
2007-11-24 12:04:00 -07:00
LD_EXPORT_SYMBOLS_FLAGS=""
;;
*)
LD_EXPORT_SYMBOLS_FLAG="-Wl,--export-dynamic"
;;
esac
;;
esac
2013-06-07 11:28:45 -06:00
LD_NO_UNDEFINED_FLAG=
XORG_DRIVER_LIBS=
case "$host_os" in
cygwin*)
LD_EXPORT_SYMBOLS_FLAG="-Wl,--export-all,--out-implib,lib\$@.a"
LD_NO_UNDEFINED_FLAG="-no-undefined -Wl,\$(top_builddir)/hw/xfree86/libXorg.exe.a"
XORG_DRIVER_LIBS="-lXorg.exe -L\${moduledir} -lshadow -lfb -no-undefined"
CYGWIN=yes
;;
solaris*)
# We use AC_LINK_IFELSE to generate a temporary program conftest$EXEEXT
# that we can link against for testing if the system linker is new
# enough to support -z parent=<program> for verifying loadable modules
# are only calling functions defined in either the loading program or
# the libraries they're linked with.
AC_LINK_IFELSE(
[AC_LANG_SOURCE([int main(int argc, char **argv) { return 0; }])],
[mv conftest$EXEEXT conftest.parent
XORG_CHECK_LINKER_FLAGS([-Wl,-z,parent=conftest.parent -G],
[LD_NO_UNDEFINED_FLAG="-Wl,-z,defs -Wl,-z,parent=\$(top_builddir)/hw/xfree86/Xorg"
# Not set yet, since this gets exported in xorg-server.pc to all the drivers,
# and they're not all fixed to build correctly with it yet.
# XORG_DRIVER_LIBS="-Wl,-z,defs -Wl,-z,parent=${bindir}/Xorg"
],[],
[AC_LANG_SOURCE([extern int main(int argc, char **argv);
2016-05-29 06:02:34 -06:00
int call_main(void) { return main(0, (void *)0); }])])
2013-06-07 11:28:45 -06:00
rm -f conftest.parent
])
;;
esac
2007-11-24 12:04:00 -07:00
AC_SUBST([LD_EXPORT_SYMBOLS_FLAG])
2013-06-07 11:28:45 -06:00
AC_SUBST([LD_NO_UNDEFINED_FLAG])
AC_SUBST([XORG_DRIVER_LIBS])
AM_CONDITIONAL([CYGWIN], [test x"$CYGWIN" = xyes])
AM_CONDITIONAL([NO_UNDEFINED], [test x"$LD_NO_UNDEFINED_FLAG" != x])
2007-11-24 12:04:00 -07:00
2006-11-26 11:13:41 -07:00
dnl Imake defines SVR4 on SVR4 systems, and many files check for it, so
dnl we need to replicate that here until those can all be fixed
AC_MSG_CHECKING([if SVR4 needs to be defined])
AC_EGREP_CPP([I_AM_SVR4],[
#if defined(SVR4) || defined(__svr4__) || defined(__SVR4)
I_AM_SVR4
#endif
],[
AC_DEFINE([SVR4],1,[Define to 1 on systems derived from System V Release 4])
AC_MSG_RESULT([yes])], AC_MSG_RESULT([no]))
2014-05-02 13:27:46 -06:00
XSERVER_CFLAGS="$XSERVER_CFLAGS $CORE_INCS $XEXT_INC $COMPOSITE_INC $DAMAGE_INC $FIXES_INC $XI_INC $MI_INC $MIEXT_SYNC_INC $MIEXT_SHADOW_INC $MIEXT_LAYER_INC $MIEXT_DAMAGE_INC $RENDER_INC $RANDR_INC $FB_INC $DBE_INC $PRESENT_INC"
2006-11-26 11:13:41 -07:00
dnl ---------------------------------------------------------------------------
dnl DDX section.
dnl ---------------------------------------------------------------------------
dnl Xvfb DDX
AC_MSG_CHECKING([whether to build Xvfb DDX])
AC_MSG_RESULT([$XVFB])
AM_CONDITIONAL(XVFB, [test "x$XVFB" = xyes])
if test "x$XVFB" = xyes; then
2014-05-02 13:27:46 -06:00
XVFB_LIBS="$FB_LIB $FIXES_LIB $XEXT_LIB $DBE_LIB $RECORD_LIB $GLX_LIBS $RANDR_LIB $RENDER_LIB $DAMAGE_LIB $DRI3_LIB $PRESENT_LIB $MIEXT_SYNC_LIB $MIEXT_DAMAGE_LIB $MIEXT_SHADOW_LIB $XI_LIB $XKB_LIB $XKB_STUB_LIB $COMPOSITE_LIB"
2009-09-06 13:44:18 -06:00
XVFB_SYS_LIBS="$XVFBMODULES_LIBS $GLX_SYS_LIBS"
2006-11-26 11:13:41 -07:00
AC_SUBST([XVFB_LIBS])
2008-11-02 08:26:08 -07:00
AC_SUBST([XVFB_SYS_LIBS])
2006-11-26 11:13:41 -07:00
fi
dnl Xnest DDX
2010-12-05 08:36:02 -07:00
PKG_CHECK_MODULES(XNESTMODULES, [$LIBXEXT x11 xau $XDMCP_MODULES], [have_xnest=yes], [have_xnest=no])
2009-09-06 13:44:18 -06:00
AC_MSG_CHECKING([whether to build Xnest DDX])
2006-11-26 11:13:41 -07:00
if test "x$XNEST" = xauto; then
XNEST="$have_xnest"
fi
AC_MSG_RESULT([$XNEST])
AM_CONDITIONAL(XNEST, [test "x$XNEST" = xyes])
if test "x$XNEST" = xyes; then
2010-07-27 13:02:24 -06:00
if test "x$have_xnest" = xno; then
AC_MSG_ERROR([Xnest build explicitly requested, but required modules not found.])
fi
2014-05-02 13:27:46 -06:00
XNEST_LIBS="$FB_LIB $FIXES_LIB $MI_LIB $XEXT_LIB $DBE_LIB $RECORD_LIB $GLX_LIBS $RANDR_LIB $RENDER_LIB $DAMAGE_LIB $DRI3_LIB $PRESENT_LIB $MIEXT_SYNC_LIB $MIEXT_DAMAGE_LIB $MIEXT_SHADOW_LIB $XI_LIB $XKB_LIB $XKB_STUB_LIB $COMPOSITE_LIB $MAIN_LIB $DIX_LIB $OS_LIB"
2009-09-06 13:44:18 -06:00
XNEST_SYS_LIBS="$XNESTMODULES_LIBS $GLX_SYS_LIBS"
2006-11-26 11:13:41 -07:00
AC_SUBST([XNEST_LIBS])
2008-11-02 08:26:08 -07:00
AC_SUBST([XNEST_SYS_LIBS])
2006-11-26 11:13:41 -07:00
fi
dnl Xorg DDX
AC_MSG_CHECKING([whether to build Xorg DDX])
if test "x$XORG" = xauto; then
XORG="yes"
case $host_os in
cygwin*) XORG="no" ;;
2013-06-07 11:28:45 -06:00
mingw*) XORG="no" ;;
2008-11-02 08:26:08 -07:00
darwin*) XORG="no" ;;
2006-11-26 11:13:41 -07:00
esac
fi
AC_MSG_RESULT([$XORG])
2009-09-06 13:44:18 -06:00
if test "x$XORG" = xyes; then
2006-11-26 11:13:41 -07:00
XORG_DDXINCS='-I$(top_srcdir)/hw/xfree86 -I$(top_srcdir)/hw/xfree86/include -I$(top_srcdir)/hw/xfree86/common'
XORG_OSINCS='-I$(top_srcdir)/hw/xfree86/os-support -I$(top_srcdir)/hw/xfree86/os-support/bus -I$(top_srcdir)/os'
XORG_INCS="$XORG_DDXINCS $XORG_OSINCS"
XORG_CFLAGS="$XORGSERVER_CFLAGS -DHAVE_XORG_CONFIG_H"
2014-05-02 13:27:46 -06:00
XORG_LIBS="$COMPOSITE_LIB $FIXES_LIB $XEXT_LIB $DBE_LIB $RECORD_LIB $RANDR_LIB $RENDER_LIB $DAMAGE_LIB $DRI3_LIB $PRESENT_LIB $MIEXT_SYNC_LIB $MIEXT_DAMAGE_LIB $XI_LIB $XKB_LIB"
2008-11-02 08:26:08 -07:00
2010-07-27 13:02:24 -06:00
dnl ==================================================================
dnl symbol visibility
symbol_visibility=
have_visibility=disabled
if test x$SYMBOL_VISIBILITY != xno; then
AC_MSG_CHECKING(for symbol visibility support)
if test x$GCC = xyes; then
VISIBILITY_CFLAGS="-fvisibility=hidden"
else
if test x$SUNCC = xyes; then
VISIBILITY_CFLAGS="-xldscope=hidden"
else
have_visibility=no
fi
fi
if test x$have_visibility != xno; then
save_CFLAGS="$CFLAGS"
2012-06-10 07:21:05 -06:00
proto_inc=`$PKG_CONFIG --cflags xproto`
CFLAGS="$CFLAGS $VISIBILITY_CFLAGS $proto_inc"
2014-09-27 11:52:59 -06:00
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
2010-07-27 13:02:24 -06:00
[#include <X11/Xfuncproto.h>
extern _X_HIDDEN int hidden_int;
extern _X_EXPORT int public_int;
extern _X_HIDDEN int hidden_int_func(void);
2014-09-27 11:52:59 -06:00
extern _X_EXPORT int public_int_func(void);]],
[])],
2010-07-27 13:02:24 -06:00
have_visibility=yes,
have_visibility=no)
CFLAGS=$save_CFLAGS
fi
AC_MSG_RESULT([$have_visibility])
if test x$have_visibility != xno; then
symbol_visibility=$VISIBILITY_CFLAGS
XORG_CFLAGS="$XORG_CFLAGS $VISIBILITY_CFLAGS"
XSERVER_CFLAGS="$XSERVER_CFLAGS $VISIBILITY_CFLAGS"
fi
fi
dnl added to xorg-server.pc
AC_SUBST([symbol_visibility])
dnl ===================================================================
2012-06-10 07:21:05 -06:00
dnl ===================================================================
dnl ================= beginning of PCI configuration ==================
dnl ===================================================================
xorg_bus_bsdpci=no
xorg_bus_sparc=no
AC_MSG_CHECKING([whether to build Xorg PCI functions])
if test "x$PCI" = xyes; then
2014-05-02 13:27:46 -06:00
PKG_CHECK_MODULES([PCIACCESS], $LIBPCIACCESS)
SDK_REQUIRED_MODULES="$SDK_REQUIRED_MODULES $LIBPCIACCESS"
2014-09-27 11:52:59 -06:00
XORG_SYS_LIBS="$XORG_SYS_LIBS $PCIACCESS_LIBS $LIBDRM_LIBS"
2014-05-02 13:27:46 -06:00
XORG_CFLAGS="$XORG_CFLAGS $PCIACCESS_CFLAGS $LIBDRM_CFLAGS"
2012-06-10 07:21:05 -06:00
2014-05-02 13:27:46 -06:00
AC_DEFINE(XSERVER_LIBPCIACCESS, 1, [Use libpciaccess for all pci manipulation])
AC_DEFINE_DIR(PCI_TXT_IDS_PATH, PCI_TXT_IDS_DIR, [Default PCI text file ID path])
2012-06-10 07:21:05 -06:00
case $host_os in
2014-05-02 13:27:46 -06:00
gnu* | freebsd* | kfreebsd*-gnu | netbsd* | openbsd* | solaris* | dragonfly*)
xorg_bus_bsdpci="yes"
;;
2012-06-10 07:21:05 -06:00
esac
2014-05-02 13:27:46 -06:00
case $host_cpu in
sparc*)
case $host_os in
openbsd*)
xorg_bus_sparc="no"
;;
*)
xorg_bus_sparc="yes"
;;
esac
;;
esac
else
if test "x$CONFIG_UDEV_KMS" = xyes; then
AC_MSG_ERROR([Platform device enumeration requires libpciaccess])
fi
if test "x$INT10MODULE" = xyes && test "x$INT10" != xstub; then
AC_MSG_ERROR([Cannot build int10 without libpciaccess])
fi
2012-06-10 07:21:05 -06:00
fi
AC_MSG_RESULT([$PCI])
2013-06-07 11:28:45 -06:00
if test "x$CONFIG_UDEV_KMS" = xyes; then
AC_DEFINE(XSERVER_PLATFORM_BUS, 1, [X server supports platform device enumeration])
fi
AC_MSG_RESULT([$XSERVER_PLATFORM_BUS])
2012-06-10 07:21:05 -06:00
dnl ===================================================================
dnl ==================== end of PCI configuration =====================
dnl ===================================================================
2006-11-26 11:13:41 -07:00
case $host_os in
linux*)
XORG_OS_SUBDIR="linux"
linux_acpi="no"
case $host_cpu in
alpha*)
linux_alpha=yes
;;
2012-06-10 07:21:05 -06:00
i*86|amd64*|x86_64*|ia64*)
2014-05-02 13:27:46 -06:00
linux_acpi=$enable_linux_acpi
2006-11-26 11:13:41 -07:00
;;
*)
;;
esac
2014-05-02 13:27:46 -06:00
dnl APM header
AC_CHECK_HEADERS([linux/apm_bios.h], [linux_apm=$enable_linux_apm])
if test "x$linux_apm" = xyes -o "x$linux_acpi" = xyes; then
AC_DEFINE(XF86PM, 1, [Support APM/ACPI power management in the server])
fi
2006-11-26 11:13:41 -07:00
;;
2008-06-14 18:17:32 -06:00
freebsd* | kfreebsd*-gnu | dragonfly*)
2006-11-26 11:13:41 -07:00
XORG_OS_SUBDIR="bsd"
;;
netbsd*)
XORG_OS_SUBDIR="bsd"
;;
openbsd*)
2007-04-17 16:03:42 -06:00
if test "x$ac_cv_BSD_APM" = xyes \
-o "x$ac_cv_BSD_KQUEUE_APM" = xyes; then
XORG_CFLAGS="$XORG_CFLAGS -DXF86PM"
fi
2006-11-26 11:13:41 -07:00
XORG_OS_SUBDIR="bsd"
;;
solaris*)
XORG_OS_SUBDIR="solaris"
2010-07-27 13:02:24 -06:00
XORG_CFLAGS="$XORG_CFLAGS -DXF86PM"
2009-09-06 13:44:18 -06:00
AC_CHECK_HEADERS([sys/kd.h])
2010-07-27 13:02:24 -06:00
AC_CHECK_HEADERS([sys/vt.h], [solaris_vt=yes], [solaris_vt=no])
# Check for minimum supported release
2006-11-26 11:13:41 -07:00
AC_MSG_CHECKING([Solaris version])
2010-07-27 13:02:24 -06:00
OS_MINOR=`echo ${host_os}|$SED -e 's/^.*solaris2\.//' -e s'/\..*$//'`
2006-11-26 11:13:41 -07:00
if test "${OS_MINOR}" -ge 7 ; then
AC_MSG_RESULT(Solaris ${OS_MINOR})
else
2010-07-27 13:02:24 -06:00
AC_MSG_RESULT(Solaris `echo ${host_os}|$SED -e 's/^.*solaris//`)
2006-11-26 11:13:41 -07:00
fi
2010-07-27 13:02:24 -06:00
if test "${OS_MINOR}" -lt 8 ; then
AC_MSG_ERROR([This release no longer supports Solaris versions older than Solaris 8.])
2006-11-26 11:13:41 -07:00
fi
AC_CHECK_DECL([_LP64], [SOLARIS_64="yes"], [SOLARIS_64="no"])
case $host_cpu in
sparc*)
SOLARIS_INOUT_ARCH="sparcv8plus"
;;
2015-09-16 13:10:19 -06:00
i*86|x86_64*)
2006-11-26 11:13:41 -07:00
if test x$SOLARIS_64 = xyes ; then
SOLARIS_INOUT_ARCH="amd64"
else
SOLARIS_INOUT_ARCH="ia32"
fi
;;
*)
AC_MSG_ERROR([Unsupported Solaris platform. Only SPARC & x86 \
are supported on Solaris in this release. If you are \
interested in porting Xorg to your platform, please email \
xorg@lists.freedesktop.org.]) ;;
esac
AC_SUBST([SOLARIS_INOUT_ARCH])
;;
gnu*)
XORG_OS_SUBDIR="hurd"
;;
2015-09-16 13:10:19 -06:00
cygwin*)
XORG_OS_SUBDIR="stub"
;;
2006-11-26 11:13:41 -07:00
*)
2012-06-10 07:21:05 -06:00
XORG_OS_SUBDIR="stub"
AC_MSG_NOTICE([m4_text_wrap(m4_join([ ],
2015-09-16 13:10:19 -06:00
[Your OS is unknown.],
2010-12-05 08:36:02 -07:00
[If you are interested in porting Xorg to your platform,],
[please email xorg@lists.freedesktop.org.]))])
2006-11-26 11:13:41 -07:00
;;
esac
2007-11-24 12:04:00 -07:00
if test "x$DGA" = xauto; then
2010-07-27 13:02:24 -06:00
PKG_CHECK_MODULES(DGA, $DGAPROTO, [DGA=yes], [DGA=no])
2007-11-24 12:04:00 -07:00
fi
if test "x$DGA" = xyes; then
2010-07-27 13:02:24 -06:00
XORG_MODULES="$XORG_MODULES $DGAPROTO"
PKG_CHECK_MODULES(DGA, $DGAPROTO)
2007-11-24 12:04:00 -07:00
AC_DEFINE(DGA, 1, [Support DGA extension])
AC_DEFINE(XFreeXDGA, 1, [Build XDGA support])
fi
if test "x$XF86VIDMODE" = xyes; then
2010-07-27 13:02:24 -06:00
XORG_MODULES="$XORG_MODULES $VIDMODEPROTO"
2007-11-24 12:04:00 -07:00
fi
if test -n "$XORG_MODULES"; then
PKG_CHECK_MODULES(XORG_MODULES, [$XORG_MODULES])
XORG_CFLAGS="$XORG_CFLAGS $XORG_MODULES_CFLAGS"
2008-11-02 08:26:08 -07:00
XORG_SYS_LIBS="$XORG_SYS_LIBS $XORG_MODULES_LIBS"
2007-11-24 12:04:00 -07:00
fi
2015-09-16 13:10:19 -06:00
if test "x$DRM" = xyes; then
dnl 2.4.46 is required for cursor hotspot support.
2016-05-29 06:02:34 -06:00
PKG_CHECK_EXISTS(libdrm >= 2.4.46, XORG_DRIVER_MODESETTING=yes, XORG_DRIVER_MODESETTING=no)
2015-09-16 13:10:19 -06:00
fi
2006-11-26 11:13:41 -07:00
AC_SUBST([XORG_LIBS])
2008-11-02 08:26:08 -07:00
AC_SUBST([XORG_SYS_LIBS])
2006-11-26 11:13:41 -07:00
AC_SUBST([XORG_INCS])
AC_SUBST([XORG_OS_SUBDIR])
AC_SUBST([XORG_CFLAGS])
dnl these only go in xorg-config.h
XF86CONFIGFILE="xorg.conf"
2010-07-27 13:02:24 -06:00
XF86CONFIGDIR="xorg.conf.d"
AC_SUBST(XF86CONFIGDIR)
2006-11-26 11:13:41 -07:00
CONFIGFILE="$sysconfdir/$XF86CONFIGFILE"
2014-09-27 11:52:59 -06:00
LOGPREFIX="Xorg."
XDG_DATA_HOME=".local/share"
XDG_DATA_HOME_LOGDIR="xorg"
2006-11-26 11:13:41 -07:00
AC_DEFINE(XORG_SERVER, 1, [Building Xorg server])
AC_DEFINE(XORGSERVER, 1, [Building Xorg server])
AC_DEFINE(XFree86Server, 1, [Building XFree86 server])
AC_DEFINE_UNQUOTED(XORG_VERSION_CURRENT, [$VENDOR_RELEASE], [Current Xorg version])
AC_DEFINE(NEED_XF86_TYPES, 1, [Need XFree86 typedefs])
AC_DEFINE(NEED_XF86_PROTOTYPES, 1, [Need XFree86 helper functions])
AC_DEFINE(__XSERVERNAME__, "Xorg", [Name of X server])
AC_DEFINE_DIR(__XCONFIGFILE__, XF86CONFIGFILE, [Name of configuration file])
AC_DEFINE_DIR(XF86CONFIGFILE, XF86CONFIGFILE, [Name of configuration file])
2010-07-27 13:02:24 -06:00
AC_DEFINE_DIR(__XCONFIGDIR__, XF86CONFIGDIR, [Name of configuration directory])
2006-11-26 11:13:41 -07:00
AC_DEFINE_DIR(DEFAULT_MODULE_PATH, moduledir, [Default module search path])
2006-12-16 13:59:13 -07:00
AC_DEFINE_DIR(DEFAULT_LIBRARY_PATH, libdir, [Default library install path])
2014-09-27 11:52:59 -06:00
AC_DEFINE_DIR(DEFAULT_LOGDIR, logdir, [Default log location])
AC_DEFINE_DIR(DEFAULT_LOGPREFIX, LOGPREFIX, [Default logfile prefix])
AC_DEFINE_DIR(DEFAULT_XDG_DATA_HOME, XDG_DATA_HOME, [Default XDG_DATA dir under HOME])
AC_DEFINE_DIR(DEFAULT_XDG_DATA_HOME_LOGDIR, XDG_DATA_HOME_LOGDIR, [Default log dir under XDG_DATA_HOME])
2006-11-26 11:13:41 -07:00
AC_DEFINE_UNQUOTED(__VENDORDWEBSUPPORT__, ["$VENDOR_WEB"], [Vendor web address for support])
2010-07-27 13:02:24 -06:00
if test "x$VGAHW" = xyes; then
AC_DEFINE(WITH_VGAHW, 1, [Building vgahw module])
fi
2006-11-26 11:13:41 -07:00
driverdir="$moduledir/drivers"
AC_SUBST([moduledir])
AC_SUBST([driverdir])
sdkdir="$includedir/xorg"
extdir="$includedir/X11/extensions"
2010-07-27 13:02:24 -06:00
sysconfigdir="$datadir/X11/$XF86CONFIGDIR"
2006-11-26 11:13:41 -07:00
AC_SUBST([sdkdir])
AC_SUBST([extdir])
2010-07-27 13:02:24 -06:00
AC_SUBST([sysconfigdir])
2006-11-26 11:13:41 -07:00
AC_SUBST([logdir])
2008-11-02 08:26:08 -07:00
# stuff the ABI versions into the pc file too
extract_abi() {
grep ^.define.*${1}_VERSION ${srcdir}/hw/xfree86/common/xf86Module.h | tr '(),' ' .' | awk '{ print $4$5 }'
}
abi_ansic=`extract_abi ANSIC`
abi_videodrv=`extract_abi VIDEODRV`
abi_xinput=`extract_abi XINPUT`
abi_extension=`extract_abi EXTENSION`
AC_SUBST([abi_ansic])
AC_SUBST([abi_videodrv])
AC_SUBST([abi_xinput])
AC_SUBST([abi_extension])
2006-11-26 11:13:41 -07:00
fi
AM_CONDITIONAL([XORG], [test "x$XORG" = xyes])
2012-06-10 07:21:05 -06:00
AM_CONDITIONAL([XORG_BUS_PCI], [test "x$PCI" = xyes])
2008-11-02 08:26:08 -07:00
AM_CONDITIONAL([XORG_BUS_BSDPCI], [test "x$xorg_bus_bsdpci" = xyes])
2006-11-26 11:13:41 -07:00
AM_CONDITIONAL([XORG_BUS_SPARC], [test "x$xorg_bus_sparc" = xyes])
AM_CONDITIONAL([LINUX_ALPHA], [test "x$linux_alpha" = xyes])
AM_CONDITIONAL([LNXACPI], [test "x$linux_acpi" = xyes])
2014-05-02 13:27:46 -06:00
AM_CONDITIONAL([LNXAPM], [test "x$linux_apm" = xyes])
2010-07-27 13:02:24 -06:00
AM_CONDITIONAL([SOLARIS_VT], [test "x$solaris_vt" = xyes])
2007-12-13 14:47:48 -07:00
AM_CONDITIONAL([DGA], [test "x$DGA" = xyes])
2013-06-07 11:28:45 -06:00
AM_CONDITIONAL([XORG_BUS_PLATFORM], [test "x$CONFIG_UDEV_KMS" = xyes])
2015-09-16 13:10:19 -06:00
AM_CONDITIONAL([XORG_DRIVER_MODESETTING], [test "x$XORG_DRIVER_MODESETTING" = xyes])
2014-09-27 11:52:59 -06:00
dnl glamor
AM_CONDITIONAL([GLAMOR], [test "x$GLAMOR" = xyes])
if test "x$GLAMOR" = xyes; then
AC_DEFINE(GLAMOR, 1, [Build glamor])
PKG_CHECK_MODULES([GLAMOR], [epoxy])
PKG_CHECK_MODULES(GBM, "$LIBGBM", [GBM=yes], [GBM=no])
if test "x$GBM" = xyes; then
AC_DEFINE(GLAMOR_HAS_GBM, 1,
[Build glamor with GBM-based EGL support])
2016-05-29 06:02:34 -06:00
AC_CHECK_DECL(GBM_BO_USE_LINEAR,
[AC_DEFINE(GLAMOR_HAS_GBM_LINEAR, 1, [Have GBM_BO_USE_LINEAR])], [],
[#include <stdlib.h>
#include <gbm.h>])
2014-09-27 11:52:59 -06:00
fi
fi
AM_CONDITIONAL([GLAMOR_EGL], [test "x$GBM" = xyes])
2006-11-26 11:13:41 -07:00
dnl XWin DDX
AC_MSG_CHECKING([whether to build XWin DDX])
if test "x$XWIN" = xauto; then
case $host_os in
cygwin*) XWIN="yes" ;;
mingw*) XWIN="yes" ;;
*) XWIN="no" ;;
esac
fi
AC_MSG_RESULT([$XWIN])
if test "x$XWIN" = xyes; then
2010-07-27 13:02:24 -06:00
AC_DEFINE_DIR(DEFAULT_LOGDIR, logdir, [Default log location])
AC_DEFINE_UNQUOTED(XORG_VERSION_CURRENT, [$VENDOR_RELEASE], [Current Xorg version])
AC_DEFINE_UNQUOTED(__VENDORDWEBSUPPORT__, ["$VENDOR_WEB"], [Vendor web address for support])
AC_CHECK_TOOL(WINDRES, windres)
2015-09-16 13:10:19 -06:00
PKG_CHECK_MODULES([XWINMODULES],[x11 xdmcp xau xfixes])
2010-07-27 13:02:24 -06:00
if test "x$WINDOWSWM" = xauto; then
PKG_CHECK_EXISTS($WINDOWSWMPROTO, [WINDOWSWM=yes], [WINDOWSWM=no])
fi
if test "x$WINDOWSWM" = xyes ; then
PKG_CHECK_MODULES(WINDOWSWM, $WINDOWSWMPROTO)
XWINMODULES_CFLAGS="$XWINMODULES_CFLAGS $WINDOWSWM_CFLAGS"
AC_DEFINE(ROOTLESS,1,[Build Rootless code])
fi
2006-11-26 11:13:41 -07:00
case $host_os in
cygwin*)
2008-11-02 08:26:08 -07:00
XWIN_SERVER_NAME=XWin
2006-11-26 11:13:41 -07:00
AC_DEFINE(HAS_DEVWINDOWS,1,[Cygwin has /dev/windows for signaling new win32 messages])
;;
mingw*)
XWIN_SERVER_NAME=Xming
AC_DEFINE(RELOCATE_PROJECTROOT,1,[Make PROJECT_ROOT relative to the xserver location])
AC_DEFINE(HAS_WINSOCK,1,[Use Windows sockets])
2013-06-07 11:28:45 -06:00
XWIN_SYS_LIBS="-lpthread -lws2_32"
2006-11-26 11:13:41 -07:00
;;
esac
2013-06-07 11:28:45 -06:00
2014-05-02 13:27:46 -06:00
XWIN_LIBS="$FB_LIB $MI_LIB $FIXES_LIB $XEXT_LIB $RANDR_LIB $RENDER_LIB $DBE_LIB $RECORD_LIB $GLX_LIBS $XKB_LIB $XKB_STUB_LIB $COMPOSITE_LIB $DAMAGE_LIB $PRESENT_LIB $MIEXT_SYNC_LIB $MIEXT_DAMAGE_LIB $MIEXT_SHADOW_LIB $XI_LIB $OS_LIB"
XWIN_SYS_LIBS="$XWIN_SYS_LIBS $XWINMODULES_LIBS"
2010-07-27 13:02:24 -06:00
AC_SUBST(XWIN_LIBS)
2006-11-26 11:13:41 -07:00
AC_SUBST(XWIN_SERVER_NAME)
2008-11-02 08:26:08 -07:00
AC_SUBST(XWIN_SYS_LIBS)
2006-11-26 11:13:41 -07:00
if test "x$DEBUGGING" = xyes; then
AC_DEFINE(CYGDEBUG, 1, [Simple debug messages])
AC_DEFINE(CYGWINDOWING_DEBUG, 1, [Debug messages for window handling])
AC_DEFINE(CYGMULTIWINDOW_DEBUG, 1, [Debug window manager])
fi
AC_DEFINE(DDXOSVERRORF, 1, [Use OsVendorVErrorF])
AC_DEFINE(DDXBEFORERESET, 1, [Use ddxBeforeReset ])
2011-11-05 07:32:40 -06:00
dnl XWin with AIGLX requires OpenGL spec files in order to generate wrapper code for native GL functions
if [test "x$XWIN" = xyes && test "x$AIGLX" = xyes] ; then
2014-05-02 13:27:46 -06:00
AC_CHECK_PROG(PYTHON3, python3, python3)
if test -z "$PYTHON3"; then
AC_MSG_ERROR([python3 not found])
fi
AC_MSG_CHECKING(for python module lxml)
$PYTHON3 -c "import lxml;"
if test $? -ne 0 ; then
AC_MSG_ERROR([not found])
fi
AC_MSG_RESULT(yes)
2011-11-05 07:32:40 -06:00
if test "x$KHRONOS_SPEC_DIR" = "xauto" ; then
PKG_CHECK_MODULES([KHRONOS_OPENGL_REGISTRY], [khronos-opengl-registry])
KHRONOS_SPEC_DIR=`pkg-config khronos-opengl-registry --variable=specdir`
fi
AC_SUBST(KHRONOS_SPEC_DIR)
fi
2006-11-26 11:13:41 -07:00
fi
AM_CONDITIONAL(XWIN, [test "x$XWIN" = xyes])
AM_CONDITIONAL(XWIN_MULTIWINDOW, [test "x$XWIN" = xyes])
2010-07-27 13:02:24 -06:00
AM_CONDITIONAL(XWIN_MULTIWINDOWEXTWM, [test "x$XWIN" = xyes && test "x$WINDOWSWM" = xyes])
2006-11-26 11:13:41 -07:00
AM_CONDITIONAL(XWIN_CLIPBOARD, [test "x$XWIN" = xyes])
2011-11-05 07:32:40 -06:00
AM_CONDITIONAL(XWIN_GLX_WINDOWS, [test "x$XWIN" = xyes && test "x$AIGLX" = xyes])
2006-11-26 11:13:41 -07:00
AM_CONDITIONAL(XWIN_RANDR, [test "x$XWIN" = xyes])
AM_CONDITIONAL(XWIN_XV, [test "x$XWIN" = xyes && test "x$XV" = xyes])
2007-11-24 12:04:00 -07:00
dnl Darwin / OS X DDX
2008-11-02 08:26:08 -07:00
if test "x$XQUARTZ" = xyes; then
2009-09-06 13:44:18 -06:00
AC_DEFINE(XQUARTZ,1,[Have Quartz])
AC_DEFINE(ROOTLESS,1,[Build Rootless code])
2008-11-02 08:26:08 -07:00
2014-05-02 13:27:46 -06:00
XQUARTZ_LIBS="$FB_LIB $FIXES_LIB $XEXT_LIB $DBE_LIB $RECORD_LIB $RANDR_LIB $RENDER_LIB $DAMAGE_LIB $MIEXT_SYNC_LIB $MIEXT_DAMAGE_LIB $MIEXT_SHADOW_LIB $XI_LIB $XKB_LIB $XKB_STUB_LIB $XPSTUBS_LIB $PRESENT_LIB"
2011-11-05 07:32:40 -06:00
AC_SUBST([XQUARTZ_LIBS])
2008-11-02 08:26:08 -07:00
AC_CHECK_LIB([Xplugin],[xp_init],[:])
2010-07-27 13:02:24 -06:00
CFLAGS="${CFLAGS} -DROOTLESS_WORKAROUND -DROOTLESS_SAFEALPHA -DNO_ALLOCA"
2008-11-02 08:26:08 -07:00
2010-07-27 13:02:24 -06:00
PKG_CHECK_MODULES(XPBPROXY, $APPLEWMPROTO $LIBAPPLEWM xfixes x11)
if test "x$XQUARTZ_SPARKLE" = xyes ; then
AC_DEFINE(XQUARTZ_SPARKLE,1,[Support application updating through sparkle.])
fi
2009-09-06 13:44:18 -06:00
if test "x$STANDALONE_XPBPROXY" = xyes ; then
AC_DEFINE(STANDALONE_XPBPROXY,1,[Build a standalone xpbproxy])
2008-11-02 08:26:08 -07:00
fi
fi
2014-09-27 11:52:59 -06:00
AM_CONDITIONAL(PSEUDORAMIX, [test "x$XQUARTZ" = xyes -o "x$XWIN" = xyes ])
2008-11-02 08:26:08 -07:00
# Support for objc in autotools is minimal and not documented.
2007-11-24 12:04:00 -07:00
OBJC='$(CC)'
OBJCLD='$(CCLD)'
OBJCLINK='$(LINK)'
OBJCFLAGS='$(CFLAGS)'
AC_SUBST([OBJC])
AC_SUBST([OBJCCLD])
AC_SUBST([OBJCLINK])
AC_SUBST([OBJCFLAGS])
# internal, undocumented automake func follows :(
_AM_DEPENDENCIES([OBJC])
2008-11-02 08:26:08 -07:00
AM_CONDITIONAL(XQUARTZ, [test "x$XQUARTZ" = xyes])
2010-07-27 13:02:24 -06:00
AM_CONDITIONAL(XQUARTZ_SPARKLE, [test "x$XQUARTZ_SPARKLE" != "xno"])
2009-09-06 13:44:18 -06:00
AM_CONDITIONAL(STANDALONE_XPBPROXY, [test "x$STANDALONE_XPBPROXY" = xyes])
2008-11-02 08:26:08 -07:00
dnl DMX DDX
2010-07-27 13:02:24 -06:00
PKG_CHECK_MODULES(
[DMXMODULES],
2014-05-02 13:27:46 -06:00
[xmuu $LIBXEXT x11 >= 1.6 xrender xfixes $LIBXI $DMXPROTO xau $XDMCP_MODULES],
2010-07-27 13:02:24 -06:00
[PKG_CHECK_MODULES(
[XDMXCONFIG_DEP],
[xaw7 xmu xt xpm x11],
[have_dmx=yes],
[have_dmx=no])],
[have_dmx=no])
2009-09-06 13:44:18 -06:00
AC_MSG_CHECKING([whether to build Xdmx DDX])
2008-11-02 08:26:08 -07:00
if test "x$DMX" = xauto; then
DMX="$have_dmx"
case $host_os in
cygwin*) DMX="no" ;;
2013-06-07 11:28:45 -06:00
mingw*) DMX="no" ;;
2008-11-02 08:26:08 -07:00
darwin*) DMX="no" ;;
esac
fi
AC_MSG_RESULT([$DMX])
AM_CONDITIONAL(DMX, [test "x$DMX" = xyes])
if test "x$DMX" = xyes; then
if test "x$have_dmx" = xno; then
AC_MSG_ERROR([Xdmx build explicitly requested, but required
modules not found.])
fi
2009-09-06 13:44:18 -06:00
DMX_INCLUDES="$XEXT_INC $RENDER_INC $RECORD_INC"
2008-11-02 08:26:08 -07:00
XDMX_CFLAGS="$DMXMODULES_CFLAGS"
2016-05-29 06:02:34 -06:00
XDMX_LIBS="$FB_LIB $MI_LIB $XEXT_LIB $RENDER_LIB $RECORD_LIB $XI_LIB $XKB_LIB $XKB_STUB_LIB $DRI3_LIB $PRESENT_LIB $MIEXT_SYNC_LIB $MIEXT_SHADOW_LIB $MIEXT_DAMAGE_LIB $COMPOSITE_LIB $DAMAGE_LIB $MAIN_LIB $DIX_LIB $RANDR_LIB $CONFIG_LIB $OS_LIB $FIXES_LIB"
2008-11-02 08:26:08 -07:00
XDMX_SYS_LIBS="$DMXMODULES_LIBS"
AC_SUBST([XDMX_CFLAGS])
AC_SUBST([XDMX_LIBS])
AC_SUBST([XDMX_SYS_LIBS])
dnl USB sources in DMX require <linux/input.h>
AC_CHECK_HEADER([linux/input.h], DMX_BUILD_USB="yes",
DMX_BUILD_USB="no")
dnl Linux sources in DMX require <linux/keyboard.h>
AC_CHECK_HEADER([linux/keyboard.h], DMX_BUILD_LNX="yes",
DMX_BUILD_LNX="no")
AC_SUBST(XDMXCONFIG_DEP_CFLAGS)
AC_SUBST(XDMXCONFIG_DEP_LIBS)
2010-07-27 13:02:24 -06:00
PKG_CHECK_MODULES([DMXEXAMPLES_DEP], [$LIBDMX $LIBXEXT x11])
2008-11-02 08:26:08 -07:00
AC_SUBST(DMXEXAMPLES_DEP_LIBS)
2010-07-27 13:02:24 -06:00
PKG_CHECK_MODULES([DMXXMUEXAMPLES_DEP], [$LIBDMX xmu $LIBXEXT x11])
2008-11-02 08:26:08 -07:00
AC_SUBST(DMXXMUEXAMPLES_DEP_LIBS)
2010-07-27 13:02:24 -06:00
PKG_CHECK_MODULES([DMXXIEXAMPLES_DEP], [$LIBDMX $LIBXI $LIBXEXT x11])
2008-11-02 08:26:08 -07:00
AC_SUBST(DMXXIEXAMPLES_DEP_LIBS)
2010-07-27 13:02:24 -06:00
PKG_CHECK_MODULES([XTSTEXAMPLES_DEP], [$LIBXTST $LIBXEXT x11])
2008-11-02 08:26:08 -07:00
AC_SUBST(XTSTEXAMPLES_DEP_LIBS)
2010-07-27 13:02:24 -06:00
PKG_CHECK_MODULES([XRESEXAMPLES_DEP], [xres $LIBXEXT x11])
2008-11-02 08:26:08 -07:00
AC_SUBST(XRESEXAMPLES_DEP_LIBS)
2010-07-27 13:02:24 -06:00
PKG_CHECK_MODULES([X11EXAMPLES_DEP], [$LIBXEXT x11])
2008-11-02 08:26:08 -07:00
AC_SUBST(X11EXAMPLES_DEP_LIBS)
2010-07-27 13:02:24 -06:00
2008-11-02 08:26:08 -07:00
fi
AM_CONDITIONAL([DMX_BUILD_LNX], [test "x$DMX_BUILD_LNX" = xyes])
AM_CONDITIONAL([DMX_BUILD_USB], [test "x$DMX_BUILD_USB" = xyes])
2006-11-26 11:13:41 -07:00
dnl kdrive DDX
2007-11-24 12:04:00 -07:00
XEPHYR_LIBS=
2006-11-26 11:13:41 -07:00
XEPHYR_INCS=
AM_CONDITIONAL(KDRIVE, [test x$KDRIVE = xyes])
2010-07-27 13:02:24 -06:00
2006-11-26 11:13:41 -07:00
if test "$KDRIVE" = yes; then
AC_DEFINE(KDRIVESERVER,1,[Build Kdrive X server])
AC_DEFINE(KDRIVEDDXACTIONS,,[Build kdrive ddx])
AC_CHECK_HEADERS([linux/fb.h])
2007-11-24 12:04:00 -07:00
if test "$ac_cv_header_linux_fb_h" = yes && test "x$XFBDEV" = xauto; then
XFBDEV=yes
fi
if test "x$XFBDEV" = xyes; then
KDRIVEFBDEVLIB=yes
2006-11-26 11:13:41 -07:00
AC_DEFINE(KDRIVEFBDEV, 1, [Build fbdev-based kdrive server])
fi
2010-07-27 13:02:24 -06:00
PKG_CHECK_MODULES([TSLIB], [tslib-0.0], [HAVE_TSLIB="yes"], [HAVE_TSLIB="no"])
if test "x$HAVE_TSLIB" = xno; then
2010-12-21 13:10:44 -07:00
AC_CHECK_LIB(ts, ts_open, [
HAVE_TSLIB="yes"
TSLIB_LIBS="-lts"
])
2010-07-27 13:02:24 -06:00
fi
if test "xTSLIB" = xauto; then
TSLIB="$HAVE_TSLIB"
2007-11-24 12:04:00 -07:00
fi
if test "x$TSLIB" = xyes; then
if ! test "x$HAVE_TSLIB" = xyes; then
2010-07-27 13:02:24 -06:00
AC_MSG_ERROR([tslib must be installed to build the tslib driver. See http://tslib.berlios.de/])
else
AC_DEFINE(TSLIB, 1, [Have tslib support])
2007-11-24 12:04:00 -07:00
fi
fi
2016-05-29 06:02:34 -06:00
case $host_os in
*linux*)
KDRIVE_OS_LIB='$(top_builddir)/hw/kdrive/linux/liblinux.la'
KDRIVELINUX=yes
if test "x$KDRIVE_EVDEV" = xauto; then
KDRIVE_EVDEV=yes
fi
if test "x$KDRIVE_KBD" = xauto; then
KDRIVE_KBD=yes
fi
if test "x$KDRIVE_MOUSE" = xauto; then
KDRIVE_MOUSE=yes
fi
;;
*)
if test "x$KDRIVE_EVDEV" = xauto; then
KDRIVE_EVDEV=no
fi
if test "x$KDRIVE_KBD" = xauto; then
KDRIVE_KBD=no
fi
if test "x$KDRIVE_MOUSE" = xauto; then
KDRIVE_MOUSE=no
fi
;;
esac
2010-07-27 13:02:24 -06:00
if test "x$KDRIVE_KBD" = xyes; then
AC_DEFINE(KDRIVE_KBD, 1, [Enable KDrive kbd driver])
2007-11-24 12:04:00 -07:00
fi
2010-07-27 13:02:24 -06:00
if test "x$KDRIVE_EVDEV" = xyes; then
AC_DEFINE(KDRIVE_EVDEV, 1, [Enable KDrive evdev driver])
fi
if test "x$KDRIVE_MOUSE" = xyes; then
AC_DEFINE(KDRIVE_MOUSE, 1, [Enable KDrive mouse driver])
2007-11-24 12:04:00 -07:00
fi
2015-09-16 13:10:19 -06:00
XEPHYR_REQUIRED_LIBS="xau xdmcp xcb xcb-shape xcb-render xcb-renderutil xcb-aux xcb-image xcb-icccm xcb-shm xcb-keysyms xcb-randr"
2008-11-02 08:26:08 -07:00
if test "x$XV" = xyes; then
2014-05-02 13:27:46 -06:00
XEPHYR_REQUIRED_LIBS="$XEPHYR_REQUIRED_LIBS xcb-xv"
2008-11-02 08:26:08 -07:00
fi
2009-09-06 13:44:18 -06:00
if test "x$DRI" = xyes && test "x$GLX" = xyes; then
2014-05-02 13:27:46 -06:00
XEPHYR_REQUIRED_LIBS="$XEPHYR_REQUIRED_LIBS libdrm xcb-glx xcb-xf86dri > 1.6"
2009-09-06 13:44:18 -06:00
fi
2014-09-27 11:52:59 -06:00
if test "x$GLAMOR" = xyes; then
XEPHYR_REQUIRED_LIBS="$XEPHYR_REQUIRED_LIBS x11-xcb"
fi
2009-09-06 13:44:18 -06:00
2007-11-24 12:04:00 -07:00
if test "x$XEPHYR" = xauto; then
2012-01-31 00:52:35 -07:00
PKG_CHECK_MODULES(XEPHYR, $XEPHYR_REQUIRED_LIBS, [XEPHYR="yes"], [XEPHYR="no"])
elif test "x$XEPHYR" = xyes ; then
PKG_CHECK_MODULES(XEPHYR, $XEPHYR_REQUIRED_LIBS)
2010-12-05 08:36:02 -07:00
fi
2007-11-24 12:04:00 -07:00
# Xephyr needs nanosleep() which is in librt on Solaris
AC_CHECK_FUNC([nanosleep], [],
AC_CHECK_LIB([rt], [nanosleep], XEPHYR_LIBS="$XEPHYR_LIBS -lrt"))
2006-11-26 11:13:41 -07:00
# damage shadow extension glx (NOTYET) fb mi
KDRIVE_INC='-I$(top_srcdir)/hw/kdrive/src'
2011-11-05 07:32:40 -06:00
KDRIVE_PURE_INCS="$KDRIVE_INC $MIEXT_SYNC_INC $MIEXT_DAMAGE_INC $MIEXT_SHADOW_INC $XEXT_INC $FB_INC $MI_INC"
2006-11-26 11:13:41 -07:00
KDRIVE_OS_INC='-I$(top_srcdir)/hw/kdrive/linux'
KDRIVE_INCS="$KDRIVE_PURE_INCS $KDRIVE_OS_INC"
KDRIVE_CFLAGS="$XSERVER_CFLAGS -DHAVE_KDRIVE_CONFIG_H $TSLIB_CFLAGS"
2014-05-02 13:27:46 -06:00
KDRIVE_PURE_LIBS="$FB_LIB $MI_LIB $FIXES_LIB $XEXT_LIB $DBE_LIB $RECORD_LIB $GLX_LIBS $RANDR_LIB $RENDER_LIB $DAMAGE_LIB $DRI3_LIB $PRESENT_LIB $MIEXT_SYNC_LIB $MIEXT_DAMAGE_LIB $MIEXT_SHADOW_LIB $XI_LIB $XKB_LIB $XKB_STUB_LIB $COMPOSITE_LIB $OS_LIB"
2010-07-27 13:02:24 -06:00
KDRIVE_LIB='$(top_builddir)/hw/kdrive/src/libkdrive.la'
2015-09-16 13:10:19 -06:00
KDRIVE_MAIN_LIB="$MAIN_LIB"
KDRIVE_LOCAL_LIBS="$DIX_LIB $KDRIVE_LIB"
2008-11-02 08:26:08 -07:00
KDRIVE_LOCAL_LIBS="$KDRIVE_LOCAL_LIBS $FB_LIB $MI_LIB $KDRIVE_PURE_LIBS"
2010-12-21 13:10:44 -07:00
KDRIVE_LOCAL_LIBS="$KDRIVE_LOCAL_LIBS $KDRIVE_OS_LIB"
KDRIVE_LIBS="$KDRIVE_LOCAL_LIBS $XSERVER_SYS_LIBS $GLX_SYS_LIBS $DLOPEN_LIBS $TSLIB_LIBS"
2007-11-24 12:04:00 -07:00
AC_SUBST([XEPHYR_LIBS])
AC_SUBST([XEPHYR_INCS])
fi
AC_SUBST([KDRIVE_INCS])
AC_SUBST([KDRIVE_PURE_INCS])
AC_SUBST([KDRIVE_CFLAGS])
AC_SUBST([KDRIVE_PURE_LIBS])
2015-09-16 13:10:19 -06:00
AC_SUBST([KDRIVE_MAIN_LIB])
2007-11-24 12:04:00 -07:00
AC_SUBST([KDRIVE_LOCAL_LIBS])
AC_SUBST([KDRIVE_LIBS])
2007-03-03 04:31:18 -07:00
AM_CONDITIONAL(KDRIVELINUX, [test "x$KDRIVELINUX" = xyes])
2010-07-27 13:02:24 -06:00
AM_CONDITIONAL(KDRIVE_EVDEV, [test "x$KDRIVE_EVDEV" = xyes])
AM_CONDITIONAL(KDRIVE_KBD, [test "x$KDRIVE_KBD" = xyes])
AM_CONDITIONAL(KDRIVE_MOUSE, [test "x$KDRIVE_MOUSE" = xyes])
2006-11-26 11:13:41 -07:00
AM_CONDITIONAL(TSLIB, [test "x$HAVE_TSLIB" = xyes])
2007-11-24 12:04:00 -07:00
AM_CONDITIONAL(KDRIVEFBDEV, [test "x$XFBDEV" = xyes])
AM_CONDITIONAL(XEPHYR, [test "x$KDRIVE" = xyes && test "x$XEPHYR" = xyes])
AM_CONDITIONAL(BUILD_KDRIVEFBDEVLIB, [test "x$KDRIVE" = xyes && test "x$KDRIVEFBDEVLIB" = xyes])
AM_CONDITIONAL(XFAKESERVER, [test "x$KDRIVE" = xyes && test "x$XFAKE" = xyes])
2006-11-26 11:13:41 -07:00
2014-09-27 11:52:59 -06:00
dnl Xwayland DDX
2016-05-29 06:02:34 -06:00
XWAYLANDMODULES="wayland-client >= 1.3.0 libdrm epoxy"
if test "x$XF86VIDMODE" = xyes; then
XWAYLANDMODULES="$XWAYLANDMODULES $VIDMODEPROTO"
fi
PKG_CHECK_MODULES(XWAYLANDMODULES, [$XWAYLANDMODULES], [have_xwayland=yes], [have_xwayland=no])
2014-09-27 11:52:59 -06:00
AC_MSG_CHECKING([whether to build Xwayland DDX])
if test "x$XWAYLAND" = xauto; then
XWAYLAND="$have_xwayland"
fi
AC_MSG_RESULT([$XWAYLAND])
AM_CONDITIONAL(XWAYLAND, [test "x$XWAYLAND" = xyes])
if test "x$XWAYLAND" = xyes; then
if test "x$have_xwayland" = xno; then
AC_MSG_ERROR([Xwayland build explicitly requested, but required modules not found.])
fi
XWAYLAND_LIBS="$FB_LIB $FIXES_LIB $MI_LIB $XEXT_LIB $DBE_LIB $RECORD_LIB $GLX_LIBS $RANDR_LIB $RENDER_LIB $DAMAGE_LIB $DRI3_LIB $PRESENT_LIB $MIEXT_SYNC_LIB $MIEXT_DAMAGE_LIB $MIEXT_SHADOW_LIB $XI_LIB $XKB_LIB $XKB_STUB_LIB $COMPOSITE_LIB $MAIN_LIB $DIX_LIB $OS_LIB"
XWAYLAND_SYS_LIBS="$XWAYLANDMODULES_LIBS $GLX_SYS_LIBS"
AC_SUBST([XWAYLAND_LIBS])
AC_SUBST([XWAYLAND_SYS_LIBS])
WAYLAND_PREFIX=`$PKG_CONFIG --variable=prefix wayland-client`
AC_PATH_PROG([WAYLAND_SCANNER], [wayland-scanner],,
[${WAYLAND_PREFIX}/bin$PATH_SEPARATOR$PATH])
fi
2006-11-26 11:13:41 -07:00
dnl and the rest of these are generic, so they're in config.h
2009-09-06 13:44:18 -06:00
dnl
dnl though, thanks to the passing of some significant amount of time, the
dnl above is probably a complete fallacy, and you should not rely on it.
dnl but this is still actually better than imake, honest. -daniels
2006-11-26 11:13:41 -07:00
2014-09-27 11:52:59 -06:00
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
2007-03-03 04:31:18 -07:00
#include <features.h>
#ifndef __GLIBC__
#error not glibc
#endif
2014-09-27 11:52:59 -06:00
]], [])], [AC_DEFINE(_GNU_SOURCE, 1,
2007-03-03 04:31:18 -07:00
[ Enable GNU and other extensions to the C environment for glibc])])
2006-11-26 11:13:41 -07:00
AC_DEFINE_DIR(PROJECTROOT, prefix, [Overall prefix])
2014-09-27 11:52:59 -06:00
AC_DEFINE_DIR(SYSCONFDIR, sysconfdir, [sysconfdir])
2006-11-26 11:13:41 -07:00
2010-12-05 08:36:02 -07:00
AC_SUBST([RELEASE_DATE])
2010-07-27 13:02:24 -06:00
BUILD_DATE="`date +'%Y%m%d'`"
2006-11-26 11:13:41 -07:00
AC_SUBST([BUILD_DATE])
2010-07-27 13:02:24 -06:00
BUILD_TIME="`date +'1%H%M%S'`"
2007-11-24 12:04:00 -07:00
AC_SUBST([BUILD_TIME])
DIX_CFLAGS="-DHAVE_DIX_CONFIG_H $XSERVER_CFLAGS"
2006-11-26 11:13:41 -07:00
AC_SUBST([DIX_CFLAGS])
2008-06-14 18:17:32 -06:00
AC_SUBST([libdir])
AC_SUBST([exec_prefix])
AC_SUBST([prefix])
2006-11-26 11:13:41 -07:00
2011-11-05 07:32:40 -06:00
AC_CONFIG_COMMANDS([sdksyms], [touch hw/xfree86/sdksyms.dep])
2013-08-24 13:44:25 -06:00
if test "x$CONFIG_HAL" = xno && test "x$CONFIG_UDEV" = xno; then
2014-09-27 11:52:59 -06:00
AC_MSG_WARN([
2013-08-24 13:44:25 -06:00
***********************************************
Neither HAL nor udev backend will be enabled.
Input device hotplugging will not be available!
***********************************************])
fi
2014-05-02 13:27:46 -06:00
AC_CONFIG_FILES([
2006-11-26 11:13:41 -07:00
Makefile
2008-11-02 08:26:08 -07:00
glx/Makefile
2006-11-26 11:13:41 -07:00
include/Makefile
composite/Makefile
damageext/Makefile
dbe/Makefile
dix/Makefile
doc/Makefile
2011-11-05 07:32:40 -06:00
doc/dtrace/Makefile
man/Makefile
2006-11-26 11:13:41 -07:00
fb/Makefile
2014-09-27 11:52:59 -06:00
glamor/Makefile
2006-11-26 11:13:41 -07:00
record/Makefile
2007-11-24 12:04:00 -07:00
config/Makefile
2006-11-26 11:13:41 -07:00
mi/Makefile
miext/Makefile
2011-11-05 07:32:40 -06:00
miext/sync/Makefile
2006-11-26 11:13:41 -07:00
miext/damage/Makefile
miext/shadow/Makefile
miext/rootless/Makefile
os/Makefile
2014-05-02 13:27:46 -06:00
pseudoramiX/Makefile
2006-11-26 11:13:41 -07:00
randr/Makefile
render/Makefile
xkb/Makefile
Xext/Makefile
Xi/Makefile
xfixes/Makefile
exa/Makefile
2014-05-02 13:27:46 -06:00
dri3/Makefile
present/Makefile
2006-11-26 11:13:41 -07:00
hw/Makefile
hw/xfree86/Makefile
2014-09-27 11:52:59 -06:00
hw/xfree86/Xorg.sh
2006-11-26 11:13:41 -07:00
hw/xfree86/common/Makefile
hw/xfree86/common/xf86Build.h
hw/xfree86/ddc/Makefile
hw/xfree86/dixmods/Makefile
hw/xfree86/doc/Makefile
hw/xfree86/dri/Makefile
2008-11-02 08:26:08 -07:00
hw/xfree86/dri2/Makefile
2015-09-16 13:10:19 -06:00
hw/xfree86/dri2/pci_ids/Makefile
hw/xfree86/drivers/Makefile
hw/xfree86/drivers/modesetting/Makefile
2006-11-26 11:13:41 -07:00
hw/xfree86/exa/Makefile
2011-11-05 07:32:40 -06:00
hw/xfree86/exa/man/Makefile
2006-11-26 11:13:41 -07:00
hw/xfree86/fbdevhw/Makefile
2011-11-05 07:32:40 -06:00
hw/xfree86/fbdevhw/man/Makefile
2014-09-27 11:52:59 -06:00
hw/xfree86/glamor_egl/Makefile
2006-11-26 11:13:41 -07:00
hw/xfree86/i2c/Makefile
hw/xfree86/int10/Makefile
hw/xfree86/loader/Makefile
2011-11-05 07:32:40 -06:00
hw/xfree86/man/Makefile
2007-11-24 12:04:00 -07:00
hw/xfree86/modes/Makefile
2006-11-26 11:13:41 -07:00
hw/xfree86/os-support/Makefile
hw/xfree86/os-support/bsd/Makefile
hw/xfree86/os-support/bus/Makefile
hw/xfree86/os-support/hurd/Makefile
hw/xfree86/os-support/misc/Makefile
hw/xfree86/os-support/linux/Makefile
hw/xfree86/os-support/solaris/Makefile
2012-06-10 07:21:05 -06:00
hw/xfree86/os-support/stub/Makefile
2006-11-26 11:13:41 -07:00
hw/xfree86/parser/Makefile
hw/xfree86/ramdac/Makefile
hw/xfree86/shadowfb/Makefile
hw/xfree86/vbe/Makefile
hw/xfree86/vgahw/Makefile
hw/xfree86/x86emu/Makefile
hw/xfree86/utils/Makefile
2011-11-05 07:32:40 -06:00
hw/xfree86/utils/man/Makefile
2006-11-26 11:13:41 -07:00
hw/xfree86/utils/cvt/Makefile
hw/xfree86/utils/gtf/Makefile
hw/dmx/config/Makefile
2011-11-05 07:32:40 -06:00
hw/dmx/config/man/Makefile
2006-11-26 11:13:41 -07:00
hw/dmx/doc/Makefile
2011-11-05 07:32:40 -06:00
hw/dmx/doxygen/doxygen.conf
hw/dmx/doxygen/Makefile
2006-11-26 11:13:41 -07:00
hw/dmx/examples/Makefile
hw/dmx/input/Makefile
hw/dmx/glxProxy/Makefile
hw/dmx/Makefile
2011-11-05 07:32:40 -06:00
hw/dmx/man/Makefile
2006-11-26 11:13:41 -07:00
hw/vfb/Makefile
2011-11-05 07:32:40 -06:00
hw/vfb/man/Makefile
2006-11-26 11:13:41 -07:00
hw/xnest/Makefile
2011-11-05 07:32:40 -06:00
hw/xnest/man/Makefile
2006-11-26 11:13:41 -07:00
hw/xwin/Makefile
2010-12-05 08:36:02 -07:00
hw/xwin/glx/Makefile
2011-11-05 07:32:40 -06:00
hw/xwin/man/Makefile
2015-09-16 13:10:19 -06:00
hw/xwin/winclipboard/Makefile
2008-11-02 08:26:08 -07:00
hw/xquartz/Makefile
hw/xquartz/GL/Makefile
hw/xquartz/bundle/Makefile
2011-11-05 07:32:40 -06:00
hw/xquartz/man/Makefile
2009-09-06 13:44:18 -06:00
hw/xquartz/mach-startup/Makefile
hw/xquartz/pbproxy/Makefile
2008-11-02 08:26:08 -07:00
hw/xquartz/xpr/Makefile
2006-11-26 11:13:41 -07:00
hw/kdrive/Makefile
hw/kdrive/ephyr/Makefile
2011-11-05 07:32:40 -06:00
hw/kdrive/ephyr/man/Makefile
2006-11-26 11:13:41 -07:00
hw/kdrive/fake/Makefile
hw/kdrive/fbdev/Makefile
hw/kdrive/linux/Makefile
hw/kdrive/src/Makefile
2014-09-27 11:52:59 -06:00
hw/xwayland/Makefile
2010-07-27 13:02:24 -06:00
test/Makefile
2014-12-21 04:41:44 -07:00
test/xi1/Makefile
2010-07-27 13:02:24 -06:00
test/xi2/Makefile
2011-11-05 07:32:40 -06:00
xserver.ent
2006-11-26 11:13:41 -07:00
xorg-server.pc
])
2014-05-02 13:27:46 -06:00
AC_OUTPUT