From: juandon Date: Sun, 16 Feb 2003 20:14:08 +0000 (+0000) Subject: - parallel build is now possible X-Git-Tag: auto/ac/openssl-0_9_7c-1~28 X-Git-Url: http://git.pld-linux.org/?p=packages%2Fopenssl.git;a=commitdiff_plain;h=7ba7d1d4d1d7bab8a37ef7da834221db7cdf207f - parallel build is now possible Changed files: openssl-parallel_make.patch -> 1.1 --- diff --git a/openssl-parallel_make.patch b/openssl-parallel_make.patch new file mode 100644 index 0000000..cdacbcd --- /dev/null +++ b/openssl-parallel_make.patch @@ -0,0 +1,39 @@ +--- openssl-0.9.7.old/crypto/Makefile.ssl Fri Dec 20 15:28:45 2002 ++++ openssl-0.9.7/crypto/Makefile.ssl Sun Feb 16 20:02:43 2003 +@@ -50,7 +50,7 @@ + top: + @(cd ..; $(MAKE) DIRS=$(DIR) all) + +-all: buildinf.h lib subdirs shared ++all: shared + + buildinf.h: ../Makefile.ssl + ( echo "#ifndef MK1MF_BUILD"; \ +@@ -96,7 +96,7 @@ + $(RANLIB) $(LIB) || echo Never mind. + @touch lib + +-shared: ++shared: buildinf.h lib subdirs + if [ -n "$(SHARED_LIBS)" ]; then \ + (cd ..; $(MAKE) $(SHARED_LIB)); \ + fi +--- openssl-0.9.7.old/ssl/Makefile.ssl Thu Dec 19 22:10:20 2002 ++++ openssl-0.9.7/ssl/Makefile.ssl Sun Feb 16 20:03:13 2003 +@@ -55,14 +55,14 @@ + top: + (cd ..; $(MAKE) DIRS=$(DIR) all) + +-all: lib shared ++all: shared + + lib: $(LIBOBJ) + $(AR) $(LIB) $(LIBOBJ) + $(RANLIB) $(LIB) || echo Never mind. + @touch lib + +-shared: ++shared: lib + if [ -n "$(SHARED_LIBS)" ]; then \ + (cd ..; $(MAKE) $(SHARED_LIB)); \ + fi