Control: unmerge -1 Re: Jack Bates 2013-09-17 <[email protected]> > Where is libpq.so (PostgreSQL client library) installed on your > system? I suspect the offending line is libzdb-2.11.3/configure.ac > line 268: > > LDFLAGS="-L`$PGCONFIG --libdir` $LDFLAGS" > > I think bug #706849 (libpq5: enable multi-arch) will move libpq.so > out of /usr/lib and I think that will resolve this bug as well.
Hi, it's not libpq's fault that you have -L`$PGCONFIG --libdir` in your configure.ac script. To link with it, you should just be able to say "-lpq" and it will find the library in /usr/lib, or whatever multiarch path. I'd suggest to just remove that mangling there. We will probaby do the multi-archification in a way that pg_config --libdir will continue to point to /usr/lib, because that's the location where the PostgreSQL modules are located. Only the client libraries (libpq5 and friends) will be moved. Christoph -- [email protected] | http://www.df7cb.de/
signature.asc
Description: Digital signature
_______________________________________________ Pkg-postgresql-public mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-postgresql-public
