[postgis-tickets] [SCM] PostGIS branch stable-3.2 updated. 3.2.4-26-gd04d1fc9f
git at osgeo.org
git at osgeo.org
Tue May 16 08:14:10 PDT 2023
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".
The branch, stable-3.2 has been updated
via d04d1fc9f0c99ca5fce006ae43af03e7de197351 (commit)
from 76505b970ea1c91bdde2870652c4415ab359083e (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit d04d1fc9f0c99ca5fce006ae43af03e7de197351
Author: Sandro Santilli <strk at kbt.io>
Date: Tue May 16 17:13:37 2023 +0200
Use library minor version in berrie, bessie and dronie too
diff --git a/ci/berrie/postgis_regress.sh b/ci/berrie/postgis_regress.sh
index d737795f6..7711a7412 100644
--- a/ci/berrie/postgis_regress.sh
+++ b/ci/berrie/postgis_regress.sh
@@ -16,7 +16,8 @@ echo $WORKSPACE
sh autogen.sh
./configure --with-pgconfig=${PGPATH}/bin/pg_config \
--with-geosconfig=${GEOS_PATH}/bin/geos-config \
- --without-protobuf
+ --without-protobuf \
+ --with-library-minor-version
#make clean
make
export err_status=0
diff --git a/ci/bessie/postgis_regress.sh b/ci/bessie/postgis_regress.sh
index 020fe565a..7057d0649 100644
--- a/ci/bessie/postgis_regress.sh
+++ b/ci/bessie/postgis_regress.sh
@@ -1,7 +1,11 @@
#BRANCH is passed in via jenkins which is set via svn hook
export PATH=${PATH}:/usr/local:/usr/local/lib:/usr/local/bin
sh autogen.sh
-./configure --with-projdir=/usr/local --with-libiconv=/usr/local --without-interrupt-tests
+./configure \
+ --with-projdir=/usr/local \
+ --with-libiconv=/usr/local \
+ --without-interrupt-tests \
+ --with-library-minor-version
make clean
make
export PGUSER=postgres
diff --git a/ci/bessie32/postgis_regress.sh b/ci/bessie32/postgis_regress.sh
index 0d721ca43..3e0251b47 100644
--- a/ci/bessie32/postgis_regress.sh
+++ b/ci/bessie32/postgis_regress.sh
@@ -9,7 +9,19 @@ export CXXFLAGS="-O2 -pipe -fstack-protector-strong -Wl,-rpath=/usr/local/lib/g
export CFLAGS="-Wall -Wmissing-prototypes -Wpointer-arith -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-trunc"
export PATH=${PATH}:/usr/local:/usr/local/lib:/usr/local/bin
sh autogen.sh
-./configure PKG_CONFIG=/usr/local/bin/pkgconf LDFLAGS="-L/usr/local/lib" --with-libiconv-prefix=/usr/local --without-gui --without-interrupt-tests --with-topology --with-raster --with-sfcgal=/usr/local/bin/sfcgal-config --with-address-standardizer --with-protobuf --with-wagyu
+./configure \
+ PKG_CONFIG=/usr/local/bin/pkgconf \
+ LDFLAGS="-L/usr/local/lib" \
+ --with-libiconv-prefix=/usr/local \
+ --without-gui \
+ --without-interrupt-tests \
+ --with-topology \
+ --with-raster \
+ --with-sfcgal=/usr/local/bin/sfcgal-config \
+ --with-address-standardizer \
+ --with-protobuf \
+ --with-wagyu \
+ --with-library-minor-version
make
export PGUSER=postgres
diff --git a/ci/dronie/postgis_regress.sh b/ci/dronie/postgis_regress.sh
index 2f38d0210..67caf8719 100644
--- a/ci/dronie/postgis_regress.sh
+++ b/ci/dronie/postgis_regress.sh
@@ -8,7 +8,10 @@ export PGPORT=`grep ^port /etc/postgresql/$PGVER/main/postgresql.conf | awk '{pr
export PATH=/usr/lib/postgresql/$PGVER/bin:$PATH
psql --version
./autogen.sh
-./configure CFLAGS="-O2 -Wall -fno-omit-frame-pointer -Werror" --without-interrupt-tests
+./configure \
+ CFLAGS="-O2 -Wall -fno-omit-frame-pointer -Werror" \
+ --without-interrupt-tests \
+ --with-library-minor-version
make clean
make -j
# we should maybe wait for postgresql service to startup here...
-----------------------------------------------------------------------
Summary of changes:
ci/berrie/postgis_regress.sh | 3 ++-
ci/bessie/postgis_regress.sh | 6 +++++-
ci/bessie32/postgis_regress.sh | 14 +++++++++++++-
ci/dronie/postgis_regress.sh | 5 ++++-
4 files changed, 24 insertions(+), 4 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list