X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/0e1e7c7df20940a95ac3ae5e88c8537539cd6945..cb66887c3be7cc63ead2046e31379eac7ff2d191:/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)