Make AddMouseRegion's index unsigned
[dockapps.git] / wmcore / configure.ac
blob088c9d76e111988fc72a91605ba9d8bf9aba43cb
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
4 AC_PREREQ([2.69])
5 AC_INIT([wmcore], [0.0.4], [wmaker-dev@googlegroups.com])
6 AC_CONFIG_SRCDIR([wmcore.c])
7 AC_CONFIG_HEADERS([config.h])
8 AM_INIT_AUTOMAKE([foreign no-dist-gzip dist-xz])
10 # Checks for programs.
11 : ${CFLAGS:=""}
12 AC_PROG_CC
13 AC_PROG_INSTALL
15 # Checks for pkg-config modules.
16 PKG_CHECK_MODULES([pkg_config], [x11 xext xpm dockapp])
18 # Checks for libraries.
20 # Checks for header files.
21 AC_CHECK_HEADERS([fcntl.h stdlib.h string.h sys/param.h unistd.h])
23 # Checks for typedefs, structures, and compiler characteristics.
25 # Checks for library functions.
26 AC_CHECK_FUNCS([strstr])
28 AC_CONFIG_FILES([Makefile wmcore.1])
29 AC_OUTPUT