2002-07-01 16:08:43 +08:00
|
|
|
dnl Process this file with autoconf to produce a configure script. -*-m4-*-
|
2003-03-14 17:45:37 +08:00
|
|
|
AC_INIT([GNU coreutils],[4.5.11],[bug-coreutils@gnu.org])
|
2002-07-01 16:08:43 +08:00
|
|
|
AC_CONFIG_SRCDIR(src/ls.c)
|
|
|
|
|
|
|
|
AC_CONFIG_AUX_DIR(config)
|
2002-11-17 18:10:26 +08:00
|
|
|
AC_CONFIG_HEADERS([config.h:config.hin])
|
2002-07-01 16:08:43 +08:00
|
|
|
AC_CANONICAL_HOST
|
|
|
|
|
2002-07-29 18:57:12 +08:00
|
|
|
AM_INIT_AUTOMAKE([1.6b gnits dist-bzip2])
|
2002-07-01 16:08:43 +08:00
|
|
|
|
|
|
|
AC_GNU_SOURCE
|
|
|
|
jm_PERL
|
|
|
|
AC_PROG_CC
|
|
|
|
AC_PROG_CPP
|
|
|
|
AC_PROG_GCC_TRADITIONAL
|
|
|
|
AC_PROG_RANLIB
|
|
|
|
AC_AIX
|
|
|
|
AC_MINIX
|
|
|
|
|
|
|
|
AC_CHECK_FUNCS(uname,
|
2003-03-19 17:06:40 +08:00
|
|
|
OPTIONAL_BIN_PROGS="$OPTIONAL_BIN_PROGS uname\$(EXEEXT)"
|
|
|
|
MAN="$MAN uname.1")
|
2002-07-01 16:08:43 +08:00
|
|
|
AC_CHECK_FUNCS(chroot,
|
2003-03-19 17:06:40 +08:00
|
|
|
OPTIONAL_BIN_PROGS="$OPTIONAL_BIN_PROGS chroot\$(EXEEXT)"
|
|
|
|
MAN="$MAN chroot.1")
|
2002-07-01 16:08:43 +08:00
|
|
|
AC_CHECK_FUNCS(gethostid,
|
2003-03-19 17:06:40 +08:00
|
|
|
OPTIONAL_BIN_PROGS="$OPTIONAL_BIN_PROGS hostid\$(EXEEXT)"
|
|
|
|
MAN="$MAN hostid.1")
|
2002-07-01 16:08:43 +08:00
|
|
|
|
|
|
|
jm_MACROS
|
|
|
|
|
2002-11-17 18:10:26 +08:00
|
|
|
AC_HEADER_TIOCGWINSZ()
|
2002-07-01 16:08:43 +08:00
|
|
|
jm_WINSIZE_IN_PTEM
|
|
|
|
|
|
|
|
# Check for SunOS statfs brokenness wrt partitions 2GB and larger.
|
|
|
|
# If <sys/vfs.h> exists and struct statfs has a member named f_spare,
|
|
|
|
# enable the work-around code in fsusage.c.
|
|
|
|
AC_MSG_CHECKING([for statfs that truncates block counts])
|
|
|
|
AC_CACHE_VAL(fu_cv_sys_truncating_statfs,
|
2002-11-17 18:10:26 +08:00
|
|
|
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
2002-07-01 16:08:43 +08:00
|
|
|
#if !defined(sun) && !defined(__sun)
|
|
|
|
choke -- this is a workaround for a Sun-specific problem
|
|
|
|
#endif
|
|
|
|
#include <sys/types.h>
|
2002-11-17 18:10:26 +08:00
|
|
|
#include <sys/vfs.h>]],
|
|
|
|
[[struct statfs t; long c = *(t.f_spare);]])],
|
|
|
|
[fu_cv_sys_truncating_statfs=yes],
|
|
|
|
[fu_cv_sys_truncating_statfs=no])])
|
2002-07-01 16:08:43 +08:00
|
|
|
if test $fu_cv_sys_truncating_statfs = yes; then
|
|
|
|
AC_DEFINE(STATFS_TRUNCATES_BLOCK_COUNTS, 1,
|
|
|
|
[ Define if the block counts reported by statfs may be truncated to 2GB
|
|
|
|
and the correct values may be stored in the f_spare array.
|
|
|
|
(SunOS 4.1.2, 4.1.3, and 4.1.3_U1 are reported to have this problem.
|
|
|
|
SunOS 4.1.1 seems not to be affected.)])
|
|
|
|
fi
|
|
|
|
AC_MSG_RESULT($fu_cv_sys_truncating_statfs)
|
|
|
|
|
|
|
|
AC_MSG_CHECKING(whether localtime caches TZ)
|
|
|
|
AC_CACHE_VAL(utils_cv_localtime_cache,
|
|
|
|
[if test x$ac_cv_func_tzset = xyes; then
|
2002-11-17 18:10:26 +08:00
|
|
|
AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <time.h>
|
2002-07-01 16:08:43 +08:00
|
|
|
#if STDC_HEADERS
|
|
|
|
# include <stdlib.h>
|
|
|
|
#endif
|
|
|
|
extern char **environ;
|
|
|
|
unset_TZ ()
|
|
|
|
{
|
|
|
|
char **from, **to;
|
|
|
|
for (to = from = environ; (*to = *from); from++)
|
|
|
|
if (! (to[0][0] == 'T' && to[0][1] == 'Z' && to[0][2] == '='))
|
|
|
|
to++;
|
|
|
|
}
|
|
|
|
main()
|
|
|
|
{
|
|
|
|
time_t now = time ((time_t *) 0);
|
|
|
|
int hour_GMT0, hour_unset;
|
|
|
|
if (putenv ("TZ=GMT0") != 0)
|
|
|
|
exit (1);
|
|
|
|
hour_GMT0 = localtime (&now)->tm_hour;
|
|
|
|
unset_TZ ();
|
|
|
|
hour_unset = localtime (&now)->tm_hour;
|
|
|
|
if (putenv ("TZ=PST8") != 0)
|
|
|
|
exit (1);
|
|
|
|
if (localtime (&now)->tm_hour == hour_GMT0)
|
|
|
|
exit (1);
|
|
|
|
unset_TZ ();
|
|
|
|
if (localtime (&now)->tm_hour != hour_unset)
|
|
|
|
exit (1);
|
|
|
|
exit (0);
|
2002-11-17 18:10:26 +08:00
|
|
|
}]])],
|
|
|
|
[utils_cv_localtime_cache=no],
|
|
|
|
[utils_cv_localtime_cache=yes],
|
2002-07-01 16:08:43 +08:00
|
|
|
[# If we have tzset, assume the worst when cross-compiling.
|
|
|
|
utils_cv_localtime_cache=yes])
|
|
|
|
else
|
|
|
|
# If we lack tzset, report that localtime does not cache TZ,
|
|
|
|
# since we can't invalidate the cache if we don't have tzset.
|
|
|
|
utils_cv_localtime_cache=no
|
|
|
|
fi])dnl
|
|
|
|
AC_MSG_RESULT($utils_cv_localtime_cache)
|
|
|
|
if test $utils_cv_localtime_cache = yes; then
|
|
|
|
AC_DEFINE(LOCALTIME_CACHE, 1, [FIXME])
|
|
|
|
fi
|
|
|
|
|
|
|
|
# SCO-ODT-3.0 is reported to need -los to link programs using initgroups
|
|
|
|
AC_CHECK_FUNCS(initgroups)
|
|
|
|
if test $ac_cv_func_initgroups = no; then
|
|
|
|
AC_CHECK_LIB(os, initgroups)
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_CHECK_FUNCS(syslog)
|
|
|
|
if test $ac_cv_func_syslog = no; then
|
|
|
|
# syslog is not in the default libraries. See if it's in some other.
|
|
|
|
for lib in bsd socket inet; do
|
|
|
|
AC_CHECK_LIB($lib, syslog, [AC_DEFINE(HAVE_SYSLOG, 1, [FIXME])
|
|
|
|
LIBS="$LIBS -l$lib"; break])
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_MSG_CHECKING(for 3-argument setpriority function)
|
|
|
|
AC_CACHE_VAL(utils_cv_func_setpriority,
|
2002-11-17 18:10:26 +08:00
|
|
|
[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <sys/time.h>
|
|
|
|
#include <sys/resource.h>]], [[setpriority(0, 0, 0);]])],
|
|
|
|
[utils_cv_func_setpriority=yes],
|
|
|
|
[utils_cv_func_setpriority=no])])
|
2002-07-01 16:08:43 +08:00
|
|
|
AC_MSG_RESULT($utils_cv_func_setpriority)
|
|
|
|
if test $utils_cv_func_setpriority = yes; then
|
2003-03-19 17:06:40 +08:00
|
|
|
OPTIONAL_BIN_PROGS="$OPTIONAL_BIN_PROGS nice\$(EXEEXT)"
|
2002-07-01 16:08:43 +08:00
|
|
|
OPTIONAL_BIN_ZCRIPTS="$OPTIONAL_BIN_ZCRIPTS nohup"
|
|
|
|
MAN="$MAN nice.1 nohup.1"
|
|
|
|
else
|
|
|
|
AC_MSG_CHECKING(for nice function)
|
|
|
|
AC_CACHE_VAL(utils_cv_func_nice,
|
2002-11-17 18:10:26 +08:00
|
|
|
[AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[nice();]])],
|
|
|
|
[utils_cv_func_nice=yes],
|
|
|
|
[utils_cv_func_nice=no])])
|
2002-07-01 16:08:43 +08:00
|
|
|
AC_MSG_RESULT($utils_cv_func_nice)
|
|
|
|
if test $utils_cv_func_nice = yes; then
|
|
|
|
AC_DEFINE(NICE_PRIORITY, 1, [FIXME])
|
2003-03-19 17:06:40 +08:00
|
|
|
OPTIONAL_BIN_PROGS="$OPTIONAL_BIN_PROGS nice\$(EXEEXT)"
|
2002-07-01 16:08:43 +08:00
|
|
|
OPTIONAL_BIN_ZCRIPTS="$OPTIONAL_BIN_ZCRIPTS nohup"
|
|
|
|
MAN="$MAN nice.1 nohup.1"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_DEFUN(jm_DUMMY_1,
|
|
|
|
[
|
|
|
|
AC_REQUIRE([jm_PREREQ_READUTMP])
|
|
|
|
if test $ac_cv_header_utmp_h = yes || test $ac_cv_header_utmpx_h = yes; then
|
2003-03-19 17:06:40 +08:00
|
|
|
OPTIONAL_BIN_PROGS="$OPTIONAL_BIN_PROGS pinky\$(EXEEXT)"
|
|
|
|
OPTIONAL_BIN_PROGS="$OPTIONAL_BIN_PROGS users\$(EXEEXT)"
|
|
|
|
OPTIONAL_BIN_PROGS="$OPTIONAL_BIN_PROGS who\$(EXEEXT)"
|
2002-07-01 16:08:43 +08:00
|
|
|
MAN="$MAN pinky.1 users.1 who.1"
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
jm_DUMMY_1
|
|
|
|
|
|
|
|
AC_MSG_CHECKING(ut_host in struct utmp)
|
|
|
|
AC_CACHE_VAL(su_cv_func_ut_host_in_utmp,
|
2002-11-17 18:10:26 +08:00
|
|
|
[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
|
|
|
|
#include <utmp.h>]], [[struct utmp ut; ut.ut_host;]])],
|
|
|
|
[su_cv_func_ut_host_in_utmp=yes],
|
|
|
|
[su_cv_func_ut_host_in_utmp=no])])
|
2002-07-01 16:08:43 +08:00
|
|
|
AC_MSG_RESULT($su_cv_func_ut_host_in_utmp)
|
|
|
|
if test $su_cv_func_ut_host_in_utmp = yes; then
|
|
|
|
have_ut_host=1
|
|
|
|
AC_DEFINE(HAVE_UT_HOST, 1, [FIXME])
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test -z "$have_ut_host"; then
|
|
|
|
AC_MSG_CHECKING(ut_host in struct utmpx)
|
|
|
|
AC_CACHE_VAL(su_cv_func_ut_host_in_utmpx,
|
2002-11-17 18:10:26 +08:00
|
|
|
[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
|
|
|
|
#include <utmpx.h>]], [[struct utmpx ut; ut.ut_host;]])],
|
|
|
|
[su_cv_func_ut_host_in_utmpx=yes],
|
|
|
|
[su_cv_func_ut_host_in_utmpx=no])])
|
2002-07-01 16:08:43 +08:00
|
|
|
AC_MSG_RESULT($su_cv_func_ut_host_in_utmpx)
|
|
|
|
if test $su_cv_func_ut_host_in_utmpx = yes; then
|
|
|
|
AC_DEFINE(HAVE_UTMPX_H, 1, [FIXME])
|
|
|
|
AC_DEFINE(HAVE_UT_HOST, 1, [FIXME])
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2002-07-17 18:49:46 +08:00
|
|
|
GNULIB_BOOT_TIME(
|
2003-03-19 17:06:40 +08:00
|
|
|
[OPTIONAL_BIN_PROGS="$OPTIONAL_BIN_PROGS uptime\$(EXEEXT)"
|
|
|
|
MAN="$MAN uptime.1"])
|
2002-07-01 16:08:43 +08:00
|
|
|
|
2002-11-17 18:10:26 +08:00
|
|
|
AC_SYS_POSIX_TERMIOS()
|
2002-07-01 16:08:43 +08:00
|
|
|
jm_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL
|
|
|
|
|
2002-08-05 20:21:42 +08:00
|
|
|
if test $ac_cv_sys_posix_termios = yes; then
|
2003-03-19 17:06:40 +08:00
|
|
|
OPTIONAL_BIN_PROGS="$OPTIONAL_BIN_PROGS stty\$(EXEEXT)" MAN="$MAN stty.1"
|
2002-07-01 16:08:43 +08:00
|
|
|
|
|
|
|
AC_MSG_CHECKING(whether termios.h needs _XOPEN_SOURCE)
|
|
|
|
AC_CACHE_VAL(su_cv_sys_termios_needs_xopen_source,
|
|
|
|
[AC_EGREP_CPP(yes, [#include <termios.h>
|
|
|
|
#ifdef IUCLC
|
|
|
|
yes
|
|
|
|
#endif], su_cv_sys_termios_needs_xopen_source=no,
|
|
|
|
AC_EGREP_CPP(yes, [#define _XOPEN_SOURCE
|
|
|
|
#include <termios.h>
|
|
|
|
#ifdef IUCLC
|
|
|
|
yes
|
|
|
|
#endif], su_cv_sys_termios_needs_xopen_source=yes,
|
|
|
|
su_cv_sys_termios_needs_xopen_source=no))])
|
|
|
|
AC_MSG_RESULT($su_cv_sys_termios_needs_xopen_source)
|
|
|
|
test $su_cv_sys_termios_needs_xopen_source = yes &&
|
|
|
|
AC_DEFINE(TERMIOS_NEEDS_XOPEN_SOURCE, 1, [FIXME])
|
|
|
|
|
|
|
|
AC_MSG_CHECKING(c_line in struct termios)
|
|
|
|
AC_CACHE_VAL(su_cv_sys_c_line_in_termios,
|
2002-11-17 18:10:26 +08:00
|
|
|
[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#if TERMIOS_NEEDS_XOPEN_SOURCE
|
2002-07-01 16:08:43 +08:00
|
|
|
#define _XOPEN_SOURCE
|
|
|
|
#endif
|
|
|
|
#include <sys/types.h>
|
2002-11-17 18:10:26 +08:00
|
|
|
#include <termios.h>]], [[struct termios t; t.c_line;]])],
|
|
|
|
[su_cv_sys_c_line_in_termios=yes],
|
|
|
|
[su_cv_sys_c_line_in_termios=no])])
|
2002-07-01 16:08:43 +08:00
|
|
|
AC_MSG_RESULT($su_cv_sys_c_line_in_termios)
|
2002-11-17 18:10:26 +08:00
|
|
|
test $su_cv_sys_c_line_in_termios = yes \
|
|
|
|
&& AC_DEFINE(HAVE_C_LINE, 1, [FIXME])
|
2002-07-01 16:08:43 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
# FIXME: note that this macro appears above, too.
|
|
|
|
# I'm leaving it here for now. This whole thing needs to be modernized...
|
|
|
|
jm_WINSIZE_IN_PTEM
|
|
|
|
|
|
|
|
jm_HEADER_TIOCGWINSZ_IN_TERMIOS_H
|
|
|
|
|
|
|
|
if test $jm_cv_sys_tiocgwinsz_needs_termios_h = no && \
|
|
|
|
test $jm_cv_sys_tiocgwinsz_needs_sys_ioctl_h = no; then
|
|
|
|
AC_MSG_CHECKING(TIOCGWINSZ in sys/pty.h)
|
|
|
|
AC_CACHE_VAL(su_cv_sys_tiocgwinsz_in_sys_pty_h,
|
2002-11-17 18:10:26 +08:00
|
|
|
[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
|
2002-07-01 16:08:43 +08:00
|
|
|
#ifdef WINSIZE_IN_PTEM
|
|
|
|
# include <sys/stream.h>
|
|
|
|
# include <sys/ptem.h>
|
|
|
|
#endif
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/tty.h>
|
2002-11-17 18:10:26 +08:00
|
|
|
#include <sys/pty.h>]], [[int x = TIOCGWINSZ;]])],
|
|
|
|
[su_cv_sys_tiocgwinsz_in_sys_pty_h=yes],
|
|
|
|
[su_cv_sys_tiocgwinsz_in_sys_pty_h=no])])
|
2002-07-01 16:08:43 +08:00
|
|
|
AC_MSG_RESULT($su_cv_sys_tiocgwinsz_in_sys_pty_h)
|
|
|
|
|
|
|
|
test $su_cv_sys_tiocgwinsz_in_sys_pty_h = yes \
|
|
|
|
&& AC_DEFINE(GWINSZ_IN_SYS_PTY, 1,
|
|
|
|
[Define if your system defines TIOCGWINSZ in sys/pty.h.])
|
|
|
|
fi
|
|
|
|
|
|
|
|
# For src/kill.c.
|
|
|
|
AC_CHECK_DECLS([strsignal, strtoimax, sys_siglist, _sys_siglist])
|
|
|
|
|
|
|
|
jm_LIB_CHECK
|
|
|
|
|
2002-09-20 16:18:39 +08:00
|
|
|
AM_GNU_GETTEXT([external], [need-ngettext])
|
2002-11-17 18:10:26 +08:00
|
|
|
AM_GNU_GETTEXT_VERSION(0.11.5)
|
2002-07-01 16:08:43 +08:00
|
|
|
|
|
|
|
AC_CONFIG_FILES(
|
|
|
|
Makefile
|
|
|
|
doc/Makefile
|
|
|
|
lib/Makefile
|
|
|
|
man/Makefile
|
|
|
|
m4/Makefile
|
|
|
|
po/Makefile.in
|
|
|
|
src/Makefile
|
|
|
|
tests/Makefile
|
|
|
|
tests/basename/Makefile
|
|
|
|
tests/chgrp/Makefile
|
|
|
|
tests/chmod/Makefile
|
|
|
|
tests/chown/Makefile
|
|
|
|
tests/cp/Makefile
|
|
|
|
tests/cut/Makefile
|
|
|
|
tests/date/Makefile
|
|
|
|
tests/dd/Makefile
|
|
|
|
tests/dircolors/Makefile
|
|
|
|
tests/du/Makefile
|
|
|
|
tests/expr/Makefile
|
|
|
|
tests/factor/Makefile
|
|
|
|
tests/fmt/Makefile
|
|
|
|
tests/head/Makefile
|
|
|
|
tests/install/Makefile
|
|
|
|
tests/join/Makefile
|
|
|
|
tests/ln/Makefile
|
|
|
|
tests/ls-2/Makefile
|
|
|
|
tests/ls/Makefile
|
|
|
|
tests/md5sum/Makefile
|
|
|
|
tests/misc/Makefile
|
|
|
|
tests/mkdir/Makefile
|
|
|
|
tests/mv/Makefile
|
|
|
|
tests/od/Makefile
|
|
|
|
tests/pr/Makefile
|
|
|
|
tests/rm/Makefile
|
|
|
|
tests/rmdir/Makefile
|
|
|
|
tests/seq/Makefile
|
|
|
|
tests/sha1sum/Makefile
|
|
|
|
tests/shred/Makefile
|
|
|
|
tests/sort/Makefile
|
|
|
|
tests/stty/Makefile
|
|
|
|
tests/sum/Makefile
|
|
|
|
tests/tac/Makefile
|
|
|
|
tests/tail-2/Makefile
|
|
|
|
tests/tail/Makefile
|
|
|
|
tests/test/Makefile
|
|
|
|
tests/touch/Makefile
|
|
|
|
tests/tr/Makefile
|
|
|
|
tests/tsort/Makefile
|
|
|
|
tests/unexpand/Makefile
|
|
|
|
tests/uniq/Makefile
|
|
|
|
tests/wc/Makefile
|
|
|
|
)
|
|
|
|
AC_OUTPUT
|