wmcore: switch to autotools.
[dockapps.git] / wmcore / configure.ac
blobacd14140a8df040b56ec98f258e370e6411c41e5
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
4 AC_PREREQ([2.69])
5 AC_INIT([wmcore], [0.0.3], [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])
29 AC_OUTPUT