]> git.openstreetmap.org Git - nominatim.git/commitdiff
remove pyosmium-get-changes detection from cmake
authorSarah Hoffmann <lonvia@denofr.de>
Tue, 2 Feb 2021 09:33:15 +0000 (10:33 +0100)
committerSarah Hoffmann <lonvia@denofr.de>
Tue, 2 Feb 2021 09:33:15 +0000 (10:33 +0100)
pyosmium-get-changes is not longer used.

CMakeLists.txt

index d579bf1add496338a166cb08fa5e9e52592c4681..f5820c7fdf9ea06c4eb2b4427681be6f9d872193 100644 (file)
@@ -57,20 +57,11 @@ endif()
 
 
 #-----------------------------------------------------------------------------
-#  python and pyosmium (imports/updates only)
+#  python (imports/updates only)
 #-----------------------------------------------------------------------------
 
 if (BUILD_IMPORTER)
     find_package(PythonInterp 3.5 REQUIRED)
-
-    find_program(PYOSMIUM pyosmium-get-changes)
-    if (NOT EXISTS "${PYOSMIUM}")
-        set(PYOSMIUM_PATH "")
-            message(WARNING "pyosmium-get-changes not found (required for updates)")
-    else()
-        set(PYOSMIUM_PATH "${PYOSMIUM}")
-        message(STATUS "Using pyosmium-get-changes at ${PYOSMIUM_PATH}")
-    endif()
 endif()
 
 #-----------------------------------------------------------------------------