chiark / gitweb /
debian: Fix package sections.
[mgLib] / configure.in
CommitLineData
a7f5705d 1dnl -*-m4-*-
1c48db0c 2dnl
c4f09bcc 3dnl $Id: configure.in,v 1.12 2004/04/08 01:36:14 mdw Exp $
1c48db0c 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
19c0192c 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.
1c48db0c 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
19c0192c 22dnl GNU Library General Public License for more details.
1c48db0c 23dnl
19c0192c 24dnl You should have received a copy of the GNU Library General Public
e962a3e2 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.
1c48db0c 28
1c48db0c 29AC_INIT(mdwfocus.c)
cc21a004 30mdw_INIT_LIB(mgLib, mgLib, 1.1.0)
1c48db0c 31
32AC_PROG_CC
fbfeb09d 33mdw_GCC_FLAGS
ff3a8b71 34AM_PROG_LIBTOOL
1c48db0c 35
ff3a8b71 36mdw_MLIB(1.6.0)
1c48db0c 37AM_PATH_GTK(1.0.0,
ff3a8b71 38 [LIBS="$LIBS $GTK_LIBS" CFLAGS="$CFLAGS $GTK_CFLAGS"],
39 [AC_MSG_ERROR([couldn't find GTK])])
1c48db0c 40
41mdw_OPT_mLib_DEBUG(mgLib)
1c48db0c 42
3eb2b65a 43AC_OUTPUT(Makefile mgLib-config:lib-config.in)
1c48db0c 44
45dnl ----- That's all, folks -------------------------------------------------