Turn off debugging\!
[bascat] / configure.in
CommitLineData
0398bb0d 1dnl -*-fundamental-*-
2dnl
01880456 3dnl $Id$
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
0398bb0d 28AC_INIT(bascat.c)
01880456 29AM_INIT_AUTOMAKE(bascat, 1.3)
0398bb0d 30
0398bb0d 31AC_PROG_CC
32AC_PROG_INSTALL
33
01880456 34mdw_GCC_FLAGS
0398bb0d 35mdw_CHECK_MANYLIBS(tgetent, termcap ncurses, [AC_DEFINE(HAVE_LIBTERMCAP, 1)])
36mdw_OPT_NDEBUG
37
38AC_ARG_WITH(pager,
39[ --with-pager=PAGER set the default pager (default is \`more')],
40 [AC_DEFINE(PAGER, "$withval")], [AC_DEFINE(PAGER, "more")])
41
42AC_OUTPUT(Makefile)