From d7945a6727cfa39039434d4da63a7080a91cabcd Mon Sep 17 00:00:00 2001 From: Tom Yu Date: Mon, 3 Mar 2003 07:09:46 +0000 Subject: Remove ADD_DEF and uses thereof, and move the appropriate symbols to AC_DEFINE'ed things or to Makefile.in files. Remove explicit settings of CPPFLAGS. These allow CPPFLAGS to be a user parameter. Also, add CFLAGS to the CC_LINK variables, so they can control usage of the compiler to link programs. ticket: 677 git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15214 dc483132-0cff-0310-8789-dd5450dbe970 --- src/appl/bsd/ChangeLog | 6 ++++++ src/appl/bsd/Makefile.in | 2 +- src/appl/bsd/configure.in | 1 - 3 files changed, 7 insertions(+), 2 deletions(-) (limited to 'src/appl') diff --git a/src/appl/bsd/ChangeLog b/src/appl/bsd/ChangeLog index c7c9bdc44..0f495d62c 100644 --- a/src/appl/bsd/ChangeLog +++ b/src/appl/bsd/ChangeLog @@ -1,3 +1,9 @@ +2003-03-03 Tom Yu + + * Makefile.in (DEFINES): Add -DKERBEROS. + + * configure.in: Delete ADD_DEF. + 2003-02-05 Tom Yu * login.c (main): Don't zero out terminal window size. diff --git a/src/appl/bsd/Makefile.in b/src/appl/bsd/Makefile.in index f2933c366..0b08025c3 100644 --- a/src/appl/bsd/Makefile.in +++ b/src/appl/bsd/Makefile.in @@ -30,7 +30,7 @@ RSH= -DKRB5_PATH_RLOGIN=\"$(CLIENT_BINDIR)/rlogin\" BSD= -DUCB_RLOGIN=\"$(UCB_RLOGIN)\" \ -DUCB_RSH=\"$(UCB_RSH)\" -DUCB_RCP=\"$(UCB_RCP)\" -DEFINES = $(RSH) $(BSD) $(RPROGS) \ +DEFINES = $(RSH) $(BSD) $(RPROGS) -DKERBEROS \ -DLOGIN_PROGRAM=\"$(SERVER_BINDIR)/login.krb5\" -DKPROGDIR=\"$(CLIENT_BINDIR)\" \ -DHEIMDAL_FRIENDLY diff --git a/src/appl/bsd/configure.in b/src/appl/bsd/configure.in index 331db0346..8f4a16bd6 100644 --- a/src/appl/bsd/configure.in +++ b/src/appl/bsd/configure.in @@ -181,7 +181,6 @@ dnl K5_AC_CHECK_FILES(/etc/environment /etc/TIMEZONE) dnl dnl -ADD_DEF(-DKERBEROS) AC_C_CONST if test "$krb5_cv_build_krb4_libs" = yes; then AC_DEFINE(HAVE_KRB_GET_ERR_TEXT) -- cgit