configure.in patch for --with-tcl

From: Brook Milligan <brook(at)trillium(dot)NMSU(dot)Edu>
To: hackers(at)postgresql(dot)org
Subject: configure.in patch for --with-tcl
Date: 1998-03-02 05:00:00
Message-ID: 199803020500.WAA16502@trillium.nmsu.edu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Someone reported a problem with getting the --with-tcl configure
option to do anything. The problem crops up with Marc's (I think it
was his) patch to enable the configure --help output for this option.
The fix is below (remember to run autoconf).

Cheers,
Brook

===========================================================================
--- configure.in.orig Sun Mar 1 01:00:33 1998
+++ configure.in Sun Mar 1 21:36:02 1998
@@ -239,8 +239,8 @@
AC_ARG_WITH(
tcl,
[ --with-tcl use tcl ],
- USE_TCL=true AC_MSG_RESULT(enabled),
- USE_TCL=false AC_MSG_RESULT(disabled)
+ USE_TCL=true; AC_MSG_RESULT(enabled),
+ USE_TCL=false; AC_MSG_RESULT(disabled)
)
export USE_TCL
USE_X=$USE_TCL

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Vadim B. Mikheev 1998-03-02 05:14:55 PostreSQL v6.2 Installation Program
Previous Message The Hermit Hacker 1998-03-02 04:41:08 Re: [QUESTIONS] Re: [HACKERS] Is "CREATE DOMAIN" in 6.3 ??