From owner-freebsd-ports Wed Feb 23 22:10: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0B20737BAA5 for ; Wed, 23 Feb 2000 22:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA67232; Wed, 23 Feb 2000 22:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from bbcon.com.au (firewall.bbcon.com.au [203.28.19.210]) by hub.freebsd.org (Postfix) with ESMTP id D543D37BB0C for ; Wed, 23 Feb 2000 22:09:38 -0800 (PST) (envelope-from jsutton@sol.bbcon.com.au) Received: from firewall.bbcon.com.au (stargate [10.0.0.1]) by bbcon.com.au (8.9.2/8.9.2) with ESMTP id RAA51543; Thu, 24 Feb 2000 17:09:37 +1100 (EST) (envelope-from jsutton@sol.bbcon.com.au) Received: from sol.bbcon.com.au (solsbury-hill.home [10.0.0.2]) by firewall.bbcon.com.au (8.9.3/8.9.2) with ESMTP id RAA93396; Thu, 24 Feb 2000 17:09:36 +1100 (EST) (envelope-from jsutton@sol.bbcon.com.au) Received: (from root@localhost) by sol.bbcon.com.au (8.9.3/8.9.3) id RAA37204; Thu, 24 Feb 2000 17:09:35 +1100 (EST) (envelope-from jsutton) Message-Id: <200002240609.RAA37204@sol.bbcon.com.au> Date: Thu, 24 Feb 2000 17:09:35 +1100 (EST) From: jsutton@bbcon.com.au Reply-To: jsutton@bbcon.com.au To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/16951: postgresql does not support tcl82 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 16951 >Category: ports >Synopsis: postgresql does not support tcl82 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Feb 23 22:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Joel Sutton >Release: FreeBSD 3.4-RELEASE i386 >Organization: Busy Bee Consulting >Environment: FreeBSD solsbury-hill.home 3.4-RELEASE FreeBSD 3.4-RELEASE #2: Fri Jan 28 15:18:55 EST 2000 jsutton@solsbury-hill.home:/usr/src/sys/compile/WKSTN i386 >Description: PostgreSQL wants to use tcl80 instead of a more recent version when built with the USE_TCL option. Here's a very simple patch to bring it up to tcl82. I'm not sure that this is a real fix as people probably want different versions of tcl for their own projects. >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/cvs/FreeBSD//ports/databases/postgresql/Makefile,v retrieving revision 1.51 diff -u -r1.51 Makefile --- Makefile 2000/01/03 06:45:51 1.51 +++ Makefile 2000/02/24 04:33:03 @@ -3,7 +3,7 @@ # Date created: November 13, 1998 # Whom: Marc G. Fournier # -# $FreeBSD: /ports/databases/postgresql/Makefile,v 1.51 2000/01/03 06:45:51 andreas Exp $ +# $FreeBSD: /home/cvs/FreeBSD//ports/databases/postgresql/Makefile,v 1.51 2000/01/03 06:45:51 andreas Exp $ # DISTNAME= postgresql-6.5.3 @@ -25,11 +25,11 @@ # if you want to use the tcl/tk frontend pgaccess, then you need to build # postgresql with tcl support by typing: make USE_TCL=yes .if defined(USE_TCL) -TCL_INCDIR= ${LOCALBASE}/include/tcl8.0 -TK_INCDIR= ${LOCALBASE}/include/tk8.0 +TCL_INCDIR= ${LOCALBASE}/include/tcl8.2 +TK_INCDIR= ${LOCALBASE}/include/tk8.2 MAKE_ENV= USE_TCL=true TCL_INCDIR=${TCL_INCDIR} -LIB_DEPENDS= tcl80.1:${PORTSDIR}/lang/tcl80 tk80.1:${PORTSDIR}/x11-toolkits/tk80 -WITH_TCL= --with-tcl --with-tclconfig="${LOCALBASE}/lib/tcl8.0 ${LOCALBASE}/lib/tk8.0" +LIB_DEPENDS= tcl82.1:${PORTSDIR}/lang/tcl82 tk82.1:${PORTSDIR}/x11-toolkits/tk82 +WITH_TCL= --with-tcl --with-tclconfig="${LOCALBASE}/lib/tcl8.2 ${LOCALBASE}/lib/tk8.2" .endif # if you want jdbc, type make USE_JDBC=yes >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message