We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you get this error on Kali or debian based systems:
lib_postgresqludf_sys.c:34:10: fatal error: postgres.h: No such file or directory 34 | #include <postgres.h> | ^~~~~~~~~~~~ compilation terminated.
Need to install postgres dev package. Run the following where "XXX" is the version available to install from apt:
sudo apt-cache search postgresql-server-dev sudo apt install postgresql-server-dev-XXX
Also run the following to locate where the file is after install find / -name "postgres.h" -print 2>/dev/null
find / -name "postgres.h" -print 2>/dev/null
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If you get this error on Kali or debian based systems:
Need to install postgres dev package.
Run the following where "XXX" is the version available to install from apt:
Also run the following to locate where the file is after install
find / -name "postgres.h" -print 2>/dev/null
The text was updated successfully, but these errors were encountered: