TCL/TK library glitches in configure.in

From: Brook Milligan <brook(at)trillium(dot)NMSU(dot)Edu>
To: hackers(at)postgresql(dot)org
Subject: TCL/TK library glitches in configure.in
Date: 1998-10-12 17:27:43
Message-ID: 199810121727.LAA25407@trillium.nmsu.edu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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"

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Hannu Krosing 1998-10-12 17:33:29 Re: [HACKERS] Re: yet another problem in recent builds, GIST this time
Previous Message Matthew C. Aycock 1998-10-12 16:23:31 Re: [HACKERS] postmaster locking issues.