Re: [HACKERS] PGXS problem with pdftotext

2009-07-03 Thread Dimitri Fontaine

Hi,

Le 2 juil. 09 à 22:20, Kevin Grittner a écrit :

Here's the Makefile contents:


You could compare to this:
  
http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/backports/uuid-ossp/Makefile?rev=1.1.1.1content-type=text/x-cvsweb-markup


SHLIB_LINK = -lpoppler -L/usr/local/lib

SHLIB_LINK += $(OSSP_UUID_LIBS)
Dunno how far it'll get you, but it may help some :)
Regards,
--
dim
--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] PGXS problem with pdftotext

2009-07-03 Thread Kevin Grittner
I cleaned up the poppler build situation, and all looks good except:
 
Tom Lane t...@sss.pgh.pa.us wrote: 
 Kevin Grittner kevin.gritt...@wicourts.gov writes:
 PG_CPPFLAGS =-I/usr/include/poppler -shared -fpic
 
 It doesn't seem appropriate to put -shared or -fpic into
 PG_CPPFLAGS.  If you need those, the makefiles should add them
 automatically.

Leaving off -shared was OK, but when I left off -fpic, I got this:
 
/usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../../x86_64-suse-linux/bin/ld:
poppler_compat.o: relocation R_X86_64_32 against `a local symbol' can
not be used when making a shared object; recompile with -fPIC
poppler_compat.o: could not read symbols: Bad value
collect2: ld returned 1 exit status
make: *** [libpdftotext.so.0.0] Error 1
 
With -fPIC or -fpic in my Makefile, PGXS now seems to work as
intended.  Is it worth doing anything to check on why that is needed
or how to get rid of it?  Might it have something to do with compiling
both .c and .cc files?
 
-Kevin

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] PGXS problem with pdftotext

2009-07-03 Thread Tom Lane
Kevin Grittner kevin.gritt...@wicourts.gov writes:
 Leaving off -shared was OK, but when I left off -fpic, I got this:
 
 /usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../../x86_64-suse-linux/bin/ld:
 poppler_compat.o: relocation R_X86_64_32 against `a local symbol' can
 not be used when making a shared object; recompile with -fPIC
 poppler_compat.o: could not read symbols: Bad value
 collect2: ld returned 1 exit status
 make: *** [libpdftotext.so.0.0] Error 1

Huh.  On Linux platforms, the PG makefiles should include -fpic in
CFLAGS (via CFLAGS_SL) automatically; you should not need to repeat it
in CPPFLAGS.  For instance, if I go into contrib/adminpack and make, I see

sed 's,MODULE_PATHNAME,$libdir/adminpack,g' adminpack.sql.in adminpack.sql
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith 
-Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -g 
-fpic -I../../src/interfaces/libpq -I. -I../../src/include -D_GNU_SOURCE   -c 
-o adminpack.o adminpack.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith 
-Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -g 
-fpic -shared  adminpack.o   -L../../src/port  
-Wl,-rpath,'/home/tgl/testversion/lib' -o adminpack.so

What do you get?  What does pg_config report for the various FLAGS
variables?

regards, tom lane

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] PGXS problem with pdftotext

2009-07-03 Thread Kevin Grittner
Tom Lane t...@sss.pgh.pa.us wrote: 
 
 What do you get?
 
sed 's,MODULE_PATHNAME,$libdir/adminpack,g' adminpack.sql.in
adminpack.sql
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Winline
-Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing
-fwrapv -g -fpic -I/usr/local/pgsql-8.3.7/include -I.
-I/usr/local/pgsql-8.3.7/include/server
-I/usr/local/pgsql-8.3.7/include/internal -D_GNU_SOURCE
-I/usr/include/libxml2   -c -o adminpack.o adminpack.c
ar crs libadminpack.a adminpack.o
ranlib libadminpack.a
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Winline
-Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing
-fwrapv -g -fpic -shared -Wl,-soname,libadminpack.so.0   adminpack.o 
-L/usr/local/pgsql-8.3.7/lib  -Wl,-rpath,'/usr/local/pgsql-8.3.7/lib' -o
libadminpack.so.0.0
 
 What does pg_config report for the various FLAGS variables?
 
CPPFLAGS = -D_GNU_SOURCE -I/usr/include/libxml2
CFLAGS = -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Winline
-Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing
-fwrapv -g
CFLAGS_SL = -fpic
LDFLAGS = -Wl,-rpath,'/usr/local/pgsql-8.3.7/lib'
LDFLAGS_SL =
 
