Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 20 Feb 2003 09:33:21 -0600
From:      Mike Meyer <mwm-dated-1046187202.244d20@mired.org>
To:        John Bleichert <syborg@stny.rr.com>
Cc:        Jonathan Chen <jonc@chen.org.nz>, freebsd <freebsd-questions@FreeBSD.ORG>
Subject:   Re: PosgreSQL from ports
Message-ID:  <15956.62785.172285.578609@guru.mired.org>
In-Reply-To: <Pine.LNX.4.44.0302200940310.20706-100000@janeway.vonbek.dhs.org>
References:  <20030220085957.GB80790@grimoire.chen.org.nz> <Pine.LNX.4.44.0302200940310.20706-100000@janeway.vonbek.dhs.org>

next in thread | previous in thread | raw e-mail | index | archive | help
In <Pine.LNX.4.44.0302200940310.20706-100000@janeway.vonbek.dhs.org>, John Bleichert <syborg@stny.rr.com> typed:
> On Thu, 20 Feb 2003, Jonathan Chen wrote:
> > On Wed, Feb 19, 2003 at 09:14:27PM -0800, Syborg wrote:
> I'm trying to compile a very simple postgres app, from the samples, using 
> this simple Makefile:
> 
> ~~
> CFLAGS=-Wall -I/usr/local/include -L/usr/local/lib
> 
> pgtest: pgtest.c
> 	gcc -o pgtest pgtest.c $(CFLAGS)
> ~~
> 
> I use this setup to test the rig on my Linux box too. I get lots of linker 
> errors, the linker cannot find /usr/local/lib/libpq.so it looks like:
> ...
> /tmp/ccNOWnok.o(.text+0x2b8): undefined reference to `PQntuples'
> ...

You need to add -lpq to the CFLAGS so you actually use the postgres
library.

	<mike
-- 
Mike Meyer <mwm@mired.org>		http://www.mired.org/consulting.html
Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information.

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?15956.62785.172285.578609>