[postgis-tickets] r17916 - Add missing libxml and ssl libs for windows packaging

Regina Obe lr at pcorp.us
Sun Oct 13 11:38:11 PDT 2019


Author: robe
Date: 2019-10-13 23:38:09 -0700 (Sun, 13 Oct 2019)
New Revision: 17916

Modified:
   trunk/ci/winnie/package_postgis.sh
Log:
Add missing libxml and ssl libs for windows packaging
references #3442 for PostGIS 3.1

Modified: trunk/ci/winnie/package_postgis.sh
===================================================================
--- trunk/ci/winnie/package_postgis.sh	2019-10-14 05:06:59 UTC (rev 17915)
+++ trunk/ci/winnie/package_postgis.sh	2019-10-14 06:38:09 UTC (rev 17916)
@@ -16,9 +16,9 @@
 #otherwise use the ones jenkins passes thru
 #!/bin/bash
 if  [[ "${OVERRIDE}" == '' ]] ; then
-	export GEOS_VER=3.8.0rc2
-	export GDAL_VER=2.2.4
-	export PROJ_VER=4.9.3
+	export GEOS_VER=3.8.0
+	export GDAL_VER=2.4.2
+	export PROJ_VER=5.2.0
 	export SFCGAL_VER=1.3.2
 	export CGAL_VER=4.11
 	export ICON_VER=1.15
@@ -26,7 +26,7 @@
   	export PROTOBUF_VER=3.2.0
 	export PROTOBUFC_VER=1.2.1
 	export JSON_VER=0.12
-	export PROJSO=libproj-12.dll
+	export PROJSO=libproj-13.dll
 fi;
 
 export PROTOBUF_VER=3.2.0
@@ -48,7 +48,7 @@
 
 #set to something even if override is on but not set
 if  [[ "${LIBXML_VER}" == '' ]] ; then
-  export LIBXML_VER=2.7.8
+  export LIBXML_VER=2.9.9
 fi;
 
 #set to something even if override is on but not set
@@ -144,6 +144,8 @@
 
 cp ${PGPATHEDB}/bin/ssleay32.dll $outdir/bin/postgisgui
 cp ${PGPATHEDB}/bin/libeay32.dll $outdir/bin/postgisgui
+cp ${PGPATHEDB}/bin/libcrypto-1_1-x64.dll $outdir/bin/postgisgui
+cp ${PGPATHEDB}/bin/libssl-1_1-x64.dll $outdir/bin/postgisgui
 
 cp /c/ming${OS_BUILD}${GCC_TYPE}/mingw${OS_BUILD}/bin/libstdc++-6.dll $outdir/bin
 cp /c/ming${OS_BUILD}${GCC_TYPE}/mingw${OS_BUILD}/bin/libgcc*.dll $outdir/bin
@@ -201,7 +203,7 @@
 
 echo "PROTOBUF VERSION: ${PROTOBUF_VER} https://github.com/google/protobuf" >> $verfile
 echo "PROTOBUF-C VERSION: ${PROTOBUFC_VER} https://github.com/protobuf-c/protobuf-c"  >> $verfile
-cp ${PROJECTS}/libxml/rel-libxml2-${LIBXML_VER}w${OS_BUILD}/bin/*.dll  $outdir/bin/
+cp ${PROJECTS}/libxml/rel-libxml2-${LIBXML_VER}w${OS_BUILD}${GCC_TYPE}/bin/*.dll  $outdir/bin/
 #cp ${PGPATHEDB}/bin/libxml2-2.dll   $outdir/bin/
 
 cd ${POSTGIS_SRC}



More information about the postgis-tickets mailing list