From: Richard Levitte Date: Thu, 11 Feb 2016 11:28:26 +0000 (+0100) Subject: Add inclusion directory crypto/include for BN compilations X-Git-Tag: OpenSSL_1_1_0-pre3~101 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=5caef3b5028599958bfddbdb86ea4f47df9f315b;hp=d94c444bcdc12f63ed122fa7ad0d1b71fa319ce7 Add inclusion directory crypto/include for BN compilations Some files in crypto/bn depend on internal/bn_conf.h, and so does test/bntest. Therefore, we add another inclusion directory. Reviewed-by: Rich Salz --- diff --git a/crypto/bn/build.info b/crypto/bn/build.info index 66f62dcac9..bb410f271e 100644 --- a/crypto/bn/build.info +++ b/crypto/bn/build.info @@ -1,3 +1,4 @@ +{- use File::Spec::Functions qw/catdir rel2abs/; -} LIBS=../../libcrypto SOURCE[../../libcrypto]=\ bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mul.c bn_mod.c \ @@ -6,6 +7,7 @@ SOURCE[../../libcrypto]=\ {- $target{bn_asm_src} -} \ bn_recp.c bn_mont.c bn_mpi.c bn_exp2.c bn_gf2m.c bn_nist.c \ bn_depr.c bn_const.c bn_x931p.c bn_intern.c bn_dh.c bn_srp.c +INCLUDE[../../libcrypto]={- rel2abs(catdir($builddir,"..","..","crypto","include")) -} BEGINRAW[Makefile] ##### BN assembler implementations diff --git a/test/build.info b/test/build.info index bf9feadf8c..a32169220a 100644 --- a/test/build.info +++ b/test/build.info @@ -20,7 +20,7 @@ INCLUDE[nptest]={- rel2abs(catdir($builddir,"../include")) -} ../include DEPEND[nptest]=../libcrypto SOURCE[bntest]=bntest.c -INCLUDE[bntest]={- rel2abs(catdir($builddir,"../include")) -} .. ../crypto/include ../include +INCLUDE[bntest]={- rel2abs(catdir($builddir,"../crypto/include")) -} {- rel2abs(catdir($builddir,"../include")) -} .. ../crypto/include ../include DEPEND[bntest]=../libcrypto SOURCE[ectest]=ectest.c