Files to link to the CFD
[become] / configure.in
CommitLineData
c4f2d992 1dnl -*-fundamental-*-
2dnl
1bda7a39 3dnl $Id: configure.in,v 1.3 1997/08/07 09:34:32 mdw Exp $
c4f2d992 4dnl
5dnl Source for auto configuration for `become'
6dnl
7dnl (c) 1997 Mark Wooding
8dnl
9
03f996bd 10dnl----- Licensing notice ---------------------------------------------------
c4f2d992 11dnl
12dnl This file is part of `become'
13dnl
14dnl `Become' is free software; you can redistribute it and/or modify
15dnl it under the terms of the GNU General Public License as published by
16dnl the Free Software Foundation; either version 2 of the License, or
17dnl (at your option) any later version.
18dnl
19dnl `Become' 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 General Public License for more details.
23dnl
24dnl You should have received a copy of the GNU General Public License
03f996bd 25dnl along with `become'; if not, write to the Free Software Foundation,
26dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
c4f2d992 27
28dnl----- Revision history ---------------------------------------------------
29dnl
30dnl $Log: configure.in,v $
1bda7a39 31dnl Revision 1.3 1997/08/07 09:34:32 mdw
32dnl Added `ElectricFence' support, and support for the `deep' package structure.
33dnl
03f996bd 34dnl Revision 1.2 1997/08/04 10:24:21 mdw
35dnl Sources placed under CVS control.
c4f2d992 36dnl
1bda7a39 37dnl Revision 1.1 1997/07/21 13:47:51 mdw
38dnl Initial revision
39dnl
c4f2d992 40
1bda7a39 41AC_INIT(src/icrypt.c)
c4f2d992 42AC_CONFIG_HEADER(config.h)
03f996bd 43PACKAGE=become VERSION=1.2-pre
44AC_SUBST(PACKAGE)
45AC_SUBST(VERSION)
46AC_DEFINE(VERSION, "1.2-pre (24 July 1997)")
c4f2d992 47
48dnl --- Check for compilers and things ---
49
50AC_PROG_CC
51AC_PROG_INSTALL
52AC_PROG_LEX
53AC_CHECK_PROG(AR, ar, ar)
54AC_PROG_RANLIB
1bda7a39 55AC_PROG_MAKE_SET
c4f2d992 56AC_PROG_YACC
03f996bd 57AC_ARG_PROGRAM
c4f2d992 58if test "$ac_cv_prog_gcc" = "yes"; then
59 CFLAGS="$CFLAGS -pedantic -Wall"
60fi
61
62dnl --- Libraries ---
63
03f996bd 64MDW_CHECK_MANYLIBS(socket, socket,,
65 AC_MSG_ERROR([Socket library not found]))
66
67MDW_CHECK_MANYLIBS(gethostbyname, resolv nsl,,
68 AC_MSG_ERROR([Resolver library not found]))
69
70MDW_CHECK_MANYLIBS(yp_all, nsl, AC_DEFINE(HAVE_YP))
c4f2d992 71
72dnl --- Types ---
73
74AC_TYPE_PID_T
75AC_TYPE_UID_T
03f996bd 76AC_CHECK_TYPE(ssize_t, int)
c4f2d992 77
78dnl --- Check on type sizes ---
79
03f996bd 80AC_CHECK_SIZEOF(int, 2)
c4f2d992 81
82dnl --- Set the path separator ---
83
84AC_DEFINE(PATHSEP, '/')
85
03f996bd 86dnl --- Check for some useful functions ---
87
88AC_CHECK_FUNCS(getrusage vtimes)
89
c4f2d992 90dnl --- Debugging stuff ---
91
1bda7a39 92AC_ARG_WITH(electric-fence,
93[ --with-electric-fence link programs with Electric Fence],
94 [if test "$withval" = "yes"; then
95 AC_CHECK_LIB(efence, malloc)
96 fi])
97
c4f2d992 98AC_ARG_ENABLE(debugging,
03f996bd 99[ --enable-debugging spews vast swathes of useless information],
c4f2d992 100 [if test "$enableval" = "no"; then
101 AC_DEFINE(NDEBUG, 1)
102 fi],
103 AC_DEFINE(NDEBUG, 1))
104
03f996bd 105AC_ARG_ENABLE(tracing,
106[ --enable-tracing enable output of tracing information],
107 [if test "$enableval" = "yes"; then
108 AC_DEFINE(TRACING)
c4f2d992 109 fi],
03f996bd 110 AC_DEFINE(TRACING))
c4f2d992 111
112dnl --- Define where things get put ---
113
114mdw_save_prefix="$prefix"
03f996bd 115test "$prefix" = "NONE" && prefix="$ac_default_prefix"
c4f2d992 116AC_DEFINE_UNQUOTED(ETCDIR, "`eval echo ${sysconfdir}`")
117prefix="$mdw_save_prefix"
118
119dnl --- Done ---
120
1bda7a39 121AC_OUTPUT(Makefile src/Makefile manual/Makefile)
c4f2d992 122
123dnl----- That's all, folks --------------------------------------------------