summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1994-11-03 03:56:08 +0000
committerTheodore Tso <tytso@mit.edu>1994-11-03 03:56:08 +0000
commit0812b5043cba55e183cb8d41bf04f648c128a18f (patch)
tree19d5a383a051106c1ece398f1cda5a515adfaeb4
parentba794be94f6b43e8c629734dd032bf5d080d369a (diff)
downloadkrb5-0812b5043cba55e183cb8d41bf04f648c128a18f.tar.gz
krb5-0812b5043cba55e183cb8d41bf04f648c128a18f.tar.xz
krb5-0812b5043cba55e183cb8d41bf04f648c128a18f.zip
Don't actually add the $(CPPOPTS) flags to CPPFLAGS; CPPFLAGS has them
defined already. In fact, don't define the CPPOPTS makefile variable at all; we don't need it. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4620 dc483132-0cff-0310-8789-dd5450dbe970
-rw-r--r--src/config/ChangeLog4
-rw-r--r--src/config/pre.in3
2 files changed, 5 insertions, 2 deletions
diff --git a/src/config/ChangeLog b/src/config/ChangeLog
index 517aab4604..35c88871ec 100644
--- a/src/config/ChangeLog
+++ b/src/config/ChangeLog
@@ -1,5 +1,9 @@
Wed Nov 2 21:04:18 1994 Theodore Y. Ts'o (tytso@dcl)
+ * pre.in: Don't actually add the $(CPPOPTS) flags to CPPFLAGS;
+ CPPFLAGS has them defined already. In fact, don't define
+ the CPPOPTS makefile variable at all; we don't need it.
+
* pre.in: Add support for a new --with-cppopts" value where you
can put -DXXXXX such that they are found by autoconf tests
that use run the preprocessor over header files.
diff --git a/src/config/pre.in b/src/config/pre.in
index f56abbb491..aee7a04cce 100644
--- a/src/config/pre.in
+++ b/src/config/pre.in
@@ -5,11 +5,10 @@ BUILDTOP = @BUILDTOP@
srcdir = @srcdir@
VPATH = @srcdir@
-CPPFLAGS = @CPPFLAGS@ $(CPPOPTS)
+CPPFLAGS = @CPPFLAGS@
DEFS = @DEFS@ $(CPPFLAGS)
CC = @CC@
CCOPTS = @CCOPTS@
-CPPOPTS = @CPPOPTS@
LIBS = @LIBS@
KRB5ROOT= @KRB5ROOT@
KRB4=@KRB4@