1992-08-18 21:25:14 +00:00
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
1994-03-29 00:23:41 +00:00
|
|
|
AC_REVISION([$Id$])
|
1994-11-15 11:32:39 +00:00
|
|
|
AC_PREREQ(2.1)dnl dnl Minimum Autoconf version required.
|
|
|
|
AC_INIT(vpath.c)dnl dnl A distinctive file to look for in srcdir.
|
1992-12-20 23:08:11 +00:00
|
|
|
AC_CONFIG_HEADER(config.h)
|
1994-11-08 02:08:24 +00:00
|
|
|
AC_CONFIG_SUBDIRS(glob) dnl Run configure in glob subdirectory.
|
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)
|
|
|
|
|
1994-11-08 02:08:24 +00:00
|
|
|
AC_PROG_MAKE_SET
|
1993-01-05 22:40:32 +00:00
|
|
|
AC_PROG_CC
|
1992-08-18 21:25:14 +00:00
|
|
|
AC_PROG_INSTALL
|
|
|
|
AC_PROG_CPP dnl Later checks need this.
|
|
|
|
AC_AIX
|
|
|
|
AC_ISC_POSIX
|
|
|
|
AC_MINIX
|
1994-11-08 02:08:24 +00:00
|
|
|
AC_HEADER_STDC
|
|
|
|
AC_HEADER_DIRENT
|
|
|
|
AC_TYPE_UID_T dnl Also does gid_t.
|
|
|
|
AC_TYPE_GETGROUPS
|
|
|
|
AC_TYPE_PID_T
|
|
|
|
AC_TYPE_SIGNAL
|
|
|
|
AC_CHECK_HEADERS(unistd.h limits.h sys/param.h fcntl.h string.h memory.h \
|
|
|
|
sys/timeb.h)
|
|
|
|
AC_PROG_CC_C_O
|
|
|
|
AC_C_CONST dnl getopt needs this.
|
|
|
|
AC_HEADER_STAT
|
1992-08-18 21:25:14 +00:00
|
|
|
|
|
|
|
AC_SUBST(LIBOBJS)
|
|
|
|
|
1994-11-08 02:08:24 +00:00
|
|
|
AC_DEFUN(AC_CHECK_SYMBOL, [dnl
|
|
|
|
AC_MSG_CHECKING(for $1)
|
|
|
|
AC_CACHE_VAL(ac_cv_check_symbol_$1, [dnl
|
|
|
|
AC_TRY_LINK(, [extern char *sys_siglist[]; puts(*sys_siglist);],
|
|
|
|
ac_cv_check_symbol_$1=yes, ac_cv_check_symbol_$1=no)])
|
|
|
|
if test "$ac_cv_check_symbol_$1" = yes; then
|
|
|
|
changequote(,)dnl
|
|
|
|
ac_tr_symbol=`echo $1 | tr '[a-z]' '[A-Z]'`
|
|
|
|
changequote([,])dnl
|
1994-11-28 20:28:26 +00:00
|
|
|
AC_DEFINE_UNQUOTED(HAVE_${ac_tr_symbol})
|
1994-11-08 02:08:24 +00:00
|
|
|
fi
|
|
|
|
AC_MSG_RESULT($ac_cv_check_symbol_$1)])dnl
|
|
|
|
|
|
|
|
AC_CHECK_FUNCS(getdtablesize psignal \
|
|
|
|
dup2 getcwd sigsetmask getgroups setlinebuf \
|
|
|
|
seteuid setegid setreuid setregid strerror)
|
|
|
|
AC_CHECK_SYMBOL(sys_siglist)
|
|
|
|
AC_CHECK_SYMBOL(_sys_siglist)
|
|
|
|
AC_FUNC_ALLOCA
|
|
|
|
AC_FUNC_VFORK
|
|
|
|
AC_FUNC_SETVBUF_REVERSED
|
|
|
|
AC_FUNC_GETLOADAVG
|
|
|
|
AC_FUNC_STRCOLL
|
1992-08-18 21:25:14 +00:00
|
|
|
|
1994-11-08 02:08:24 +00:00
|
|
|
# Check out the wait reality.
|
|
|
|
AC_CHECK_HEADERS(sys/wait.h) AC_CHECK_FUNCS(waitpid wait3)
|
|
|
|
AC_MSG_CHECKING(for union wait)
|
|
|
|
AC_CACHE_VAL(make_cv_union_wait, [dnl
|
|
|
|
AC_TRY_LINK([#include <sys/types.h>
|
1992-08-18 21:25:14 +00:00
|
|
|
#include <sys/wait.h>],
|
1994-11-08 02:08:24 +00:00
|
|
|
[union wait status; int pid; pid = wait (&status);
|
1993-01-26 02:24:51 +00:00
|
|
|
#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
|
|
|
],
|
1994-11-08 02:08:24 +00:00
|
|
|
[make_cv_union_wait=yes], [make_cv_union_wait=no])])
|
|
|
|
if test "$make_cv_union_wait" = yes; then
|
|
|
|
AC_DEFINE(HAVE_UNION_WAIT)
|
|
|
|
fi
|
|
|
|
AC_MSG_RESULT($make_cv_union_wait)
|
1992-08-18 21:25:14 +00:00
|
|
|
|
1994-11-08 02:08:24 +00:00
|
|
|
AC_DECL_SYS_SIGLIST
|
1993-01-26 02:24:51 +00:00
|
|
|
|
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.
|
1994-11-08 02:08:24 +00:00
|
|
|
AC_CHECK_LIB(sun, getpwnam)
|
1992-08-18 21:25:14 +00:00
|
|
|
|
1993-03-11 19:25:28 +00:00
|
|
|
AC_SUBST(REMOTE) REMOTE=stub
|
1994-11-08 02:08:24 +00:00
|
|
|
AC_ARG_WITH(customs, [export jobs with the Customs daemon (NOT SUPPORTED)],
|
|
|
|
[REMOTE=cstms LIBS="$LIBS libcustoms.a"])
|
1993-03-11 19:25:28 +00:00
|
|
|
|
1993-04-16 00:54:50 +00:00
|
|
|
echo checking for location of SCCS get command
|
|
|
|
if test -f /usr/sccs/get; then
|
1993-12-14 23:06:56 +00:00
|
|
|
SCCS_GET=/usr/sccs/get
|
1993-04-16 00:54:50 +00:00
|
|
|
AC_DEFINE(SCCS_GET, "/usr/sccs/get")
|
|
|
|
else
|
1993-12-14 23:06:56 +00:00
|
|
|
SCCS_GET=get
|
1993-04-16 00:54:50 +00:00
|
|
|
AC_DEFINE(SCCS_GET, "get")
|
|
|
|
fi
|
1993-12-14 21:56:50 +00:00
|
|
|
ac_clean_files="$ac_clean_files s.conftest conftoast" # Remove these later.
|
1993-12-23 19:46:50 +00:00
|
|
|
if ( /usr/sccs/admin -n s.conftest || admin -n s.conftest ) >/dev/null 2>&1 &&
|
|
|
|
test -f s.conftest; then
|
1993-12-14 21:56:50 +00:00
|
|
|
# We successfully created an SCCS file.
|
|
|
|
echo checking if SCCS get command understands -G
|
1994-05-17 02:59:57 +00:00
|
|
|
if $SCCS_GET -Gconftoast s.conftest >/dev/null 2>&1 &&
|
1993-12-22 22:00:41 +00:00
|
|
|
test -f conftoast; then
|
1993-12-14 21:56:50 +00:00
|
|
|
AC_DEFINE(SCCS_GET_MINUS_G)
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
rm -f s.conftest conftoast
|
1993-04-16 00:54:50 +00:00
|
|
|
|
1994-11-28 20:48:43 +00:00
|
|
|
AC_OUTPUT(Makefile build.sh, [
|
1993-08-16 21:34:26 +00:00
|
|
|
# Makefile uses this timestamp file to know when to remake Makefile,
|
|
|
|
# build.sh, and glob/Makefile.
|
1993-12-14 21:56:50 +00:00
|
|
|
touch stamp-config])
|
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:
|