2009-01-13 19:25:35 -07:00
|
|
|
dnl Copyright © 2008 Dan Nicholson
|
|
|
|
dnl
|
|
|
|
dnl Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
dnl documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
dnl the above copyright notice appear in all copies and that both that
|
|
|
|
dnl copyright notice and this permission notice appear in supporting
|
|
|
|
dnl documentation, and that the name of Keith Packard not be used in
|
|
|
|
dnl advertising or publicity pertaining to distribution of the software without
|
|
|
|
dnl specific, written prior permission. Keith Packard makes no
|
|
|
|
dnl representations about the suitability of this software for any purpose. It
|
|
|
|
dnl is provided "as is" without express or implied warranty.
|
|
|
|
dnl
|
|
|
|
dnl DAN NICHOLSON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
|
|
dnl INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
|
|
|
dnl EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
|
|
|
dnl CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
|
|
dnl DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
dnl TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
dnl PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
dnl
|
|
|
|
dnl Process this file with autoconf to create configure.
|
|
|
|
|
|
|
|
AC_PREREQ([2.57])
|
|
|
|
AC_INIT([libxkbcommon], [0.1.0],
|
|
|
|
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg])
|
|
|
|
AM_INIT_AUTOMAKE([dist-bzip2 foreign])
|
|
|
|
AM_MAINTAINER_MODE
|
2009-01-20 08:33:14 -07:00
|
|
|
AC_CONFIG_HEADERS([src/config.h])
|
2009-01-13 19:25:35 -07:00
|
|
|
|
|
|
|
AC_PROG_LIBTOOL
|
2009-01-14 08:35:10 -07:00
|
|
|
AC_PROG_CC
|
2009-03-27 07:55:32 -06:00
|
|
|
AC_PROG_YACC
|
2009-01-13 19:25:35 -07:00
|
|
|
|
2009-01-14 08:35:10 -07:00
|
|
|
m4_ifndef([PKG_PROG_PKG_CONFIG],
|
|
|
|
[m4_fatal([Could not locate the pkg-config autoconf macros.
|
|
|
|
These are usually located in /usr/share/aclocal/pkg.m4. If your
|
|
|
|
macros are in a different location, try setting the environment
|
|
|
|
variable ACLOCAL="aclocal -I/other/macro/dir" before running
|
|
|
|
autoreconf/autogen.sh.])])
|
|
|
|
PKG_PROG_PKG_CONFIG
|
|
|
|
|
2009-03-27 07:55:32 -06:00
|
|
|
# Require xorg-macros version 1.2.0 or newer for XORG_CHANGELOG macro
|
|
|
|
m4_ifndef([XORG_MACROS_VERSION],
|
|
|
|
[m4_fatal([must install xorg-macros before running autoconf/autogen.sh])])
|
|
|
|
XORG_MACROS_VERSION([1.2.0])
|
|
|
|
|
2009-01-14 08:35:10 -07:00
|
|
|
dnl Build native compiler needed for makekeys
|
|
|
|
AC_ARG_VAR([CC_FOR_BUILD], [Build native C compiler program])
|
2009-01-20 19:52:04 -07:00
|
|
|
if test "x$CC_FOR_BUILD" = x; then
|
2009-01-14 08:35:10 -07:00
|
|
|
if test "$cross_compiling" != no; then
|
|
|
|
AC_PATH_PROGS([CC_FOR_BUILD], [gcc cc], [cc])
|
|
|
|
else
|
|
|
|
CC_FOR_BUILD="$CC"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2009-04-05 21:27:35 -06:00
|
|
|
AC_CHECK_FUNCS([strcasecmp])
|
2009-03-27 07:55:32 -06:00
|
|
|
XORG_CHECK_MALLOC_ZERO
|
|
|
|
XORG_CWARNFLAGS
|
|
|
|
|
2009-03-19 18:16:13 -06:00
|
|
|
PKG_CHECK_MODULES([X11], [xproto kbproto >= 1.0.99.1])
|
2009-01-14 08:35:10 -07:00
|
|
|
|
2009-01-14 19:00:10 -07:00
|
|
|
dnl Ensure we have keysym headers
|
|
|
|
AC_MSG_CHECKING([for X11 includedir])
|
|
|
|
x11includedir="`$PKG_CONFIG --variable=includedir xproto`/X11"
|
|
|
|
AC_MSG_RESULT([$x11includedir])
|
|
|
|
|
|
|
|
AC_MSG_CHECKING([for keysymdef.h])
|
|
|
|
KEYSYMDEF_H="$x11includedir/keysymdef.h"
|
|
|
|
test -f "$KEYSYMDEF_H" || AC_MSG_ERROR([can't locate keysymdef.h in $x11includedir])
|
|
|
|
AC_MSG_RESULT([$KEYSYMDEF_H])
|
|
|
|
AC_SUBST([KEYSYMDEF_H])
|
|
|
|
|
|
|
|
AC_MSG_CHECKING([for XF86keysym.h])
|
|
|
|
XF86KEYSYM_H="$x11includedir/XF86keysym.h"
|
|
|
|
test -f "$XF86KEYSYM_H" || AC_MSG_ERROR([can't locate XF86keysym.h in $x11includedir])
|
|
|
|
AC_MSG_RESULT([$XF86KEYSYM_H])
|
|
|
|
AC_SUBST([XF86KEYSYM_H])
|
|
|
|
|
2009-03-26 07:50:33 -06:00
|
|
|
AC_SUBST([KS_HEADERS], ['$(KEYSYMDEF_H) $(XF86KEYSYM_H)'])
|
|
|
|
|
2009-03-27 07:55:32 -06:00
|
|
|
AC_ARG_WITH([xkb_config_root],
|
|
|
|
[AC_HELP_STRING([--with-xkb-config-root=<paths>],
|
|
|
|
[Set default XKB config root (default: ${datadir}/X11/xkb)])],
|
|
|
|
[XKBCONFIGROOT="$withval"],
|
|
|
|
[XKBCONFIGROOT='${datadir}/X11/xkb'])
|
|
|
|
AC_SUBST([XKBCONFIGROOT])
|
|
|
|
|
2009-01-13 19:25:35 -07:00
|
|
|
XORG_RELEASE_VERSION
|
|
|
|
XORG_CHANGELOG
|
|
|
|
|
|
|
|
AC_OUTPUT([
|
|
|
|
Makefile
|
2009-04-01 07:22:06 -06:00
|
|
|
xkbcommon.pc
|
2009-01-20 08:46:12 -07:00
|
|
|
include/Makefile
|
2009-01-14 08:35:10 -07:00
|
|
|
src/Makefile
|
2009-01-22 08:16:12 -07:00
|
|
|
src/makekeys/Makefile
|
2009-03-27 07:55:32 -06:00
|
|
|
src/xkbcomp/Makefile
|
2009-01-20 19:57:22 -07:00
|
|
|
test/Makefile
|
2009-01-13 19:25:35 -07:00
|
|
|
])
|