From 3ba1ee69810f58654a3fc82c97065af41a7dbb40 Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Tue, 20 Oct 2020 11:29:19 +0200 Subject: [PATCH] vagrant centOS: amake sure that Posgresql 12 is found --- vagrant/Install-on-Centos-8.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/vagrant/Install-on-Centos-8.sh b/vagrant/Install-on-Centos-8.sh index 268a402b..7e6a64c7 100755 --- a/vagrant/Install-on-Centos-8.sh +++ b/vagrant/Install-on-Centos-8.sh @@ -152,13 +152,14 @@ else #DOCS: fi #DOCS: # The code must be built in a separate directory. Create this directory, -# then configure and build Nominatim in there: +# then configure and build Nominatim in there. Note that you need to +# tell cmake about the more recent Postgresql version that you use: #DOCS: :::sh cd $USERHOME mkdir build cd build - cmake $USERHOME/Nominatim-3.5.2 + cmake -DPostgreSQL_ADDITIONAL_VERSIONS=12 $USERHOME/Nominatim-3.5.2 make #