forked from openssl/openssl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
no-stdio does not work with the apps. Since the tests also need the apps it doesn't support that either. Therefore we disable building of both. no-autoalginit is not compatible with the apps because it requires explicit loading of the algorithms, and the apps don't do that. Therefore we disable building the apps for this option. Similarly the tests depend on the apps so we also disable the tests. Finally the whole point about no-autoalginit is to avoid excessive executable sizes when doing static linking. Therefore we disable "shared" if this option is selected. Reviewed-by: Richard Levitte <[email protected]>
- Loading branch information
1 parent
c3a64b5
commit d90a6be
Showing
6 changed files
with
245 additions
and
223 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
{- use File::Spec::Functions qw/catdir rel2abs/; -} | ||
PROGRAMS=openssl | ||
SOURCE[openssl]=\ | ||
openssl.c \ | ||
asn1pars.c ca.c ciphers.c cms.c crl.c crl2p7.c dgst.c dhparam.c \ | ||
dsa.c dsaparam.c ec.c ecparam.c enc.c engine.c errstr.c gendsa.c \ | ||
genpkey.c genrsa.c nseq.c ocsp.c passwd.c pkcs12.c pkcs7.c pkcs8.c \ | ||
pkey.c pkeyparam.c pkeyutl.c prime.c rand.c req.c rsa.c rsautl.c \ | ||
s_client.c s_server.c s_time.c sess_id.c smime.c speed.c spkac.c \ | ||
srp.c ts.c verify.c version.c x509.c rehash.c \ | ||
apps.c opt.c s_cb.c s_socket.c \ | ||
app_rand.c \ | ||
{- $target{apps_aux_src} -} | ||
INCLUDE[openssl]={- rel2abs(catdir($builddir,"../include")) -} .. ../include | ||
DEPEND[openssl]=../libssl | ||
IF[{- !$disabled{apps} -}] | ||
PROGRAMS=openssl | ||
SOURCE[openssl]=\ | ||
openssl.c \ | ||
asn1pars.c ca.c ciphers.c cms.c crl.c crl2p7.c dgst.c dhparam.c \ | ||
dsa.c dsaparam.c ec.c ecparam.c enc.c engine.c errstr.c gendsa.c \ | ||
genpkey.c genrsa.c nseq.c ocsp.c passwd.c pkcs12.c pkcs7.c pkcs8.c \ | ||
pkey.c pkeyparam.c pkeyutl.c prime.c rand.c req.c rsa.c rsautl.c \ | ||
s_client.c s_server.c s_time.c sess_id.c smime.c speed.c spkac.c \ | ||
srp.c ts.c verify.c version.c x509.c rehash.c \ | ||
apps.c opt.c s_cb.c s_socket.c \ | ||
app_rand.c \ | ||
{- $target{apps_aux_src} -} | ||
INCLUDE[openssl]={- rel2abs(catdir($builddir,"../include")) -} .. ../include | ||
DEPEND[openssl]=../libssl | ||
|
||
SCRIPTS=CA.pl tsget | ||
SOURCE[CA.pl]=CA.pl.in | ||
SOURCE[tsget]=tsget.in | ||
SCRIPTS=CA.pl tsget | ||
SOURCE[CA.pl]=CA.pl.in | ||
SOURCE[tsget]=tsget.in | ||
ENDIF |
Oops, something went wrong.