Small amounts of tidying.
[sw-tools] / configure.in
1 dnl -*-fundamental-*-
2 dnl
3 dnl $Id: configure.in,v 1.6 1999/07/28 09:31:49 mdw Exp $
4 dnl
5 dnl Configuration for sw-tools
6 dnl
7 dnl (c) 1999 EBI
8 dnl
9
10 dnl ----- Licensing notice --------------------------------------------------
11 dnl
12 dnl This file is part of sw-tools.
13 dnl
14 dnl sw-tools 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 sw-tools 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 sw-tools; 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.6 1999/07/28 09:31:49 mdw
32 dnl Small amounts of tidying.
33 dnl
34 dnl Revision 1.5 1999/07/16 12:46:04 mdw
35 dnl First proper release version.
36 dnl
37 dnl Revision 1.4 1999/06/24 15:53:11 mdw
38 dnl Bump the version number again.
39 dnl
40 dnl Revision 1.3 1999/06/18 18:59:39 mdw
41 dnl Preliminary work for Perl scripts.
42 dnl
43 dnl Revision 1.2 1999/06/04 13:56:36 mdw
44 dnl Bump version.
45 dnl
46 dnl Revision 1.1.1.1 1999/06/02 16:53:33 mdw
47 dnl Initial import.
48 dnl
49
50 dnl --- Boring boilerplate ---
51
52 AC_INIT(src/sw.c)
53 AM_INIT_AUTOMAKE(sw-tools, 1.0.0)
54 AM_CONFIG_HEADER(config.h)
55
56 dnl --- Work out the architecture name ---
57
58 AC_MSG_CHECKING([architecture name])
59 arch=`$srcdir/sw.in --archname`
60 AC_MSG_RESULT($arch)
61 AC_DEFINE_UNQUOTED(ARCH, "$arch")
62 AC_SUBST(arch)
63
64 dnl --- Set up the C compiler ---
65
66 AC_PROG_CC
67 mdw_GCC_FLAGS
68
69 dnl --- Find a Perl ---
70
71 mdw_PROG_PERL(5.003)
72 mdw_CHECK_PERL(5.003)
73
74 dnl --- Find an appropriate remote shell program ---
75
76 AC_ARG_WITH(rsh,
77 [ --with-rsh=PROGRAM use PROGRAM to start remote shells],
78 [RSH=$withval])
79 AC_PATH_PROGS(RSH, $RSH remsh rsh ssh, rsh)
80 AC_DEFINE_UNQUOTED(RSH, "$RSH")
81
82 dnl --- Various simple tests ---
83
84 AC_CHECK_HEADERS(unistd.h)
85 mdw_DECL_ENVIRON
86 AC_TYPE_PID_T
87 AC_TYPE_SIZE_T
88 AC_TYPE_UID_T
89 mdw_TYPE_SSIZE_T
90 AC_CHECK_FUNCS(strsignal _sys_siglist, break)
91 mdw_CURSES
92 mdw_CHECK_MANYLIBS(socketpair, socket)
93
94 dnl --- Write in some useful paths ---
95
96 mdw_prefix=$prefix mdw_exec_prefix=$exec_prefix
97 transform=`echo "$program_transform_name"|sed 's,\\\\\\\\,\\\\,g; s,\\$\\$,$,g'`
98 test "$prefix" = "NONE" && prefix=$ac_default_prefix
99 test "$exec_prefix" = "NONE" && exec_prefix=$prefix
100 SW=`echo sw|sed "$transform"`
101 AC_SUBST(SW)
102 AC_DEFINE_UNQUOTED(PREFIX, "$mdw_prefix")
103 AC_DEFINE_UNQUOTED(BINDIR, "`eval echo $bindir`")
104 AC_DEFINE_UNQUOTED(DATADIR, "`eval echo $datadir`")
105 AC_DEFINE_UNQUOTED(SW, "$SW")
106 pkgdatadir="`eval echo $datadir/sw`"
107 AC_SUBST(pkgdatadir)
108 prefix=$mdw_prefix exec_prefix=$mdw_exec_prefix
109
110 dnl --- Output the configuration ---
111
112 AC_CONFIG_SUBDIRS(mLib)
113 AC_OUTPUT(Makefile src/Makefile sw sw-share)
114
115 dnl ----- That's all, folks -------------------------------------------------