Whoops.
[bascat] / configure.in
CommitLineData
0398bb0d 1dnl -*-fundamental-*-
2dnl
ebf90772 3dnl $Id: configure.in,v 1.2 1999/10/28 10:10:39 mdw Exp $
0398bb0d 4dnl
5dnl Source for auto configuration for `Bascat'
6dnl
7dnl (c) 1997 Mark Wooding
8dnl
9
10dnl----- Licensing notice ---------------------------------------------------
11dnl
12dnl This file is part of Bascat.
13dnl
14dnl Bascat 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 Bascat 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 General Public License
25dnl along with Bascat; if not, write to the Free Software Foundation,
26dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27
28dnl----- Revision history ---------------------------------------------------
29dnl
30dnl $Log: configure.in,v $
ebf90772 31dnl Revision 1.2 1999/10/28 10:10:39 mdw
32dnl New project standards.
33dnl
0398bb0d 34dnl Revision 1.1 1998/03/16 15:21:37 mdw
35dnl Files placed under CVS control.
36dnl
37dnl Revision 1.1 1997/07/23 01:18:47 mdw
38dnl Initial revision
39dnl
40
41AC_INIT(bascat.c)
ebf90772 42AM_INIT_AUTOMAKE(bascat, 1.2pre2)
0398bb0d 43
44AC_ARG_PROGRAM
45AC_PROG_CC
46AC_PROG_INSTALL
47
48mdw_GCC_FLAGS(-pedantic -Wall -W -Wtraditional -Wpointer-arith -Wcast-align)
49mdw_CHECK_MANYLIBS(tgetent, termcap ncurses, [AC_DEFINE(HAVE_LIBTERMCAP, 1)])
50mdw_OPT_NDEBUG
51
52AC_ARG_WITH(pager,
53[ --with-pager=PAGER set the default pager (default is \`more')],
54 [AC_DEFINE(PAGER, "$withval")], [AC_DEFINE(PAGER, "more")])
55
56AC_OUTPUT(Makefile)