make/configure.in

93 lines
2.5 KiB
Plaintext
Raw Normal View History

1992-08-19 05:25:14 +08: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-21 07:08:11 +08:00
AC_CONFIG_HEADER(config.h)
1992-08-19 05:25:14 +08:00
1993-01-23 06:16:40 +08: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-06 06:40:32 +08:00
AC_PROG_CC
1992-08-19 05:25:14 +08: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_DIR_HEADER
AC_UID_T dnl Also does gid_t.
1993-05-13 03:24:14 +08:00
AC_GETGROUPS_T
1992-08-19 05:25:14 +08:00
AC_PID_T
AC_RETSIGTYPE
1993-10-22 14:56:46 +08:00
AC_HAVE_HEADERS(unistd.h limits.h sys/param.h fcntl.h string.h memory.h \
sys/timeb.h)
1992-08-19 05:25:14 +08:00
AC_MINUS_C_MINUS_O
1993-01-19 08:19:54 +08:00
AC_CONST dnl getopt needs this.
1993-07-24 04:04:35 +08:00
AC_STAT_MACROS_BROKEN
1992-08-19 05:25:14 +08:00
AC_SUBST(LIBOBJS)
1993-04-06 08:58:10 +08:00
AC_HAVE_FUNCS(getdtablesize sys_siglist _sys_siglist psignal \
1993-01-06 06:40:32 +08:00
dup2 getcwd sigsetmask getgroups setlinebuf \
1993-12-04 05:40:28 +08:00
setreuid setregid strerror)
1992-08-19 05:25:14 +08:00
AC_ALLOCA
AC_VFORK
AC_SETVBUF_REVERSED
AC_GETLOADAVG
AC_STRCOLL
1993-01-23 06:16:40 +08: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-19 05:25:14 +08:00
#include <sys/wait.h>],
1993-01-26 10:24:51 +08: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-29 05:41:44 +08:00
union wait type, and they do not work together. If union wait
1993-01-26 10:24:51 +08:00
conflicts with WEXITSTATUS et al, we don't want to use it at all. */
if (WEXITSTATUS (status) != 0) pid = -1;
#endif
1993-02-06 04:24:00 +08:00
#ifdef HAVE_WAITPID
/* Make sure union wait works with waitpid. */
pid = waitpid (-1, &status, 0);
#endif
1993-01-26 10:24:51 +08:00
],
1993-01-23 06:16:40 +08:00
AC_DEFINE(HAVE_UNION_WAIT))
1992-08-19 05:25:14 +08:00
1993-07-30 11:37:40 +08:00
AC_COMPILE_CHECK(sys_siglist declaration in signal.h or unistd.h,
[#include <signal.h>
/* NetBSD declares sys_siglist in <unistd.h>. */
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif], [char *msg = *(sys_siglist + 1);],
1993-01-26 10:24:51 +08:00
AC_DEFINE(SYS_SIGLIST_DECLARED))
1992-08-19 05:25:14 +08: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-07-30 11:37:40 +08:00
AC_IRIX_SUN
1992-08-19 05:25:14 +08:00
1993-03-12 03:25:28 +08:00
AC_SUBST(REMOTE) REMOTE=stub
AC_WITH(customs, [REMOTE=cstms
LIBS="$LIBS libcustoms.a"])
1993-04-16 08:54:50 +08:00
echo checking for location of SCCS get command
if test -f /usr/sccs/get; then
AC_DEFINE(SCCS_GET, "/usr/sccs/get")
else
AC_DEFINE(SCCS_GET, "get")
fi
1993-01-13 05:11:23 +08:00
AC_OUTPUT(Makefile build.sh glob/Makefile)
1993-08-17 05:34:26 +08:00
# Makefile uses this timestamp file to know when to remake Makefile,
# build.sh, and glob/Makefile.
touch stamp-config
1992-08-19 05:25:14 +08:00
dnl Local Variables:
1993-01-19 08:19:54 +08:00
dnl comment-start: "dnl "
1992-08-19 05:25:14 +08:00
dnl comment-end: ""
dnl comment-start-skip: "\\bdnl\\b\\s *"
1992-12-21 07:08:11 +08:00
dnl compile-command: "make configure config.h.in"
1992-08-19 05:25:14 +08:00
dnl End: