When generating dependencies in the makefiles, generate the reduced
authorGeoff Thorpe <geoff@openssl.org>
Mon, 19 Apr 2004 18:19:24 +0000 (18:19 +0000)
committerGeoff Thorpe <geoff@openssl.org>
Mon, 19 Apr 2004 18:19:24 +0000 (18:19 +0000)
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).

Makefile.org

index 46a491851f000a9aa35dfa4e24c8a305d1bc82dd..566a412268314c4cf2864c787531f92c2d292fff 100644 (file)
@@ -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;