TCL/TK library glitches in configure.in - Mailing list pgsql-hackers

From Brook Milligan
Subject TCL/TK library glitches in configure.in
Date
Msg-id 199810121727.LAA25407@trillium.nmsu.edu
Whole thread Raw
Responses Re: [HACKERS] TCL/TK library glitches in configure.in  (jwieck@debis.com (Jan Wieck))
Re: [HACKERS] TCL/TK library glitches in configure.in  (Bruce Momjian <maillist@candle.pha.pa.us>)
List pgsql-hackers
The configure script is not correctly substituting the TCL/TK
libraries it finds.  Please remember that setting variables in the
configure script is not enough to get them substituted into Makefiles
and such.

Please apply the following patch and rerun autoconf.

Cheers,
Brook

===========================================================================
--- configure.in.orig    Mon Oct 12 01:00:20 1998
+++ configure.in    Mon Oct 12 11:08:29 1998
@@ -800,6 +800,7 @@
         USE_TCL=
     else
         TCL_LIB=-l$TCL_LIB
+        AC_SUBST(TCL_LIB)
     fi
 fi

@@ -883,6 +884,7 @@
         USE_TCL=
     else
         TK_LIB=-l$TK_LIB
+        AC_SUBST(TK_LIB)
     fi

     LIBS="$ice_save_LIBS"

pgsql-hackers by date:

Previous
From: "Matthew C. Aycock"
Date:
Subject: Re: [HACKERS] postmaster locking issues.
Next
From: Hannu Krosing
Date:
Subject: Re: [HACKERS] Re: yet another problem in recent builds, GIST this time