167ee94810f139f49d180b621f16f9c907c8e430
Hanno Böck openssl update

Hanno Böck authored 8 years ago

1) https://rt.openssl.org/Ticket/Display.html?id=2084&user=guest&pass=guest
2) https://rt.openssl.org/Ticket/Display.html?id=3738&user=guest&pass=guest
Hanno Böck openssl update

Hanno Böck authored 9 years ago

3) 
4) --- openssl-1.0.2a/crypto/Makefile
5) +++ openssl-1.0.2a/crypto/Makefile
6) @@ -85,11 +85,11 @@
7)  	@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
8)  
9)  subdirs:
10) -	@target=all; $(RECURSIVE_MAKE)
11) +	+@target=all; $(RECURSIVE_MAKE)
12)  
13)  files:
14)  	$(PERL) $(TOP)/util/files.pl "CPUID_OBJ=$(CPUID_OBJ)" Makefile >> $(TOP)/MINFO
15) -	@target=files; $(RECURSIVE_MAKE)
16) +	+@target=files; $(RECURSIVE_MAKE)
17)  
18)  links:
19)  	@$(PERL) $(TOP)/util/mklink.pl ../include/openssl $(EXHEADER)
20) @@ -100,7 +100,7 @@
21)  # lib: $(LIB): are splitted to avoid end-less loop
22)  lib:	$(LIB)
23)  	@touch lib
24) -$(LIB):	$(LIBOBJ)
25) +$(LIB):	$(LIBOBJ) | subdirs
26)  	$(AR) $(LIB) $(LIBOBJ)
27)  	test -z "$(FIPSLIBDIR)" || $(AR) $(LIB) $(FIPSLIBDIR)fipscanister.o
28)  	$(RANLIB) $(LIB) || echo Never mind.
29) @@ -111,7 +111,7 @@
30)  	fi
31)  
32)  libs:
33) -	@target=lib; $(RECURSIVE_MAKE)
34) +	+@target=lib; $(RECURSIVE_MAKE)
35)  
36)  install:
37)  	@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
38) @@ -120,7 +120,7 @@
39)  	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
40)  	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
41)  	done;
42) -	@target=install; $(RECURSIVE_MAKE)
43) +	+@target=install; $(RECURSIVE_MAKE)
44)  
45)  lint:
46)  	@target=lint; $(RECURSIVE_MAKE)
47) --- openssl-1.0.2a/engines/Makefile
48) +++ openssl-1.0.2a/engines/Makefile
49) @@ -72,7 +72,7 @@
50)  
51)  all:	lib subdirs
52)  
53) -lib:	$(LIBOBJ)
54) +lib:	$(LIBOBJ) | subdirs
55)  	@if [ -n "$(SHARED_LIBS)" ]; then \
56)  		set -e; \
57)  		for l in $(LIBNAMES); do \
58) @@ -89,7 +89,7 @@
59)  
60)  subdirs:
61)  	echo $(EDIRS)
62) -	@target=all; $(RECURSIVE_MAKE)
63) +	+@target=all; $(RECURSIVE_MAKE)
64)  
65)  files:
66)  	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
67) @@ -128,7 +128,7 @@
68)  			  mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx ); \
69)  		done; \
70)  	fi
71) -	@target=install; $(RECURSIVE_MAKE)
72) +	+@target=install; $(RECURSIVE_MAKE)
73)  
74)  tags:
75)  	ctags $(SRC)
76) --- openssl-1.0.2a/Makefile.org
77) +++ openssl-1.0.2a/Makefile.org
78) @@ -274,17 +274,17 @@
79)  build_libs: build_crypto build_ssl build_engines
80)  
81)  build_crypto:
82) -	@dir=crypto; target=all; $(BUILD_ONE_CMD)
83) +	+@dir=crypto; target=all; $(BUILD_ONE_CMD)
Hanno Böck openssl update

Hanno Böck authored 8 years ago

84) -build_ssl:
Hanno Böck openssl update

Hanno Böck authored 9 years ago

85) +build_ssl: build_crypto
Hanno Böck openssl update

Hanno Böck authored 8 years ago

86) -	@dir=ssl; target=all; $(BUILD_ONE_CMD)
Hanno Böck openssl update

Hanno Böck authored 9 years ago

87) +	+@dir=ssl; target=all; $(BUILD_ONE_CMD)
Hanno Böck openssl update

Hanno Böck authored 8 years ago

88) -build_engines:
Hanno Böck openssl update

Hanno Böck authored 9 years ago

89) +build_engines: build_crypto
Hanno Böck openssl update

Hanno Böck authored 8 years ago

90) -	@dir=engines; target=all; $(BUILD_ONE_CMD)
Hanno Böck openssl update

Hanno Böck authored 9 years ago

91) +	+@dir=engines; target=all; $(BUILD_ONE_CMD)
Hanno Böck openssl update

Hanno Böck authored 8 years ago

92) -build_apps:
Hanno Böck openssl update

Hanno Böck authored 9 years ago

93) +build_apps: build_libs
Hanno Böck openssl update

Hanno Böck authored 8 years ago

94) -	@dir=apps; target=all; $(BUILD_ONE_CMD)
Hanno Böck openssl update

Hanno Böck authored 9 years ago

95) +	+@dir=apps; target=all; $(BUILD_ONE_CMD)
Hanno Böck openssl update

Hanno Böck authored 8 years ago

96) -build_tests:
Hanno Böck openssl update

Hanno Böck authored 9 years ago

97) +build_tests: build_libs
Hanno Böck openssl update

Hanno Böck authored 8 years ago

98) -	@dir=test; target=all; $(BUILD_ONE_CMD)
Hanno Böck openssl update

Hanno Böck authored 9 years ago

99) +	+@dir=test; target=all; $(BUILD_ONE_CMD)
Hanno Böck openssl update

Hanno Böck authored 8 years ago

100) -build_tools:
Hanno Böck openssl update

Hanno Böck authored 9 years ago

101) +build_tools: build_libs
Hanno Böck openssl update

Hanno Böck authored 8 years ago

102) -	@dir=tools; target=all; $(BUILD_ONE_CMD)
Hanno Böck openssl update

Hanno Böck authored 9 years ago

103) +	+@dir=tools; target=all; $(BUILD_ONE_CMD)
104)  
105)  all_testapps: build_libs build_testapps
106)  build_testapps:
Hanno Böck openssl update

Hanno Böck authored 8 years ago

107) @@ -555,7 +555,7 @@