X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/2ab9e4acd3a2ceb5ff871b6b6afc786377e8739f..86eeb4d2eddaa6c409f542169780f59dc31ffc1b:/module/CMakeLists.txt diff --git a/module/CMakeLists.txt b/module/CMakeLists.txt index 03beacb2..6aef6a5a 100644 --- a/module/CMakeLists.txt +++ b/module/CMakeLists.txt @@ -1,5 +1,14 @@ # just use the pgxs makefile -find_program(PG_CONFIG pg_config) + +foreach(suffix ${PostgreSQL_ADDITIONAL_VERSIONS} "13" "12" "11" "10" "9.6" "9.5" "9.4" "9.3") + list(APPEND PG_CONFIG_HINTS + "/usr/pgsql-${suffix}/bin") +endforeach() + +find_program(PG_CONFIG pg_config HINTS ${PG_CONFIG_HINTS}) + + + execute_process(COMMAND ${PG_CONFIG} --pgxs OUTPUT_VARIABLE PGXS OUTPUT_STRIP_TRAILING_WHITESPACE)