You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by cs...@apache.org on 2017/12/18 17:17:12 UTC

svn commit: r1818594 - /tomcat/native/trunk/download_deps.sh

Author: csutherl
Date: Mon Dec 18 17:17:12 2017
New Revision: 1818594

URL: http://svn.apache.org/viewvc?rev=1818594&view=rev
Log:
Update download_deps.sh. Links were outdated and produced empty directories. Also removed some of the mutliple extra blank lines.

Modified:
    tomcat/native/trunk/download_deps.sh

Modified: tomcat/native/trunk/download_deps.sh
URL: http://svn.apache.org/viewvc/tomcat/native/trunk/download_deps.sh?rev=1818594&r1=1818593&r2=1818594&view=diff
==============================================================================
--- tomcat/native/trunk/download_deps.sh (original)
+++ tomcat/native/trunk/download_deps.sh Mon Dec 18 17:17:12 2017
@@ -3,14 +3,12 @@
 # Small script to get a recent openssl, with npn support
 # Will run configure and build_libs to generate the .s files
 
-
-
 SSL=openssl-1.0.2g.tar.gz
 APR=apr-1.5.2.tar.gz
 mkdir -p deps
 
 if [ ! -f deps/$SSL ] ; then
-  curl http://openssl.org/source/$SSL -o deps/$SSL
+  curl https://www.openssl.org/source/$SSL -o deps/$SSL
 fi 
 if [ ! -d deps/src/openssl ] ; then
   mkdir -p deps/src/openssl 
@@ -22,15 +20,10 @@ fi
 
 (cd deps/src/openssl; make build_libs )
 
-  
 if [ ! -f deps/$APR ] ; then
-  curl http://mirrors.ibiblio.org/apache/apr/$APR -o deps/$APR
+  curl https://archive.apache.org/dist/apr/$APR -o deps/$APR
 fi 
 if [ ! -d deps/src/apr ] ; then
   mkdir -p deps/src/apr 
   (cd deps/src/apr; tar  -xvz --strip-components=1 -f ../../$APR)
 fi
-
-  
-  
- 



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org