tds-fdw / tds_fdw

A PostgreSQL foreign data wrapper to connect to TDS databases (Sybase and Microsoft SQL Server)
Other
377 stars 101 forks source link

Issue to get the library on postgres 9.6 having pg_config from 11 #225

Closed detzu closed 4 years ago

detzu commented 4 years ago

had issues to get the 9.6 library if 11 was installed on the host. Had to change in Makefile the line

PG_CONFIG = pg_config to PG_CONFIG = /usr/lib/postgresql/9.6/bin/pg_config

used version tds_fdw-1.0.8 for this.

SudoerWithAnOpinion commented 4 years ago

Instead of posting this as an issue, can you submit a pull request?

juliogonzalez commented 4 years ago

No need to change the Makefile:

make PG_CONFIG = /usr/lib/postgresql/9.6/bin/pg_config

:-)