From: Sarah Hoffmann Date: Tue, 18 Sep 2018 20:32:30 +0000 (+0200) Subject: Merge remote-tracking branch 'upstream/master' X-Git-Tag: deploy~309 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/09935d41484d5e9ec450bb16170785849029f3da?ds=inline;hp=-c Merge remote-tracking branch 'upstream/master' --- 09935d41484d5e9ec450bb16170785849029f3da diff --combined CMakeLists.txt index 347f4d48,a7c7b395..0c6d4094 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@@ -19,7 -19,7 +19,7 @@@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_ project(nominatim) set(NOMINATIM_VERSION_MAJOR 3) - set(NOMINATIM_VERSION_MINOR 1) + set(NOMINATIM_VERSION_MINOR 2) set(NOMINATIM_VERSION_PATCH 0) set(NOMINATIM_VERSION "${NOMINATIM_VERSION_MAJOR}.${NOMINATIM_VERSION_MINOR}.${NOMINATIM_VERSION_PATCH}") @@@ -77,6 -77,16 +77,16 @@@ find_package(BZip2 REQUIRED find_package(LibXml2 REQUIRED) include_directories(${LIBXML2_INCLUDE_DIR}) + # Setting PHP binary variable as to command line (prevailing) or auto detect + if (NOT PHP_BIN) + find_program (PHP_BIN php) + endif() + # sanity check if PHP binary exists + if (NOT EXISTS ${PHP_BIN}) + message(FATAL_ERROR "PHP binary not found. Install php or provide location with -DPHP_BIN=/path/php ") + endif() + message (STATUS "Using PHP binary " ${PHP_BIN}) + #----------------------------------------------------------------------------- # # Setup settings and paths @@@ -93,14 -103,6 +103,14 @@@ set(CUSTOMFILE website/reverse.php website/search.php website/status.php + website/403.html + website/509.html + website/crossdomain.xml + website/favicon.ico + website/last_update.php + website/nominatim.xml + website/robots.txt + website/taginfo.json utils/blocks.php utils/country_languages.php utils/imports.php diff --combined utils/update.php index 4897872b,414fadb5..ad571010 --- a/utils/update.php +++ b/utils/update.php @@@ -1,4 -1,4 +1,4 @@@ - #!/usr/bin/php -Cq + #!@PHP_BIN@ -Cq