2011-09-10 03:36:19 -06:00
|
|
|
#
|
|
|
|
# Copyright © 2003 Keith Packard, Noah Levitt
|
|
|
|
#
|
|
|
|
# Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
# documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
# the above copyright notice appear in all copies and that both that
|
|
|
|
# copyright notice and this permission notice appear in supporting
|
|
|
|
# documentation, and that the name of Keith Packard not be used in
|
|
|
|
# advertising or publicity pertaining to distribution of the software without
|
|
|
|
# specific, written prior permission. Keith Packard makes no
|
|
|
|
# representations about the suitability of this software for any purpose. It
|
|
|
|
# is provided "as is" without express or implied warranty.
|
|
|
|
#
|
|
|
|
# KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
|
|
# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
|
|
|
# EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
|
|
|
# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
|
|
# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
# PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
#
|
|
|
|
|
|
|
|
# Initialize Autoconf
|
2010-10-31 10:05:19 -06:00
|
|
|
AC_PREREQ([2.60])
|
2011-09-10 03:36:19 -06:00
|
|
|
AC_INIT([libXt], [1.1.1],
|
2010-10-31 10:05:19 -06:00
|
|
|
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [libXt])
|
2011-09-10 03:36:19 -06:00
|
|
|
AC_CONFIG_SRCDIR([Makefile.am])
|
|
|
|
AC_CONFIG_HEADERS([config.h])
|
2010-10-31 10:05:19 -06:00
|
|
|
AC_CONFIG_MACRO_DIR([m4])
|
2011-09-10 03:36:19 -06:00
|
|
|
|
|
|
|
# Initialize Automake
|
2010-05-05 14:18:45 -06:00
|
|
|
AM_INIT_AUTOMAKE([foreign dist-bzip2])
|
2006-11-25 11:01:46 -07:00
|
|
|
AM_MAINTAINER_MODE
|
|
|
|
|
2011-09-10 03:36:19 -06:00
|
|
|
# Initialize libtool
|
|
|
|
AC_PROG_LIBTOOL
|
|
|
|
|
2010-10-31 10:05:19 -06:00
|
|
|
# Require X.Org macros 1.8 or later for MAN_SUBSTS set by XORG_MANPAGE_SECTIONS
|
2010-05-05 14:18:45 -06:00
|
|
|
m4_ifndef([XORG_MACROS_VERSION],
|
2010-10-31 10:05:19 -06:00
|
|
|
[m4_fatal([must install xorg-macros 1.8 or later before running autoconf/autogen])])
|
|
|
|
XORG_MACROS_VERSION(1.8)
|
2010-05-05 14:18:45 -06:00
|
|
|
XORG_DEFAULT_OPTIONS
|
2011-09-10 03:36:19 -06:00
|
|
|
XORG_CHECK_MALLOC_ZERO
|
2006-11-25 11:01:46 -07:00
|
|
|
|
2011-09-10 03:36:19 -06:00
|
|
|
# Checks for header files.
|
|
|
|
AC_CHECK_HEADER([alloca.h], AC_DEFINE(INCLUDE_ALLOCA_H, 1, [Define to 1 if Xalloca.h should include <alloca.h>]))
|
|
|
|
|
|
|
|
# Obtain compiler/linker options for depedencies
|
|
|
|
PKG_CHECK_MODULES(XT, sm ice x11 xproto kbproto)
|
2009-08-23 09:56:08 -06:00
|
|
|
|
2011-09-10 03:36:19 -06:00
|
|
|
# Set-up variables to use build machine compiler when cross-compiling
|
2009-08-23 09:56:08 -06:00
|
|
|
if test x"$CC_FOR_BUILD" = x; then
|
|
|
|
if test x"$cross_compiling" = xyes; then
|
|
|
|
AC_CHECK_PROGS(CC_FOR_BUILD, gcc cc)
|
|
|
|
else
|
|
|
|
CC_FOR_BUILD="$CC"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
AC_SUBST([CC_FOR_BUILD])
|
2009-10-31 12:47:41 -06:00
|
|
|
CFLAGS_FOR_BUILD=${CFLAGS_FOR_BUILD-${CFLAGS}}
|
|
|
|
AC_SUBST(CFLAGS_FOR_BUILD)
|
|
|
|
LDFLAGS_FOR_BUILD=${LDFLAGS_FOR_BUILD-${LDFLAGS}}
|
|
|
|
AC_SUBST(LDFLAGS_FOR_BUILD)
|
2006-11-25 11:01:46 -07:00
|
|
|
|
|
|
|
# Map function checks to old Imake #defines
|
2009-08-23 09:56:08 -06:00
|
|
|
case $host_os in
|
2011-09-10 03:36:19 -06:00
|
|
|
# darwin through Snow Leopard has poll() but can't be used to poll character devices.
|
|
|
|
darwin@<:@789@:>@*|darwin10*) ;;
|
|
|
|
darwin*)
|
|
|
|
_ac_xorg_macosx_version_min=""
|
|
|
|
if echo $CPPFLAGS $CFLAGS | grep -q mmacosx-version-min ; then
|
|
|
|
_ac_xorg_macosx_version_min=`echo $CPPFLAGS $CFLAGS | sed 's/^.*-mmacosx-version-min=\(@<:@^ @:>@*\).*$/\1/'`
|
|
|
|
else
|
|
|
|
_ac_xorg_macosx_version_min=$MACOSX_DEPLOYMENT_TARGET
|
|
|
|
fi
|
|
|
|
case $_ac_xorg_macosx_version_min in
|
|
|
|
10.@<:@0123456@:>@|10.@<:@0123456@:>@.*) ;;
|
|
|
|
*)
|
|
|
|
AC_CHECK_FUNC(poll, [AC_DEFINE(USE_POLL, 1, [poll() function is available])], )
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
unset _ac_xorg_macosx_version_min
|
|
|
|
;;
|
2009-08-23 09:56:08 -06:00
|
|
|
*)
|
2011-09-10 03:36:19 -06:00
|
|
|
AC_CHECK_FUNC(poll, [AC_DEFINE(USE_POLL, 1, [poll() function is available])], )
|
2009-08-23 09:56:08 -06:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
AC_HAVE_LIBRARY(ws2_32)
|
2006-11-25 11:01:46 -07:00
|
|
|
|
|
|
|
# Options
|
2011-09-10 03:36:19 -06:00
|
|
|
AC_ARG_ENABLE(xkb, AS_HELP_STRING([--disable-xkb], [Disable XKB support]),
|
2006-11-25 11:01:46 -07:00
|
|
|
XKB="$enableval", XKB="yes")
|
|
|
|
if test "x$XKB" = "xyes" ; then
|
|
|
|
AC_DEFINE(XKB, 1, [Define to 1 to use XKB for keysym resolution.])
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Replaces XFileSearchPathDefault from Imake configs
|
|
|
|
XFILESEARCHPATHDEFAULT='$(sysconfdir)/X11/%L/%T/%N%C%S:$(sysconfdir)/X11/%l/%T/%N%C%S:$(sysconfdir)/X11/%T/%N%C%S:$(sysconfdir)/X11/%L/%T/%N%S:$(sysconfdir)/X11/%l/%T/%N%S:$(sysconfdir)/X11/%T/%N%S:$(datadir)/X11/%L/%T/%N%C%S:$(datadir)/X11/%l/%T/%N%C%S:$(datadir)/X11/%T/%N%C%S:$(datadir)/X11/%L/%T/%N%S:$(datadir)/X11/%l/%T/%N%S:$(datadir)/X11/%T/%N%S:$(libdir)/X11/%L/%T/%N%C%S:$(libdir)/X11/%l/%T/%N%C%S:$(libdir)/X11/%T/%N%C%S:$(libdir)/X11/%L/%T/%N%S:$(libdir)/X11/%l/%T/%N%S:$(libdir)/X11/%T/%N%S'
|
|
|
|
|
|
|
|
AC_ARG_WITH(xfile-search-path,
|
2011-09-10 03:36:19 -06:00
|
|
|
AS_HELP_STRING([--with-xfile-search-path=<path>],
|
2006-11-25 11:01:46 -07:00
|
|
|
[Set path to search for app-defaults and other files]),
|
|
|
|
[XFILESEARCHPATHDEFAULT="$withval"], [])
|
|
|
|
AC_SUBST([XFILESEARCHPATHDEFAULT])
|
|
|
|
|
|
|
|
AC_ARG_WITH(appdefaultdir,
|
2011-09-10 03:36:19 -06:00
|
|
|
AS_HELP_STRING([--with-appdefaultdir=<path>],
|
2006-11-25 11:01:46 -07:00
|
|
|
[Set app-default directory (default: ${datadir}/X11/app-defaults)]),
|
|
|
|
[appdefaultdir="$withval"],
|
|
|
|
[appdefaultdir=${datadir}/X11/app-defaults])
|
2009-10-31 12:47:41 -06:00
|
|
|
AX_DEFINE_DIR([appdefaultdir], [appdefaultdir], [app default data directory])
|
2006-11-25 11:01:46 -07:00
|
|
|
|
|
|
|
# Replacement for Imake ToolkitStringsABIOptions, controls string tables
|
|
|
|
# generated by util/string.list in StringDefs.h & Shell.h
|
|
|
|
case $host_os in
|
|
|
|
solaris*)
|
2009-08-23 09:56:08 -06:00
|
|
|
# Solaris uses -intelabi even on SPARC
|
|
|
|
STRINGSABIOPTIONS="-intelabi -solarisabinames"
|
2006-11-25 11:01:46 -07:00
|
|
|
;;
|
|
|
|
sco* | svr4*)
|
|
|
|
case $host_cpu in
|
|
|
|
i*86) STRINGSABIOPTIONS="-intelabi" ;;
|
|
|
|
*) STRINGSABIOPTIONS="" ;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
AC_SUBST(STRINGSABIOPTIONS)
|
|
|
|
|
2009-08-23 09:56:08 -06:00
|
|
|
case $host_os in
|
|
|
|
darwin*)
|
|
|
|
OS_CFLAGS="-Wl,-flat_namespace"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
OS_CFLAGS=
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2009-10-31 12:47:41 -06:00
|
|
|
XT_CFLAGS="$XT_CFLAGS $OS_CFLAGS"
|
2009-08-23 09:56:08 -06:00
|
|
|
|
2011-09-10 03:36:19 -06:00
|
|
|
AC_CONFIG_FILES([Makefile
|
|
|
|
src/Makefile
|
|
|
|
util/Makefile
|
|
|
|
include/Makefile
|
|
|
|
man/Makefile
|
|
|
|
specs/Makefile
|
|
|
|
xt.pc])
|
|
|
|
AC_OUTPUT
|