Initial revision
[pixie] / configure.in
CommitLineData
9d2e2c65 1dnl -*-fundamental-*-
2dnl
3dnl $Id: configure.in,v 1.1 1999/10/23 10:58:49 mdw Exp $
4dnl
5dnl Configuration script for PGP pixie
6dnl
7dnl (c) 1999 Mark Wooding
8dnl
9
10dnl ----- Licensing notice --------------------------------------------------
11dnl
12dnl PGP pixie 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.
16dnl
17dnl PGP pixie 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.
21dnl
22dnl You should have received a copy of the GNU General Public License
23dnl along with PGP pixie; if not, write to the Free Software Foundation,
24dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26dnl ----- Revision history --------------------------------------------------
27dnl
28dnl $Log: configure.in,v $
29dnl Revision 1.1 1999/10/23 10:58:49 mdw
30dnl Initial revision
31dnl
32
33AC_INIT(pixie.c)
34AM_INIT_AUTOMAKE(pixie, 1.0.0)
35AC_PROG_CC
36mdw_GCC_FLAGS
37AC_PATH_PROG(PATH_XGETLINE, xgetline)
38if test -n "$PATH_XGETLINE"; then
39 AC_DEFINE_UNQUOTED(PATH_XGETLINE, "$PATH_XGETLINE")
40fi
41AC_CHECK_FUNCS(mlock)
42mdw_prefix=$prefix mdw_exec_prefix=$exec_prefix
43test "$prefix" = "NONE" && prefix=$ac_default_prefix
44test "$exec_prefix" = "NONE" && exec_prefix=$prefix
45PIXIE=`eval echo $bindir`/`echo pixie|sed ${program_transform_name}`
46AC_SUBST(PIXIE)
47AC_OUTPUT(Makefile pgp-pixie)
48
49dnl ----- That's all, folks -------------------------------------------------