-Kevin

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] PGXS problem with pdftotext

2009-07-03 Thread Kevin Grittner
Tom Lane t...@sss.pgh.pa.us wrote: 
 
 What do you get?
 
More to the point, here's what I get when I use PGXS with my pdf code.
 
sed 's,MODULE_PATHNAME,$libdir/pdftotext,g' pdftotext.sql.in
pdftotext.sql
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Winline
-Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing
-fwrapv -g -fpic -I/usr/local/include/poppler -I.
-I/usr/local/pgsql-8.3.7/include/server
-I/usr/local/pgsql-8.3.7/include/internal -D_GNU_SOURCE
-I/usr/include/libxml2   -c -o pdftotext.o pdftotext.c
g++  -I/usr/local/include/poppler -I.
-I/usr/local/pgsql-8.3.7/include/server
-I/usr/local/pgsql-8.3.7/include/internal -D_GNU_SOURCE
-I/usr/include/libxml2   -c -o poppler_compat.o poppler_compat.cc
ar crs libpdftotext.a pdftotext.o poppler_compat.o
ranlib libpdftotext.a
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Winline
-Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing
-fwrapv -g -fpic -shared -Wl,-soname,libpdftotext.so.0   pdftotext.o
poppler_compat.o  -L/usr/local/pgsql-8.3.7/lib -lpoppler
-Wl,-rpath,'/usr/local/pgsql-8.3.7/lib' -o libpdftotext.so.0.0
/usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../../x86_64-suse-linux/bin/ld:
poppler_compat.o: relocation R_X86_64_32 against `a local symbol' can
not be used when making a shared object; recompile with -fPIC
poppler_compat.o: could not read symbols: Bad value
collect2: ld returned 1 exit status
make: *** [libpdftotext.so.0.0] Error 1
 
Since the gcc line has it, it must be the g++ line that's the problem?
 
-Kevin

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] PGXS problem with pdftotext

2009-07-03 Thread Tom Lane
Kevin Grittner kevin.gritt...@wicourts.gov writes:
 Tom Lane t...@sss.pgh.pa.us wrote: 
 What does pg_config report for the various FLAGS variables?
 
 CPPFLAGS = -D_GNU_SOURCE -I/usr/include/libxml2
 CFLAGS = -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Winline
 -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing
 -fwrapv -g
 CFLAGS_SL = -fpic
 LDFLAGS = -Wl,-rpath,'/usr/local/pgsql-8.3.7/lib'
 LDFLAGS_SL =

Well, that looks about right, so the next question is why the CFLAGS
value isn't getting used in your build.  What's the whole output of
make when you try to build your module?

regards, tom lane

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] PGXS problem with pdftotext

2009-07-03 Thread Tom Lane
Kevin Grittner kevin.gritt...@wicourts.gov writes:
 Since the gcc line has it, it must be the g++ line that's the problem?

Hmm, try adding
CXXFLAGS = $(CFLAGS)

Although in general we don't try very hard to support C++ code inside
the backend.

regards, tom lane

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] PGXS problem with pdftotext

2009-07-03 Thread Kevin Grittner
Tom Lane t...@sss.pgh.pa.us wrote: 
 
 Hmm, try adding
   CXXFLAGS = $(CFLAGS)
 
Thanks, that worked; I don't need to specify -fpic in my file if I put
the above line in.
 
 Although in general we don't try very hard to support C++ code
 inside the backend.
 
I try to avoid it when possible.  The C++ code is the thinnest wrapper
we could arrange around the poppler code to allow access from the C
code.
 
Would it make sense to add the above to the PGXS file somewhere, for
those cases (like this) when someone has to access some existing C++
code base?
 
-Kevin

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


[HACKERS] PGXS problem with pdftotext

2009-07-02 Thread Kevin Grittner
I've been wondering whether anyone else would want to use the
functions we wrote to extract text from PDF documents stored in bytea
columns.  If so, I would need to sort out the problems I've been
having with builds through the PGXS techniques.  Here's the directory,
after a successful build under contrib:
 
kgri...@project-db:~/postgresql-8.3.7/contrib/pdftotext ll
total 108
-rw-r--r-- 1 kgrittn dbas 22990 2009-04-14 17:14 libpdftotext.a
lrwxrwxrwx 1 kgrittn dbas19 2009-04-14 17:14 libpdftotext.so -
libpdftotext.so.0.0
lrwxrwxrwx 1 kgrittn dbas19 2009-04-14 17:14 libpdftotext.so.0 -
libpdftotext.so.0.0
-rwxr-xr-x 1 kgrittn dbas 21666 2009-04-14 17:14 libpdftotext.so.0.0
-rw-r--r-- 1 kgrittn dbas   443 2009-04-14 17:14 Makefile
-rw-r--r-- 1 kgrittn dbas  2980 2008-07-22 13:00 pdftotext.c
-rw-r--r-- 1 kgrittn dbas 14184 2009-04-14 17:14 pdftotext.o
-rw-r--r-- 1 kgrittn dbas   285 2009-04-14 17:14 pdftotext.sql
-rw-r--r-- 1 kgrittn dbas   285 2008-07-22 13:00 pdftotext.sql.in
-rw-r--r-- 1 kgrittn dbas  4658 2009-04-13 17:02 poppler_compat.cc
-rw-r--r-- 1 kgrittn dbas   355 2008-07-22 13:00 poppler_compat.h
-rw-r--r-- 1 kgrittn dbas  8208 2009-04-14 17:14 poppler_compat.o
-rw-r--r-- 1 kgrittn dbas   733 2008-07-22 13:00 README.pdftotext
 
Here's the Makefile contents:
 
MODULE_big = pdftotext
OBJS = pdftotext.o poppler_compat.o
DATA_built = pdftotext.sql
DOCS = README.pdftotext

PG_CPPFLAGS =-I/usr/include/poppler -shared -fpic
SHLIB_LINK = -lpoppler -L/usr/local/lib

ifdef USE_PGXS
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
else
subdir = contrib/pdftotext
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif
 
If we export PGXS=1 and make ; sudo make install outside the
PostgreSQL build tree, it seems to build and deploy OK, but it can't
find the poppler implementation at run time.  If we do it in the build
tree, all is good.  Where's the problem?  Is the SHLIB_LINK setting
proper?  What's the right way to do this?
 
BTW, libpoppler is GPL licensed, and always reminds me of what
Churchill said about democracy, if that affects anyone's interest in
the code.  You're likely to need to tweak the code based on the
particular version of libpoppler you're using.  If you use an older
version of libpoppler, it can crash the whole PostgreSQL environment
if you try to use it with a PDF using newer features.  :-(
 
If anyone's still interested, and I can fix the build problem, I'll
throw the source code onto pgfoundry.
 
-Kevin
 
It has been said that democracy is the worst form of government
except all the others that have been tried.

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] PGXS problem with pdftotext

2009-07-02 Thread Tom Lane
Kevin Grittner kevin.gritt...@wicourts.gov writes:
 PG_CPPFLAGS =-I/usr/include/poppler -shared -fpic
 SHLIB_LINK = -lpoppler -L/usr/local/lib

It doesn't seem appropriate to put -shared or -fpic into PG_CPPFLAGS.
If you need those, the makefiles should add them automatically.

The other thing that seems peculiar is looking for the include files
in /usr/include and the library in /usr/local/lib.  I've never
seen any package install itself like that --- either everything goes
under /usr/local or nothing does.  I suspect you might have two
incompatible poppler installations on the machine and you're picking
up the wrong combination of files.

Running ldd or local equivalent on pdftotext.so might help you determine
what's going on as far as finding the library goes.

regards, tom lane

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] PGXS problem with pdftotext

2009-07-02 Thread Kevin Grittner
Tom Lane t...@sss.pgh.pa.us wrote: 
 Kevin Grittner kevin.gritt...@wicourts.gov writes:
 PG_CPPFLAGS =-I/usr/include/poppler -shared -fpic
 SHLIB_LINK = -lpoppler -L/usr/local/lib
 
 It doesn't seem appropriate to put -shared or -fpic into
 PG_CPPFLAGS. If you need those, the makefiles should add them
 automatically.
 
 The other thing that seems peculiar is looking for the include files
 in /usr/include and the library in /usr/local/lib.  I've never
 seen any package install itself like that --- either everything goes
 under /usr/local or nothing does.  I suspect you might have two
 incompatible poppler installations on the machine and you're picking
 up the wrong combination of files.
 
 Running ldd or local equivalent on pdftotext.so might help you
 determine what's going on as far as finding the library goes.
 
Thanks.  Let's just say that the poppler build from source has not
ever gone as smoothly as the most eventful PostgreSQL build from
source.  We've had to do much ad hoc hacking to get anything usable,
and I'm sure we've made some bad choices in the process.  I'll take a
close look at where everything has landed in light of your advice, and
see if I can arrange things more sensibly.
 
Does it seem likely that fixing these issues will allow PGXS to work?
 
-Kevin

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] PGXS problem with pdftotext

2009-07-02 Thread Tom Lane
Kevin Grittner kevin.gritt...@wicourts.gov writes:
 Does it seem likely that fixing these issues will allow PGXS to work?

Couldn't say.  It would be useful to compare ldd output for
pdftotext.so built both ways.

regards, tom lane

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


[HACKERS] pgxs problem

2006-07-19 Thread Gregory Stark

I've tracked down my problem with pgxs to Makefile.global in lib/pgxs/src.
These lines seem to be the culprits:

bindir := $(shell pg_config --bindir)
datadir := $(shell pg_config --sharedir)
sysconfdir := $(shell pg_config --sysconfdir)
libdir := $(shell pg_config --libdir)
pkglibdir := $(shell pg_config --pkglibdir)
includedir := $(shell pg_config --includedir)
pkgincludedir := $(shell pg_config --pkgincludedir)
mandir := $(shell pg_config --mandir)
docdir := $(shell pg_config --docdir)
localedir := $(shell pg_config --localedir)

I think it should be running $(pkglibdir)/bin/pg_config

-- 
  Gregory Stark
  EnterpriseDB  http://www.enterprisedb.com


---(end of broadcast)---
TIP 9: In versions below 8.0, the planner will ignore your desire to
   choose an index scan if your joining column's datatypes do not
   match


Re: [HACKERS] pgxs problem

2006-07-19 Thread Martijn van Oosterhout
On Wed, Jul 19, 2006 at 05:06:48AM -0400, Gregory Stark wrote:
 
 I've tracked down my problem with pgxs to Makefile.global in lib/pgxs/src.
 These lines seem to be the culprits:

snip

 I think it should be running $(pkglibdir)/bin/pg_config

Seems reasonable to me. This code definitly seems to be limiting you to
one installation per machine.

Setting the PATH would probably work too.

Have a nice day,
-- 
Martijn van Oosterhout   kleptog@svana.org   http://svana.org/kleptog/
 From each according to his ability. To each according to his ability to 
 litigate.


signature.asc
Description: Digital signature


Re: [HACKERS] pgxs problem

2006-07-19 Thread Tom Lane
Gregory Stark [EMAIL PROTECTED] writes:
 I've tracked down my problem with pgxs to Makefile.global in lib/pgxs/src.
 These lines seem to be the culprits:

 bindir := $(shell pg_config --bindir)
 datadir := $(shell pg_config --sharedir)
 sysconfdir := $(shell pg_config --sysconfdir)
 libdir := $(shell pg_config --libdir)
 pkglibdir := $(shell pg_config --pkglibdir)
 includedir := $(shell pg_config --includedir)
 pkgincludedir := $(shell pg_config --pkgincludedir)
 mandir := $(shell pg_config --mandir)
 docdir := $(shell pg_config --docdir)
 localedir := $(shell pg_config --localedir)

 I think it should be running $(pkglibdir)/bin/pg_config

Your reasoning is circular.  How are we to find out pkglibdir, if not
by asking pg_config?  (It's the wrong path anyway, since pkglibdir
isn't where pg_config lives...)

The documented behavior is that pgxs invokes whatever pg_config is in
your PATH.

regards, tom lane

---(end of broadcast)---
TIP 3: Have you checked our extensive FAQ?

   http://www.postgresql.org/docs/faq


Re: [HACKERS] pgxs problem

2006-07-19 Thread Peter Eisentraut
Gregory Stark wrote:
 I've tracked down my problem with pgxs to Makefile.global in
 lib/pgxs/src. These lines seem to be the culprits:

 bindir := $(shell pg_config --bindir)

Yes, that's pretty small-minded.  It should be something like

PG_CONFIG = pg_config

bindir := $(shell $(PG_CONFIG) --bindir)

That way you can override it.

 I think it should be running $(pkglibdir)/bin/pg_config

Actually pg_config is defined to live in $(bindir), so that would be 
wrong.

-- 
Peter Eisentraut
http://developer.postgresql.org/~petere/

---(end of broadcast)---
TIP 3: Have you checked our extensive FAQ?

   http://www.postgresql.org/docs/faq


Re: [HACKERS] pgxs problem

2006-07-19 Thread Michael Fuhr
On Wed, Jul 19, 2006 at 10:29:14AM -0400, Tom Lane wrote:
 The documented behavior is that pgxs invokes whatever pg_config is in
 your PATH.

How do people with multiple PostgreSQL installations keep track of
which installation they're using?  I use shell scripts that set
PATH and a few other environment variables and then exec the command
I want to run (shell aliases would also work).  For example, I'd
type pg73 psql to run the 7.3 version of psql (which would connect
to a 7.3 server) and I'd type pg82 gmake to build an extension
for 8.2devel.  Prefixing each command with pgXX is a minor nuisance
but by being explicit I always know what version I'm using.

What are others doing?

-- 
Michael Fuhr

---(end of broadcast)---
TIP 4: Have you searched our list archives?

   http://archives.postgresql.org


Re: [HACKERS] pgxs problem

2006-07-19 Thread Tom Lane
Michael Fuhr [EMAIL PROTECTED] writes:
 How do people with multiple PostgreSQL installations keep track of
 which installation they're using?  I use shell scripts that set
 PATH and a few other environment variables and then exec the command
 I want to run (shell aliases would also work).

Yeah, I do something similar.  In my case I generally want to switch my
attention to different installations at different times, so what I do
is make shellscripts that adjust PATH and other variables.  Then I type
eg . setv81 to switch into the environment for my REL8_1_STABLE tree.
(Need the . because just executing the script normally would fail to
affect the parent shell's variables.)  The script itself looks like

# Source this, eg with . bin/setvariables, to prepare for Postgres work.

STDPATH=${STDPATH:-$PATH}
STDMANPATH=${STDMANPATH:-$MANPATH}

PGSRCROOT=$HOME/REL8_1/pgsql
PGBLDROOT=$PGSRCROOT
PGINSTROOT=$HOME/version81
PATH=$PGINSTROOT/bin:$STDPATH
DEFPORT=5481
MANPATH=$PGINSTROOT/man:$STDMANPATH
PGDATA=$PGINSTROOT/data
PMOPTIONS=-p 5481 -i -F
PMLOGFILE=server81.log

export PGSRCROOT PGBLDROOT PGINSTROOT PATH MANPATH STDPATH STDMANPATH
export DEFPORT PGDATA PMOPTIONS PMLOGFILE

The reason for the passel of variables is that I have some other scripts
that use the variables to do the right thing in all installations.
For instance the script that invokes configure includes

--with-pgport=$DEFPORT --prefix=$PGINSTROOT

In particular the point of STDPATH/STDMANPATH is to capture the shell's
original path settings so that switching between installations
repeatedly doesn't cause PATH and MANPATH to grow indefinitely.
You can probably guess what all the other vars are for.

regards, tom lane

---(end of broadcast)---
TIP 6: explain analyze is your friend


Re: [HACKERS] pgxs problem

2006-07-19 Thread Tom Lane
Peter Eisentraut [EMAIL PROTECTED] writes:
 Yes, that's pretty small-minded.  It should be something like
 PG_CONFIG = pg_config
 bindir := $(shell $(PG_CONFIG) --bindir)
 That way you can override it.

No objection here, although I'm not entirely convinced why anyone would
prefer doing that to setting their PATH.  If the pg_config you want
isn't (first in) your PATH, none of the other PG programs will be
either, which seems like an awkward situation for getting any PG-related
work done.

regards, tom lane

---(end of broadcast)---
TIP 5: don't forget to increase your free space map settings


Re: [HACKERS] pgxs problem

2006-07-19 Thread Peter Eisentraut
Tom Lane wrote:
 Peter Eisentraut [EMAIL PROTECTED] writes:
  Yes, that's pretty small-minded.  It should be something like
  PG_CONFIG = pg_config
  bindir := $(shell $(PG_CONFIG) --bindir)
  That way you can override it.

 No objection here, although I'm not entirely convinced why anyone
 would prefer doing that to setting their PATH.  If the pg_config you
 want isn't (first in) your PATH, none of the other PG programs will
 be either, which seems like an awkward situation for getting any
 PG-related work done.

Well, with the above change, both camps would be happy.

-- 
Peter Eisentraut
http://developer.postgresql.org/~petere/

---(end of broadcast)---
TIP 5: don't forget to increase your free space map settings