Add documentation for the `sw-precommit' script.
[sw-tools] / configure.in
CommitLineData
3315e8b3 1dnl -*-fundamental-*-
2dnl
de50c780 3dnl $Id: configure.in,v 1.3 1999/06/18 18:59:39 mdw Exp $
3315e8b3 4dnl
5dnl Configuration for sw-tools
6dnl
7dnl (c) 1999 EBI
8dnl
9
10dnl ----- Licensing notice --------------------------------------------------
11dnl
12dnl This file is part of sw-tools.
13dnl
14dnl sw-tools 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 sw-tools 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
25dnl along with sw-tools; if not, write to the Free Software Foundation,
26dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27
28dnl ----- Revision history --------------------------------------------------
29dnl
30dnl $Log: configure.in,v $
de50c780 31dnl Revision 1.3 1999/06/18 18:59:39 mdw
32dnl Preliminary work for Perl scripts.
33dnl
b2f455ee 34dnl Revision 1.2 1999/06/04 13:56:36 mdw
35dnl Bump version.
36dnl
37dnl Revision 1.1.1.1 1999/06/02 16:53:33 mdw
38dnl Initial import.
3315e8b3 39dnl
40
41dnl --- Boring boilerplate ---
42
43AC_INIT(src/sw.c)
de50c780 44AM_INIT_AUTOMAKE(sw-tools, 1.0.0pre5)
3315e8b3 45AM_CONFIG_HEADER(config.h)
46
47dnl --- Work out the architecture name ---
48
49AC_MSG_CHECKING([architecture name])
50arch=`$srcdir/sw.in --archname`
51AC_MSG_RESULT($arch)
52AC_DEFINE_UNQUOTED(ARCH, "$arch")
53AC_SUBST(arch)
54
55dnl --- Set up the C compiler ---
56
57AC_PROG_CC
58mdw_GCC_FLAGS
59
de50c780 60dnl --- Find a Perl ---
61
62mdw_PROG_PERL(5.003)
63mdw_CHECK_PERL(5.003)
64
3315e8b3 65dnl --- Check for <unistd.h> ---
66
67AC_CHECK_HEADERS(unistd.h)
68
69dnl --- Find an appropriate remote shell program ---
70
71AC_ARG_WITH(rsh,
72[ --with-rsh=PROGRAM use PROGRAM to start remote shells],
73[RSH=$withval])
74AC_PATH_PROGS(RSH, $RSH remsh rsh ssh, rsh)
75AC_DEFINE_UNQUOTED(RSH, "$RSH")
76
77dnl --- Find out whether I have `strsignal' or `sys_siglist' ---
78
79AC_CHECK_FUNCS(strsignal _sys_siglist, break)
80
81dnl --- Decide whether to declare `environ' ---
82
83AC_CACHE_CHECK([for declaration of \`environ'], sw_cv_environ,
84[AC_EGREP_CPP(environ,
85[#include <sys/types.h>
86#if HAVE_UNISTD_H
87#include <unistd.h>
88#endif
89#if STDC_HEADERS
90#include <stdlib.h>
91#include <stddef.h>
92#endif], [sw_cv_environ=yes], [sw_cv_environ=no])])
93if test $sw_cv_environ = yes; then
94 AC_DEFINE(DECL_ENVIRON)
95fi
96
97dnl --- Find a curses library ---
98dnl
99dnl Try to find one which knows how to resize a terminal.
100
101mdw_CHECK_MANYLIBS(newwin, ncurses curses, AC_DEFINE(HAVE_CURSES))
102
103if test $mdw_cv_lib_newwin != no; then
104AC_CHECK_HEADERS([ncurses.h ncurses/ncurses.h curses.h], [break])
105
106if test "$ac_cv_header_ncurses_h" = "no" &&
107 test "$ac_cv_header_ncurses_ncurses_h" = "no" &&
108 test "$ac_cv_header_curses_h" = "no"; then
109 AC_MSG_WARN([couldn't find a \`curses' header. Assuming \`curses.h'.])
110 AC_DEFINE(HAVE_CURSES_H)
111fi
112
113AC_CHECK_FUNCS(wresize)
114fi
115
116
117dnl --- Other handy libraries ---
118
119mdw_CHECK_MANYLIBS(socketpair, socket)
120
121dnl --- Various standard types ---
122
123AC_TYPE_PID_T
124AC_TYPE_SIZE_T
125AC_TYPE_UID_T
126
127AC_CACHE_CHECK(for ssize_t, sw_cv_ssize_t,
128[AC_EGREP_CPP(ssize_t,
129[#include <sys/types.h>
130#if HAVE_UNISTD_H
131#include <unistd.h>
132#endif
133#if STDC_HEADERS
134#include <stdlib.h>
135#include <stddef.h>
136#endif],
137[sw_cv_ssize_t=yes], [sw_cv_ssize_t=no])])
138
139if test $sw_cv_ssize_t = no; then
140 AC_DEFINE(ssize_t, int)
141fi
142
143dnl --- Write in some useful paths ---
144
145mdw_prefix=$prefix mdw_exec_prefix=$exec_prefix
146transform=`echo "$program_transform_name"|sed 's,\\\\\\\\,\\\\,g; s,\\$\\$,$,g'`
147test "$prefix" = "NONE" && prefix=$ac_default_prefix
148test "$exec_prefix" = "NONE" && exec_prefix=$prefix
149SW=`echo sw|sed "$transform"`
150AC_SUBST(SW)
151AC_DEFINE_UNQUOTED(PREFIX, "$mdw_prefix")
152AC_DEFINE_UNQUOTED(BINDIR, "`eval echo $bindir`")
153AC_DEFINE_UNQUOTED(DATADIR, "`eval echo $datadir`")
154AC_DEFINE_UNQUOTED(SW, "$SW")
de50c780 155pkgdatadir="`eval echo $datadir/sw`"
156AC_SUBST(pkgdatadir)
3315e8b3 157prefix=$mdw_prefix exec_prefix=$mdw_exec_prefix
158
159dnl --- Output the configuration ---
160
161AC_CONFIG_SUBDIRS(mLib)
de50c780 162AC_OUTPUT(Makefile src/Makefile sw sw-share)
3315e8b3 163
164dnl ----- That's all, folks -------------------------------------------------