You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When libpq is not installed in the user's system, the user does not get an appropriate error message. The package configure script attempts to use a bundled distribution but fails because:
When PG_INCDIR is not found, it is set to src/libpq instead of libpq, which makes the compilation fail because of missing headers.
PG_LIBDIR is never set if not found externally, so the compilation fails at the linking step.
I think it's fine to not be able to use a bundled distribution, but I think the user should be messaged accordingly.
The text was updated successfully, but these errors were encountered:
When libpq is not installed in the user's system, the user does not get an appropriate error message. The package configure script attempts to use a bundled distribution but fails because:
I think it's fine to not be able to use a bundled distribution, but I think the user should be messaged accordingly.
The text was updated successfully, but these errors were encountered: