[postgis-tickets] r14419 - script hack only applies to json 0.9 (not newer json which we now use for building)
Regina Obe
lr at pcorp.us
Mon Nov 23 21:03:42 PST 2015
Author: robe
Date: 2015-11-23 21:03:41 -0800 (Mon, 23 Nov 2015)
New Revision: 14419
Modified:
buildbots/windows/mingw64/scripts/build_postgis.sh
Log:
script hack only applies to json 0.9 (not newer json which we now use for building)
Modified: buildbots/windows/mingw64/scripts/build_postgis.sh
===================================================================
--- buildbots/windows/mingw64/scripts/build_postgis.sh 2015-11-23 20:59:59 UTC (rev 14418)
+++ buildbots/windows/mingw64/scripts/build_postgis.sh 2015-11-24 05:03:41 UTC (rev 14419)
@@ -136,8 +136,8 @@
fi;
#make clean
##hack to get around boolean incompatibility now only needed for 2.0 (no longer for 2.1)
-if [ "$POSTGIS_MINOR_VERSION" == "0" ] ; then
-cp ${MINGPROJECTS}/json-c/rel-${JSON_VER}w${OS_BUILD}${GCC_TYPE}/include/json/json_object.h.for_compile ${MINGPROJECTS}/json-c/rel-${JSON_VER}w${OS_BUILD}${GCC_TYPE}/include/json/json_object.h
+if [ "$JSON_VER" == "0.9" ] ; then
+ cp ${MINGPROJECTS}/json-c/rel-${JSON_VER}w${OS_BUILD}${GCC_TYPE}/include/json/json_object.h.for_compile ${MINGPROJECTS}/json-c/rel-${JSON_VER}w${OS_BUILD}${GCC_TYPE}/include/json/json_object.h
fi;
make && make install
More information about the postgis-tickets
mailing list