[958] in Kerberos-V5-bugs
configure -silent is not very silent....
daemon@ATHENA.MIT.EDU (epeisach@MIT.EDU)
Mon Nov 14 16:31:05 1994
From: epeisach@MIT.EDU
Date: Mon, 14 Nov 1994 16:30:56 -0500
To: krb5-bugs@MIT.EDU
You get alot of messages of the form "CC defaults to cc" "CPPOTS=", etc.
(You also get messages to the effect that Makefile is being created,
etc).
The problem is the use of echo in aclocal.m4. (and elsewhere - but I
fight one battle at a time).
(I did leave one behind - dealing with the configuration with pepsy, but
hopefully that will disappear all together).
*** 1.5 1994/11/14 16:29:26
--- aclocal.m4 1994/11/14 21:26:02
***************
*** 315,323 ****
dnl
define(WITH_KRB5ROOT,[
AC_ARG_WITH([krb5-root],[set path for Kerberos V5 config files],
! echo "krb5-root is $withval"
KRB5ROOT=$withval,
! echo "krb5-root defaults to /krb5"
KRB5ROOT=/krb5)dnl
AC_SUBST(KRB5ROOT)])dnl
dnl
--- 315,323 ----
dnl
define(WITH_KRB5ROOT,[
AC_ARG_WITH([krb5-root],[set path for Kerberos V5 config files],
! AC_MSG_RESULT(krb5-root is $withval)
KRB5ROOT=$withval,
! AC_MSG_RESULT(krb5-root defaults to /krb5)
KRB5ROOT=/krb5)dnl
AC_SUBST(KRB5ROOT)])dnl
dnl
***************
*** 325,333 ****
dnl
define(WITH_KRB4,[
AC_ARG_WITH([krb4],[include Kerberos V4 support],
! echo "krb4 is $withval"
KRB4=$withval,
! echo "no krb4 support; use --with-krb4=krb4dir"
KRB4=)dnl
AC_SUBST(KRB4)])dnl
dnl
--- 325,333 ----
dnl
define(WITH_KRB4,[
AC_ARG_WITH([krb4],[include Kerberos V4 support],
! AC_MSG_RESULT(krb4 is $withval)
KRB4=$withval,
! AC_MSG_WARN(no krb4 support; use --with-krb4=krb4dir)
KRB4=)dnl
AC_SUBST(KRB4)])dnl
dnl
***************
*** 335,344 ****
dnl
define(WITH_CC,[
AC_ARG_WITH([cc],[select compiler to use],
! echo CC=$withval
CC=$withval,
if test -z "$CC" ; then CC=cc; fi
! echo CC defaults to $CC)dnl
AC_SUBST([CC])])dnl
dnl
dnl set $(CCOPTS) from --with-ccopts=value
--- 335,344 ----
dnl
define(WITH_CC,[
AC_ARG_WITH([cc],[select compiler to use],
! AC_MSG_RESULT(CC=$withval)
CC=$withval,
if test -z "$CC" ; then CC=cc; fi
! [AC_MSG_RESULT(CC defaults to $CC)])dnl
AC_SUBST([CC])])dnl
dnl
dnl set $(CCOPTS) from --with-ccopts=value
***************
*** 345,351 ****
dnl
define(WITH_CCOPTS,[
AC_ARG_WITH([ccopts],[select compiler command line options],
! echo "CCOPTS is $withval"
CCOPTS=$withval
CFLAGS="$CFLAGS $withval",
CCOPTS=)dnl
--- 345,351 ----
dnl
define(WITH_CCOPTS,[
AC_ARG_WITH([ccopts],[select compiler command line options],
! AC_MSG_RESULT("CCOPTS is $withval")
CCOPTS=$withval
CFLAGS="$CFLAGS $withval",
CCOPTS=)dnl
***************
*** 355,364 ****
dnl
define(WITH_CPPOPTS,[
AC_ARG_WITH([cppopts],[select compiler preprocessor command line options],
! echo CPPOPTS=$withval
CPPOPTS=$withval
CPPFLAGS="$CPPFLAGS $withval",
! echo CPPOPTS defaults to $CPPOPTS)dnl
AC_SUBST(CPPOPTS)])dnl
dnl
dnl Imake LinkFile rule, so they occur in the right place -- LinkFile(dst,src)
--- 355,364 ----
dnl
define(WITH_CPPOPTS,[
AC_ARG_WITH([cppopts],[select compiler preprocessor command line options],
! AC_MSG_RESULT(CPPOPTS=$withval)
CPPOPTS=$withval
CPPFLAGS="$CPPFLAGS $withval",
! [AC_MSG_RESULT(CPPOPTS defaults to $CPPOPTS)])dnl
AC_SUBST(CPPOPTS)])dnl
dnl
dnl Imake LinkFile rule, so they occur in the right place -- LinkFile(dst,src)