1dnl Process this file with autoconf to produce a configure script.
2
3AC_INIT(configure.in)
4AM_INIT_AUTOMAKE(selectwm, 0.4.1)
5AM_CONFIG_HEADER(config.h)
6AM_MAINTAINER_MODE
7
8
9AC_PREREQ(2.50)
10
11AC_ISC_POSIX
12AC_PROG_CC
13AM_PROG_CC_STDC
14AC_HEADER_STDC
15
16AM_PATH_GLIB_2_0(2.0.0,,AC_MSG_ERROR([*** GLIB >= 2.0.0 not installed - please install first ***]))
17AM_PATH_GTK_2_0(2.0.0,,AC_MSG_ERROR([*** GTK+ >= 2.0.0 not installed - please install first ***]))
18
19ALL_LINGUAS="fr"
20AM_GNU_GETTEXT
21
22
23AC_OUTPUT([ m4/Makefile
24Makefile
25src/Makefile
26doc/Makefile
27po/Makefile.in
28])
29
30
31echo
32echo ----------------------------------
33echo selectwm
34echo
35echo GLIB...................... : `pkg-config glib-2.0 --modversion`
36echo GTK ...................... : `pkg-config gtk+-2.0 --modversion`
37echo Native Language Support .. : $USE_NLS
38echo
39echo Type \"make\" and \"make install\" to compile and install selectwm
40echo
41