skip to Main Content

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"
error

although i have properly installed all dependencies

2

Answers


  1. 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
    
    Login or Signup to reply.
  2. 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.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search