Merge pull request #2019 from lonvia/find-pgconfig-inpostgresql-repo

Add support for finding pg_config in Postgresql repos
This commit is contained in:
Sarah Hoffmann
2020-10-20 15:02:00 +02:00
committed by GitHub
3 changed files with 12 additions and 11 deletions

View File

@@ -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)

View File

@@ -42,11 +42,7 @@
python3-pip python3-setuptools python3-devel \
expat-devel zlib-devel
# make sure pg_config gets found
echo 'PATH=/usr/pgsql-11/bin/:$PATH' >> ~/.bash_profile
source ~/.bash_profile
pip3 install --user psycopg2 pytidylib
pip3 install --user psycopg2
#

View File

@@ -35,11 +35,7 @@
python3-pip python3-setuptools python3-devel \
expat-devel zlib-devel
# make sure pg_config gets found
echo 'PATH=/usr/pgsql-12/bin:$PATH' >> ~/.bash_profile
source ~/.bash_profile
pip3 install --user psycopg2 pytidylib
pip3 install --user psycopg2
#