Date: Thu, 24 Feb 2000 17:09:35 +1100 (EST) From: jsutton@bbcon.com.au To: FreeBSD-gnats-submit@freebsd.org Subject: ports/16951: postgresql does not support tcl82 Message-ID: <200002240609.RAA37204@sol.bbcon.com.au>
next in thread | raw e-mail | index | archive | help
>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 <scrappy@FreeBSD.org> # -# $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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200002240609.RAA37204>