The libpq library directory was mentioned here in the wrong place, which

might lead to a previously installed libpq being used instead.  But we
don't actually have to link with libpq here at all, so remove it.
This commit is contained in:
Peter Eisentraut 2007-01-20 15:26:28 +00:00
parent 862c3ff04d
commit 552348c166
1 changed files with 1 additions and 2 deletions

View File

@ -3,7 +3,7 @@ override CPPFLAGS := -I../../include -I$(top_srcdir)/src/interfaces/ecpg/include
override CFLAGS += $(PTHREAD_CFLAGS)
override LDFLAGS := -L../../ecpglib -L../../pgtypeslib $(LDFLAGS)
override LIBS := -lecpg -lpgtypes $(libpq) $(LIBS) $(PTHREAD_LIBS)
override LIBS := -lecpg -lpgtypes $(LIBS) $(PTHREAD_LIBS)
ECPG = ../../preproc/ecpg --regression -I$(srcdir)/../../include
@ -15,4 +15,3 @@ ECPG = ../../preproc/ecpg --regression -I$(srcdir)/../../include
clean:
rm -f $(TESTS) $(TESTS:%=%.o) $(TESTS:%=%.c)