X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/96d2a331a1a585d2ed4bc2d70f5626e03c38dbb2..211214a8d36ce479fa5c7cf0f84f8da094b05d59:/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 4e55a8a5..d6f7d2cb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,7 +19,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/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}") @@ -53,7 +53,7 @@ link_directories(${PostgreSQL_LIBRARY_DIRS}) find_program(PYOSMIUM pyosmium-get-changes) if (NOT EXISTS "${PYOSMIUM}") - set(PYOSMIUM_PATH "/nonexistent") + set(PYOSMIUM_PATH "") message(WARNING "pyosmium-get-changes not found (required for updates)") else() set(PYOSMIUM_PATH "${PYOSMIUM}") @@ -77,6 +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 @@ -95,7 +105,6 @@ set(CUSTOMFILES website/status.php utils/blocks.php utils/country_languages.php - utils/imports.php utils/importWikipedia.php utils/export.php utils/query.php