chiark / gitweb /
Extract Subversion ignore data.
[mgLib] / configure.in
... / ...
CommitLineData
1dnl -*-m4-*-
2dnl
3dnl $Id: configure.in,v 1.12 2004/04/08 01:36:14 mdw Exp $
4dnl
5dnl Configuration script for mgLib
6dnl
7dnl (c) 1998 Straylight/Edgeware
8dnl
9
10dnl ----- Licensing notice --------------------------------------------------
11dnl
12dnl This file is part of the mgLib GTK utilities library.
13dnl
14dnl mgLib is free software; you can redistribute it and/or modify
15dnl it under the terms of the GNU Library General Public License as
16dnl published by the Free Software Foundation; either version 2 of the
17dnl License, or (at your option) any later version.
18dnl
19dnl mgLib is distributed in the hope that it will be useful,
20dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
21dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22dnl GNU Library General Public License for more details.
23dnl
24dnl You should have received a copy of the GNU Library General Public
25dnl License along with mgLib; if not, write to the Free
26dnl Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27dnl MA 02111-1307, USA.
28
29AC_INIT(mdwfocus.c)
30mdw_INIT_LIB(mgLib, mgLib, 1.1.0)
31
32AC_PROG_CC
33mdw_GCC_FLAGS
34AM_PROG_LIBTOOL
35
36mdw_MLIB(1.6.0)
37AM_PATH_GTK(1.0.0,
38 [LIBS="$LIBS $GTK_LIBS" CFLAGS="$CFLAGS $GTK_CFLAGS"],
39 [AC_MSG_ERROR([couldn't find GTK])])
40
41mdw_OPT_mLib_DEBUG(mgLib)
42
43AC_OUTPUT(Makefile mgLib-config:lib-config.in)
44
45dnl ----- That's all, folks -------------------------------------------------