diff options
Diffstat (limited to 'databases/postgresql/patches/patch-ac')
-rw-r--r-- | databases/postgresql/patches/patch-ac | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/databases/postgresql/patches/patch-ac b/databases/postgresql/patches/patch-ac index 9776f054f7a..859c02313e4 100644 --- a/databases/postgresql/patches/patch-ac +++ b/databases/postgresql/patches/patch-ac @@ -1,25 +1,25 @@ -$NetBSD: patch-ac,v 1.3 1999/01/04 13:05:01 frueauf Exp $ +$NetBSD: patch-ac,v 1.4 1999/09/19 04:24:54 jlam Exp $ ---- configure.in-orig Sun Dec 13 21:08:20 1998 -+++ configure.in Tue Dec 29 01:33:56 1998 -@@ -786,7 +786,7 @@ - dnl If --with-tclconfig was given, don't check for tclsh, tcl - if test -z "$TCL_DIRS" - then -- AC_PATH_PROG(TCLSH, tclsh) -+ AC_PATH_PROG(TCLSH, tclsh8.0) - if test -z "$TCLSH" - then - AC_PATH_PROG(TCLSH, tcl) -@@ -834,9 +834,9 @@ - # library_dirs are set in the check for TCL - for dir in $library_dirs - do -- if test -d "$dir" -a -r "$dir/tkConfig.sh" -+ if test -d "$dir" -a -r "$dir/../tk8.0/tkConfig.sh" - then -- TK_CONFIG_SH=$dir/tkConfig.sh -+ TK_CONFIG_SH=$dir/../tk8.0/tkConfig.sh - break - fi - done +--- ./bin/pg_dump/Makefile.in.orig Sun Jan 17 01:19:05 1999 ++++ ./bin/pg_dump/Makefile.in Sat Sep 18 03:16:08 1999 +@@ -26,17 +26,13 @@ + CFLAGS+= $(KRBFLAGS) + endif + +-all: submake pg_dump ++all: pg_dump + +-pg_dump: $(OBJS) $(LIBPQDIR)/libpq.a +- $(CC) -o pg_dump -L$(LIBPQDIR) $(OBJS) -lpq $(LDFLAGS) ++pg_dump: $(OBJS) ++ $(CC) -o pg_dump $(OBJS) $(LIBPQ) $(LDFLAGS) + + ../../utils/strdup.o: + $(MAKE) -C ../../utils strdup.o +- +-.PHONY: submake +-submake: +- $(MAKE) -C $(LIBPQDIR) libpq.a + + install: pg_dump + $(INSTALL) $(INSTL_EXE_OPTS) pg_dump$(X) $(BINDIR)/pg_dump$(X) |