e8461ee1d1
In build.info files, make the include directory in the build directory absolute, or Configure will think it should be added to the source directory top. Configure will turn it into a relative path if possible. Reviewed-by: Rich Salz <rsalz@openssl.org>
22 lines
869 B
Text
22 lines
869 B
Text
{- use File::Spec::Functions qw/:DEFAULT rel2abs/; -}
|
|
IF[{- $config{no_shared} -}]
|
|
LIBS=../libcrypto
|
|
SOURCE[../libcrypto]=\
|
|
e_padlock.c {- $target{padlock_asm_src} -} \
|
|
e_capi.c \
|
|
e_dasync.c
|
|
ELSE
|
|
ENGINES=libpadlock libcapi libdasync libossltest
|
|
SOURCE[libpadlock]=e_padlock.c {- $target{padlock_asm_src} -}
|
|
DEPEND[libpadlock]=../libcrypto
|
|
INCLUDE[libpadlock]={- rel2abs(catdir($builddir,"../include")) -} ../include
|
|
SOURCE[libcapi]=e_capi.c
|
|
DEPEND[libcapi]=../libcrypto
|
|
INCLUDE[libcapi]={- rel2abs(catdir($builddir,"../include")) -} ../include
|
|
SOURCE[libdasync]=e_dasync.c
|
|
DEPEND[libdasync]=../libcrypto
|
|
INCLUDE[libdasync]={- rel2abs(catdir($builddir,"../include")) -} ../include
|
|
SOURCE[libossltest]=e_ossltest.c
|
|
DEPEND[libossltest]=../libcrypto
|
|
INCLUDE[libossltest]={- rel2abs(catdir($builddir,"../include")) -} ../include
|
|
ENDIF
|