[openssl-commits] [openssl] OpenSSL_1_0_2-stable update
Richard Levitte
levitte at openssl.org
Wed Jun 10 00:13:22 UTC 2015
The branch OpenSSL_1_0_2-stable has been updated
via 80d586d97f4e8cd80d0f0c4152617250d261948d (commit)
via cbfec68a79a327e1ec177f09d960df0fa2e09529 (commit)
from 31909e796878a8f546b290916e5bb53fbbfc91f4 (commit)
- Log -----------------------------------------------------------------
commit 80d586d97f4e8cd80d0f0c4152617250d261948d
Author: Richard Levitte <levitte at openssl.org>
Date: Tue Jun 9 23:06:23 2015 +0200
When making libcrypto from apps or test, make sure to include engines
For librypto to be complete, the stuff in both crypto/ and engines/
have to be built. Doing 'make test' or 'make apps' from a clean
source tree failed to do so.
Corrected by using the new 'build_libcrypto' in the top Makefile.
Reviewed-by: Tim Hudson <tjh at openssl.org>
(cherry picked from commit acaff3b797f50a0a0e17a0be45b7fafad962004e)
commit cbfec68a79a327e1ec177f09d960df0fa2e09529
Author: Richard Levitte <levitte at openssl.org>
Date: Wed Jun 10 01:34:26 2015 +0200
Add and rearrange building of libraries
There's a need for a target that will build all of libcrypto, so let's
add 'build_libcrypto' that does this. For ortogonality, let's also
add 'build_libssl'. Have both also depend on 'libcrypto.pc' and
'libssl.pc' so those get built together with the libraries.
This makes 'all' depend on fewer things directly.
Reviewed-by: Tim Hudson <tjh at openssl.org>
(cherry picked from commit 177b5f9c82e1152d6ce20a83556db629697fff65)
Conflicts:
Makefile.org
-----------------------------------------------------------------------
Summary of changes:
Makefile.org | 7 +++++--
apps/Makefile | 4 ++--
test/Makefile | 4 ++--
3 files changed, 9 insertions(+), 6 deletions(-)
diff --git a/Makefile.org b/Makefile.org
index 0b2b72d..9f4faae 100644
--- a/Makefile.org
+++ b/Makefile.org
@@ -185,7 +185,7 @@ WTARFILE= $(NAME)-win.tar
EXHEADER= e_os2.h
HEADER= e_os.h
-all: Makefile build_all openssl.pc libssl.pc libcrypto.pc
+all: Makefile build_all
# as we stick to -e, CLEARENV ensures that local variables in lower
# Makefiles remain local and variable. $${VAR+VAR} is tribute to Korn
@@ -271,7 +271,10 @@ reflect:
sub_all: build_all
build_all: build_libs build_apps build_tests build_tools
-build_libs: build_crypto build_ssl build_engines
+build_libs: build_libcrypto build_libssl openssl.pc
+
+build_libcrypto: build_crypto build_engines libcrypto.pc
+build_libssl: build_ssl libssl.pc
build_crypto:
@dir=crypto; target=all; $(BUILD_ONE_CMD)
diff --git a/apps/Makefile b/apps/Makefile
index a6c9d54..64c3baa 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -147,10 +147,10 @@ clean:
rm -f req
$(DLIBSSL):
- (cd ..; $(MAKE) DIRS=ssl all)
+ (cd ..; $(MAKE) build_libssl)
$(DLIBCRYPTO):
- (cd ..; $(MAKE) DIRS=crypto all)
+ (cd ..; $(MAKE) build_libcrypto)
$(EXE): progs.h $(E_OBJ) $(PROGRAM).o $(DLIBCRYPTO) $(DLIBSSL)
$(RM) $(EXE)
diff --git a/test/Makefile b/test/Makefile
index 1b65d4e..a570fad 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -369,10 +369,10 @@ clean:
rm -f .rnd tmp.bntest tmp.bctest *.o *.obj *.dll lib tags core .pure .nfs* *.old *.bak fluff $(EXE) *.ss *.srl log dummytest
$(DLIBSSL):
- (cd ..; $(MAKE) DIRS=ssl all)
+ (cd ..; $(MAKE) build_libssl)
$(DLIBCRYPTO):
- (cd ..; $(MAKE) DIRS=crypto all)
+ (cd ..; $(MAKE) build_libcrypto)
BUILD_CMD=shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \
shlib_target="$(SHLIB_TARGET)"; \
More information about the openssl-commits
mailing list