Support shared library builds of FIPS capable OpenSSL, add fipscanister.o
to libcrypto.a so linking to libcrypto.a works.
This commit is contained in:
parent
2a35144327
commit
a168ec1d27
15
Makefile.org
15
Makefile.org
@ -285,9 +285,20 @@ all_testapps: build_libs build_testapps
|
|||||||
build_testapps:
|
build_testapps:
|
||||||
@dir=crypto; target=testapps; $(BUILD_ONE_CMD)
|
@dir=crypto; target=testapps; $(BUILD_ONE_CMD)
|
||||||
|
|
||||||
libcrypto$(SHLIB_EXT): libcrypto.a
|
fips_premain_dso$(EXE_EXT): libcrypto.a
|
||||||
|
[ -n "$(FIPSCANLIB)" ] && $(CC) $(CFLAGS) \
|
||||||
|
-DFINGERPRINT_PREMAIN_DSO_LOAD -o $@ \
|
||||||
|
$(FIPSLIBDIR)fips_premain.c $(FIPSLIBDIR)fipscanister.o \
|
||||||
|
libcrypto.a $(EX_LIBS)
|
||||||
|
|
||||||
|
libcrypto$(SHLIB_EXT): libcrypto.a fips_premain_dso$(EXE_EXT)
|
||||||
@if [ "$(SHLIB_TARGET)" != "" ]; then \
|
@if [ "$(SHLIB_TARGET)" != "" ]; then \
|
||||||
$(MAKE) SHLIBDIRS=crypto build-shared; \
|
if [ "$(FIPSCANLIB)" = "libcrypto" ]; then \
|
||||||
|
FIPSLD_LIBCRYPTO=libcrypto.a ; \
|
||||||
|
FIPSLD_CC="$(CC)"; CC=$(FIPSDIR)bin/fipsld; \
|
||||||
|
export CC FIPSLD_CC FIPSLD_LIBCRYPTO; \
|
||||||
|
fi; \
|
||||||
|
$(MAKE) -e SHLIBDIRS=crypto build-shared; \
|
||||||
else \
|
else \
|
||||||
echo "There's no support for shared libraries on this platform" >&2; \
|
echo "There's no support for shared libraries on this platform" >&2; \
|
||||||
exit 1; \
|
exit 1; \
|
||||||
|
@ -102,6 +102,7 @@ lib: $(LIB)
|
|||||||
@touch lib
|
@touch lib
|
||||||
$(LIB): $(LIBOBJ)
|
$(LIB): $(LIBOBJ)
|
||||||
$(AR) $(LIB) $(LIBOBJ)
|
$(AR) $(LIB) $(LIBOBJ)
|
||||||
|
[ -n "$(FIPSLIBDIR)" ] && $(AR) $(LIB) $(FIPSLIBDIR)fipscanister.o
|
||||||
$(RANLIB) $(LIB) || echo Never mind.
|
$(RANLIB) $(LIB) || echo Never mind.
|
||||||
|
|
||||||
shared: buildinf.h lib subdirs
|
shared: buildinf.h lib subdirs
|
||||||
|
Loading…
x
Reference in New Issue
Block a user