Commit deb02194 authored by Richard Levitte's avatar Richard Levitte
Browse files

unified build scheme: give util/dofile.pl the possibility to output selectively



Under certain conditions, one might not want to output certain
sections of a template file.  This adds the functions output_off() and
output_on(), reachable inside the templates.  And example usage in a
Makefile template could be this:

	@ : {- output_off() if $config{no_shared}; "" -}
	... lines dealing with shared libraries
	@ : {- output_on() -}

Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
parent 5482dac9
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment