wmclockmon: replace deprecated `GtkCombo`
[dockapps.git] / wmclockmon / configure.ac
blob3e3c3a5dc4e7dd6b5e8b6f368b8d8e46ce40287e
1 dnl Process this file with autoconf to produce a configure script.
2 AC_PREREQ([2.52])
4 AC_INIT([wmclockmon], [0.8.1], [tnemeth@free.fr])
5 AC_CONFIG_AUX_DIR([build-aux])
6 AM_INIT_AUTOMAKE([no-dist-gzip dist-xz])
7 AC_CONFIG_SRCDIR([src/main.c])
8 AC_CONFIG_HEADERS([config.h])
9 AC_CONFIG_MACRO_DIRS([m4])
11 AC_CANONICAL_HOST
13 dnl Checks for programs.
14 AC_PROG_AWK
15 AC_PROG_CC
16 AC_PROG_INSTALL
17 AC_PROG_LN_S
19 AX_C___ATTRIBUTE__
20 AM_CONDITIONAL([HAVE___ATTRIBUTE__], [test "$ax_cv___attribute__" = "yes"])
22 PKG_CHECK_MODULES([gtk], [gtk+-2.0])
24 dnl ===========================================
25 dnl             Stuff that uses X
26 dnl ===========================================
28 PKG_CHECK_MODULES([x11],  [x11])
29 PKG_CHECK_MODULES([xext], [xext])
30 PKG_CHECK_MODULES([xpm],  [xpm])
32 dnl ===============================================
33 dnl             End of stuff that uses X
34 dnl ===============================================
36 dnl =========
37 dnl Debugging
38 dnl =========
40 AC_ARG_ENABLE([debug],
41               [AS_HELP_STRING([--enable-debug], [turn on debugging [default=no]])])
42 AS_IF([test "$enable_debug" = yes], [
43   debug_CFLAGS="-Wall -g -ansi -pedantic"
44   AC_DEFINE([DEBUG], [1], [use debug code])
46 AC_SUBST([debug_CFLAGS])
49 dnl ============
50 dnl Check for OS
51 dnl ============
53 AS_CASE([${host_os}],
54         [freebsd*], [
55           LIBS="$LIBS -lkvm"
56           SETGID_FLAGS="-g kmem -m 2755 -o root"
57         ],
58         [linux*|netbsd*|openbsd*|solaris*], [],
59         [AC_MSG_ERROR([Sorry, ${host_os} is not supported yet])])
60 AC_SUBST([SETGID_FLAGS])
62 dnl Checks for header files.
63 AC_CHECK_HEADERS([fcntl.h memory.h stddef.h stdlib.h string.h strings.h sys/param.h sys/time.h unistd.h])
65 dnl Checks for typedefs, structures, and compiler characteristics.
66 AC_C_CONST
67 AC_TYPE_SIZE_T
69 dnl Checks for library functions.
70 AC_FUNC_MALLOC
71 AC_CHECK_FUNCS([select strtoul uname])
73 AC_CONFIG_FILES([Makefile
74                  doc/Makefile
75                  src/Makefile
76                  styles/Makefile
77                  wmclockmon-config/Makefile
78                  wmclockmon-cal/Makefile])
79 AC_OUTPUT