From 1259053c2382ec77c80b07385a1e59f751d54034 Mon Sep 17 00:00:00 2001 From: Theodore Tso Date: Thu, 3 Nov 1994 02:05:05 +0000 Subject: 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. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4616 dc483132-0cff-0310-8789-dd5450dbe970 --- src/config/ChangeLog | 6 ++++++ src/config/pre.in | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) (limited to 'src/config') diff --git a/src/config/ChangeLog b/src/config/ChangeLog index c457c1ace..517aab460 100644 --- a/src/config/ChangeLog +++ b/src/config/ChangeLog @@ -1,3 +1,9 @@ +Wed Nov 2 21:04:18 1994 Theodore Y. Ts'o (tytso@dcl) + + * 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. + Tue Nov 1 14:11:57 1994 (tytso@rsx-11) * post.in (clean): Also clean up config.log, pre.out, post.out and diff --git a/src/config/pre.in b/src/config/pre.in index aee7a04cc..f56abbb49 100644 --- a/src/config/pre.in +++ b/src/config/pre.in @@ -5,10 +5,11 @@ BUILDTOP = @BUILDTOP@ srcdir = @srcdir@ VPATH = @srcdir@ -CPPFLAGS = @CPPFLAGS@ +CPPFLAGS = @CPPFLAGS@ $(CPPOPTS) DEFS = @DEFS@ $(CPPFLAGS) CC = @CC@ CCOPTS = @CCOPTS@ +CPPOPTS = @CPPOPTS@ LIBS = @LIBS@ KRB5ROOT= @KRB5ROOT@ KRB4=@KRB4@ -- cgit