chiark / gitweb /
A slew of whitespace cleanups.
[xtoys] / configure.ac
CommitLineData
f6795c17 1dnl -*-autoconf-*-
90b2c5d4 2dnl
3dnl Configuration script for X tools
4dnl
5dnl (c) 1998 Straylight/Edgeware
6dnl
7
8dnl ----- Licensing notice --------------------------------------------------
9dnl
10dnl This file is part of the Edgeware X tools collection.
11dnl
12dnl X tools is free software; you can redistribute it and/or modify
13dnl it under the terms of the GNU General Public License as published by
14dnl the Free Software Foundation; either version 2 of the License, or
15dnl (at your option) any later version.
c1c9f4d2 16dnl
90b2c5d4 17dnl X tools is distributed in the hope that it will be useful,
18dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
19dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20dnl GNU General Public License for more details.
c1c9f4d2 21dnl
90b2c5d4 22dnl You should have received a copy of the GNU General Public License
23dnl along with X tools; if not, write to the Free Software Foundation,
24dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
f6795c17
MW
26dnl--------------------------------------------------------------------------
27dnl Initialization.
90b2c5d4 28
f6795c17
MW
29mdw_AUTO_VERSION
30AC_INIT([xtoys], AUTO_VERSION, [mdw@distorted.org.uk])
31AC_CONFIG_SRCDIR([xscsize.c])
32AC_CONFIG_AUX_DIR([config])
33AM_INIT_AUTOMAKE([foreign])
90b2c5d4 34
f6795c17
MW
35dnl--------------------------------------------------------------------------
36dnl C programming environment.
d5419f6c 37
f6795c17
MW
38AC_PROG_CC
39AX_CFLAGS_WARN_ALL
90b2c5d4 40AC_PATH_XTRA
90b2c5d4 41
f6795c17
MW
42PKG_CHECK_MODULES([mLib], [mLib >= 2.0.4])
43CFLAGS="$CFLAGS $mLib_CFLAGS"
44LIBS="$LIBS $mLib_LIBS"
45
bce8c6ee
MW
46dnl--------------------------------------------------------------------------
47dnl Python programming environment.
48
49AM_PATH_PYTHON([2.4], [python=yes], [python=no])
50AM_CONDITIONAL([HAVE_PYTHON], [test $python = yes])
51
52if test $python = yes; then
53 AC_PYTHON_MODULE([pygtk])
54fi
55AM_CONDITIONAL([HAVE_PYGTK], [test ${HAVE_PYMOD_PYGTK-no} = yes])
56
f6795c17
MW
57dnl--------------------------------------------------------------------------
58dnl Output.
59
60AC_CONFIG_FILES(
61 [Makefile])
62AC_OUTPUT
90b2c5d4 63
64dnl ----- That's all, folks -------------------------------------------------