I am trying to install postgres on ubuntu but ./configure is failing
./configure –enable-debug –enable-cassert –prefix=$(pwd) CFLAGS="-ggdb -Og -fno-omit-frame-pointer"
although i have properly installed all dependencies
2
You can use –without-icu flag while configuration or simply install the required packages for icu using
sudo apt-get install libicu-dev sudo apt-get install pkgconf
Install ICU via following command:
sudo apt-get install libicu-dev
If the issue persists, execute this command:
apt-get install pkgconf
Also consider updating bison.
Click here to cancel reply.
2
Answers
You can use –without-icu flag while configuration
or
simply install the required packages for icu using
Install ICU via following command:
If the issue persists, execute this command:
Also consider updating bison.