make-dfsg/configure.in

101 lines
2.8 KiB
Text
Raw Normal View History

1992-08-18 21:25:14 +00:00
dnl Process this file with autoconf to produce a configure script.
1994-03-28 22:58:08 +00:00
AC_REVISION($Id$)
1992-08-18 21:25:14 +00:00
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_DIR_HEADER
AC_UID_T dnl Also does gid_t.
1993-05-12 19:24:14 +00:00
AC_GETGROUPS_T
1992-08-18 21:25:14 +00:00
AC_PID_T
AC_RETSIGTYPE
1993-10-22 06:56:46 +00:00
AC_HAVE_HEADERS(unistd.h limits.h sys/param.h fcntl.h string.h memory.h \
sys/timeb.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-07-23 20:04:35 +00:00
AC_STAT_MACROS_BROKEN
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 \
1993-12-03 21:40:28 +00:00
setreuid setregid strerror)
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
1994-02-11 02:45:27 +00:00
AC_SYS_SIGLIST_DECLARED
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.
AC_DYNIX_SEQ
AC_XENIX_DIR
1993-07-30 03:37:40 +00:00
AC_IRIX_SUN
1992-08-18 21:25:14 +00:00
1993-03-11 19:25:28 +00:00
AC_SUBST(REMOTE) REMOTE=stub
AC_WITH(customs, [REMOTE=cstms
LIBS="$LIBS libcustoms.a"])
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
1993-12-22 22:00:41 +00:00
if $SCCS_GET s.conftest -Gconftoast >/dev/null 2>&1 &&
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
1993-12-14 21:56:50 +00:00
AC_OUTPUT(Makefile build.sh glob/Makefile, [
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: