X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/2ab9e4acd3a2ceb5ff871b6b6afc786377e8739f..5d5f40a82f07e7e2a341435aeb45d8619d252525:/module/CMakeLists.txt diff --git a/module/CMakeLists.txt b/module/CMakeLists.txt index 03beacb2..9684a817 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} "14" "13" "12" "11" "10" "9.6") + 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)