1992-08-18 21:25:14 +00:00
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
|
|
|
AC_INIT(vpath.c) dnl A distinctive file to look for in srcdir.
|
1992-12-20 23:08:11 +00:00
|
|
|
AC_CONFIG_HEADER(config.h)
|
1992-08-18 21:25:14 +00:00
|
|
|
|
1993-01-22 22:16:40 +00:00
|
|
|
# We want these before the checks, so the checks can modify their values.
|
|
|
|
test -z "$CFLAGS" && CFLAGS=-g AC_SUBST(CFLAGS)
|
|
|
|
test -z "$LDFLAGS" && LDFLAGS=-g AC_SUBST(LDFLAGS)
|
|
|
|
|
1993-01-05 22:40:32 +00:00
|
|
|
AC_PROG_CC
|
1992-08-18 21:25:14 +00:00
|
|
|
AC_PROG_INSTALL
|
|
|
|
AC_PROG_RANLIB
|
|
|
|
AC_PROG_CPP dnl Later checks need this.
|
|
|
|
AC_AIX
|
|
|
|
AC_ISC_POSIX
|
|
|
|
AC_MINIX
|
|
|
|
AC_STDC_HEADERS
|
|
|
|
AC_UNISTD_H
|
|
|
|
AC_DIR_HEADER
|
|
|
|
AC_UID_T dnl Also does gid_t.
|
|
|
|
AC_PID_T
|
|
|
|
AC_RETSIGTYPE
|
1993-04-12 20:51:39 +00:00
|
|
|
AC_HAVE_HEADERS(limits.h sys/param.h fcntl.h string.h memory.h)
|
1992-08-18 21:25:14 +00:00
|
|
|
AC_MINUS_C_MINUS_O
|
1993-01-19 00:19:54 +00:00
|
|
|
AC_CONST dnl getopt needs this.
|
1993-01-22 22:16:40 +00:00
|
|
|
AC_USG
|
1992-08-18 21:25:14 +00:00
|
|
|
|
|
|
|
AC_SUBST(LIBOBJS)
|
|
|
|
|
1993-04-06 00:58:10 +00:00
|
|
|
AC_HAVE_FUNCS(getdtablesize sys_siglist _sys_siglist psignal \
|
1993-01-05 22:40:32 +00:00
|
|
|
dup2 getcwd sigsetmask getgroups setlinebuf \
|
|
|
|
setreuid setregid)
|
1992-08-18 21:25:14 +00:00
|
|
|
AC_ALLOCA
|
|
|
|
AC_VFORK
|
|
|
|
AC_SETVBUF_REVERSED
|
|
|
|
AC_GETLOADAVG
|
|
|
|
AC_STRCOLL
|
|
|
|
|
1993-01-22 22:16:40 +00:00
|
|
|
dnl Check out the wait reality.
|
|
|
|
AC_HAVE_HEADERS(sys/wait.h) AC_HAVE_FUNCS(waitpid wait3)
|
|
|
|
AC_COMPILE_CHECK(union wait, [#include <sys/types.h>
|
1992-08-18 21:25:14 +00:00
|
|
|
#include <sys/wait.h>],
|
1993-01-26 02:24:51 +00:00
|
|
|
[union wait status; int pid; pid = wait (&status);
|
|
|
|
#ifdef WEXITSTATUS
|
|
|
|
/* Some POSIXoid systems have both the new-style macros and the old
|
1993-01-28 21:41:44 +00:00
|
|
|
union wait type, and they do not work together. If union wait
|
1993-01-26 02:24:51 +00:00
|
|
|
conflicts with WEXITSTATUS et al, we don't want to use it at all. */
|
|
|
|
if (WEXITSTATUS (status) != 0) pid = -1;
|
|
|
|
#endif
|
1993-02-05 20:24:00 +00:00
|
|
|
#ifdef HAVE_WAITPID
|
|
|
|
/* Make sure union wait works with waitpid. */
|
|
|
|
pid = waitpid (-1, &status, 0);
|
|
|
|
#endif
|
1993-01-26 02:24:51 +00:00
|
|
|
],
|
1993-01-22 22:16:40 +00:00
|
|
|
AC_DEFINE(HAVE_UNION_WAIT))
|
1992-08-18 21:25:14 +00:00
|
|
|
|
1993-01-26 02:24:51 +00:00
|
|
|
AC_COMPILE_CHECK(sys_siglist declaration in signal.h,
|
|
|
|
[#include <signal.h>], [char *msg = *(sys_siglist + 1);],
|
|
|
|
AC_DEFINE(SYS_SIGLIST_DECLARED))
|
|
|
|
|
1992-08-18 21:25:14 +00:00
|
|
|
# The presence of the following is not meant to imply
|
|
|
|
# that make necessarily works on those systems.
|
|
|
|
AC_DYNIX_SEQ
|
|
|
|
AC_XENIX_DIR
|
|
|
|
|
1993-03-11 19:25:28 +00:00
|
|
|
AC_SUBST(REMOTE) REMOTE=stub
|
|
|
|
AC_WITH(customs, [REMOTE=cstms
|
|
|
|
LIBS="$LIBS libcustoms.a"])
|
|
|
|
|
1993-01-12 21:11:23 +00:00
|
|
|
AC_OUTPUT(Makefile build.sh glob/Makefile)
|
1992-08-18 21:25:14 +00:00
|
|
|
|
|
|
|
dnl Local Variables:
|
1993-01-19 00:19:54 +00:00
|
|
|
dnl comment-start: "dnl "
|
1992-08-18 21:25:14 +00:00
|
|
|
dnl comment-end: ""
|
|
|
|
dnl comment-start-skip: "\\bdnl\\b\\s *"
|
1992-12-20 23:08:11 +00:00
|
|
|
dnl compile-command: "make configure config.h.in"
|
1992-08-18 21:25:14 +00:00
|
|
|
dnl End:
|