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