From: Geoff Thorpe Date: Mon, 19 Apr 2004 18:19:24 +0000 (+0000) Subject: When generating dependencies in the makefiles, generate the reduced X-Git-Tag: BEN_FIPS_TEST_6~14^2~294 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0fc07a0f9c6756b30fa369f9d618bd39c27bd0e1;p=oweals%2Fopenssl.git When generating dependencies in the makefiles, generate the reduced dependencies of the OPENSSL_NO_DEPRECATED mode. This prevents dependencies being reproduced for "deprecated" header behaviour when a developer doesn't define the symbol (with the subsequent CVS wars that can ensue). --- diff --git a/Makefile.org b/Makefile.org index 46a491851f..566a412268 100644 --- a/Makefile.org +++ b/Makefile.org @@ -409,7 +409,7 @@ depend: do \ if [ -d "$$i" ]; then \ (cd $$i && echo "making dependencies $$i..." && \ - $(MAKE) SDIRS='${SDIRS}' CFLAG='${CFLAG}' DEPFLAG='${DEPFLAG}' MAKEDEPPROG='${MAKEDEPPROG}' KRB5_INCLUDES='${KRB5_INCLUDES}' PERL='${PERL}' depend ) || exit 1; \ + $(MAKE) SDIRS='${SDIRS}' CFLAG='-DOPENSSL_NO_DEPRECATED ${CFLAG}' DEPFLAG='${DEPFLAG}' MAKEDEPPROG='${MAKEDEPPROG}' KRB5_INCLUDES='${KRB5_INCLUDES}' PERL='${PERL}' depend ) || exit 1; \ fi; \ done;