From: Theodore Tso Date: Thu, 3 Nov 1994 03:56:08 +0000 (+0000) Subject: Don't actually add the $(CPPOPTS) flags to CPPFLAGS; CPPFLAGS has them X-Git-Tag: krb5-1.0-beta5~1028 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0812b5043cba55e183cb8d41bf04f648c128a18f;p=krb5.git 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 --- diff --git a/src/config/ChangeLog b/src/config/ChangeLog index 517aab460..35c88871e 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 f56abbb49..aee7a04cc 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@