1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-23 04:50:28 +02:00

* configure.in: Changed variable HOSTNAME --> PROG_HOSTNAME in

totoro kludge.
This commit is contained in:
Mikael Djurfeldt 1998-07-12 13:21:07 +00:00
parent e682159489
commit d9eb6fb749

View file

@ -75,8 +75,8 @@ fi
# totoro to include readline support regardless. This kludge should # totoro to include readline support regardless. This kludge should
# obviously be removed as fast as possible. # obviously be removed as fast as possible.
AC_CHECK_PROG(HOSTNAME, hostname, hostname) AC_CHECK_PROG(PROG_HOSTNAME, hostname, hostname)
if test "$HOSTNAME" = hostname; then if test "$PROG_HOSTNAME" = hostname; then
if test "`hostname`" = totoro.red-bean.com; then if test "`hostname`" = totoro.red-bean.com; then
AC_DEFINE(TOTORO) AC_DEFINE(TOTORO)
fi fi
@ -124,7 +124,7 @@ case "$host_os" in
;; ;;
esac esac
# On some systems usleep have no return value # On some systems usleep has no return value
AC_EGREP_HEADER(changequote(<, >)<void[ ][ ]*usleep>changequote([, ]), AC_EGREP_HEADER(changequote(<, >)<void[ ][ ]*usleep>changequote([, ]),
/usr/include/unistd.h, /usr/include/unistd.h,
AC_DEFINE(USLEEP_RETURNS_VOID) AC_DEFINE(USLEEP_RETURNS_VOID)