Thread

  1. [PATCH] Add Makefile dep in bin/scripts for libpgport

    Phil Sorber <phil@omniti.com> — 2013-01-23T17:36:51Z

    I get the following error when I try to compile just a specific binary
    in src/bin/scripts:
    
    gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith
    -Wdeclaration-after-statement -Wendif-labels
    -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing
    -fwrapv -fexcess-precision=standard reindexdb.o common.o dumputils.o
    kwlookup.o keywords.o -L../../../src/port -lpgport
    -L../../../src/interfaces/libpq -lpq -L../../../src/port
    -Wl,--as-needed -Wl,-rpath,'/usr/local/pgsql/lib',--enable-new-dtags
    -lpgport -lz -lreadline -lcrypt -ldl -lm  -o reindexdb
    /usr/bin/ld: cannot find -lpgport
    /usr/bin/ld: cannot find -lpgport
    collect2: error: ld returned 1 exit status
    make: *** [reindexdb] Error 1
    
    It appears it is missing the libpgport dependency. Attached is a patch
    to correct that. This is not normally a problem because when building
    the whole tree libpgport is usually compiled already.
    
  2. Re: [PATCH] Add Makefile dep in bin/scripts for libpgport

    Peter Eisentraut <peter_e@gmx.net> — 2013-02-08T11:47:22Z

    On Wed, 2013-01-23 at 12:36 -0500, Phil Sorber wrote:
    > I get the following error when I try to compile just a specific binary
    > in src/bin/scripts:
    > 
    > gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith
    > -Wdeclaration-after-statement -Wendif-labels
    > -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing
    > -fwrapv -fexcess-precision=standard reindexdb.o common.o dumputils.o
    > kwlookup.o keywords.o -L../../../src/port -lpgport
    > -L../../../src/interfaces/libpq -lpq -L../../../src/port
    > -Wl,--as-needed -Wl,-rpath,'/usr/local/pgsql/lib',--enable-new-dtags
    > -lpgport -lz -lreadline -lcrypt -ldl -lm  -o reindexdb
    > /usr/bin/ld: cannot find -lpgport
    > /usr/bin/ld: cannot find -lpgport
    > collect2: error: ld returned 1 exit status
    > make: *** [reindexdb] Error 1
    > 
    > It appears it is missing the libpgport dependency. Attached is a patch
    > to correct that. This is not normally a problem because when building
    > the whole tree libpgport is usually compiled already.
    
    Committed.