public inbox for insight@sourceware.org
 help / color / mirror / Atom feed
* [PATCH/itcl] Update to Itcl 3.3
@ 2008-07-23 22:48 Keith Seitz
  2008-08-01 22:48 ` Tom Tromey
  0 siblings, 1 reply; 4+ messages in thread
From: Keith Seitz @ 2008-07-23 22:48 UTC (permalink / raw)
  To: insight

Hi,

I've committed a mega-patch (omitted) to update the sourceware Itcl to 
version 3.3. This is needed because Itcl 3.2 does not support TEA (Tcl 
Extension Architecture), which we really need in order to use a 
system-installed Tcl/Tk/Itcl/Itk/Iwidgets.

I have not tested it on Windows (Cygwin or Mingw) yet, so there may be 
problems... I'll try to check these sometime soon.

Keith

2008-07-23  Keith Seitz  <keiths@redhat.com>

         Import of Itcl 3.3.
         * itcl/configure.in, itk/configure.in, iwidgets/configure.in:
         Replace with configure.ac.
         * itcl/configure, itk/configure, iwidgets/configure: Regenerate.
         * configure.ac, Makefile.am, Makefile.in: New files.
         * README: "New" file.
         * aclocal.m4: Regenerate.
         * itcl/Makefile.in (RANLIB): Replace with RANLIB_LIB so
         that the toplevel build does not override this variable.
         * itk/Makefile.in (RANLIB): Likewise.
         * itcl/tclconfig/tcl.m4 (TEA_PATH_TCLCONFIG): Look for 
itclConfig.sh
         in the platform-specific location (unix or win).
         (TEA_PATH_TKCONFIG): Likewise.
         (TEA_MAKE_LIB): Even on windows, GCC libraries must start with 
"lib".
         * itk/tclconfig.m4: Copy of itcl/tcl.m4.
         * iwidgets/tcl.m4: Remove.
         * iwidgets/tclconfig: New directory.
         * iwidgets/tclconfig/tcl.m4, iwidgets/tclconfig/install-sh: Copies
         of itcl/tclconfig files.
         * iwidgets/Makefile.in (MKINSTALLDIRS): Use mkdir -p.
         * iwidgets/configure.ac (PACKAGE): Rename to PACKAGE_NAME.
         Call TEA_INIT, add AC_CONFIG_AUX_DIR and AC_PROG_INSTALL.
         Use TEA_* instead of SC_* macros.
         Search a few more directories for the itcl and itk libraries.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH/itcl] Update to Itcl 3.3
  2008-07-23 22:48 [PATCH/itcl] Update to Itcl 3.3 Keith Seitz
@ 2008-08-01 22:48 ` Tom Tromey
  2008-08-02  0:31   ` Keith Seitz
  0 siblings, 1 reply; 4+ messages in thread
From: Tom Tromey @ 2008-08-01 22:48 UTC (permalink / raw)
  To: Keith Seitz; +Cc: insight

>>>>> "Keith" == Keith Seitz <keiths@redhat.com> writes:

Keith> I've committed a mega-patch (omitted) to update the sourceware Itcl to
Keith> version 3.3. This is needed because Itcl 3.2 does not support TEA (Tcl
Keith> Extension Architecture), which we really need in order to use a
Keith> system-installed Tcl/Tk/Itcl/Itk/Iwidgets.

Today I tried to build a gdb patch which touches gdbtk, and
gdb/config.status hung.  I tracked this down to some bad definitions
in the generated itkConfig.sh.

E.g.:

opsy. pwd
/home/tromey/gnu/baseline-gdb/build/itcl/itk
opsy. grep @ itkConfig.sh 
ITCL_VERSION='@ITCL_VERSION@'
ITK_LIB_FILE=@ITK_LIB_FILE@
ITK_BUILD_LIB_SPEC='@ITK_BUILD_LIB_SPEC@'
ITK_LIB_SPEC='@ITK_LIB_SPEC@'
ITK_STUB_LIB_FILE=@ITK_STUB_LIB_FILE@
ITK_BUILD_STUB_LIB_SPEC='@ITK_BUILD_STUB_LIB_SPEC@'
ITK_STUB_LIB_SPEC='@ITK_STUB_LIB_SPEC@'
ITK_SRC_DIR='@ITK_SRC_DIR@'


I think this probably came from this patch.

Tom

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH/itcl] Update to Itcl 3.3
  2008-08-01 22:48 ` Tom Tromey
@ 2008-08-02  0:31   ` Keith Seitz
  2008-08-02  3:34     ` Tom Tromey
  0 siblings, 1 reply; 4+ messages in thread
From: Keith Seitz @ 2008-08-02  0:31 UTC (permalink / raw)
  To: Tom Tromey; +Cc: insight

Tom Tromey wrote:

> opsy. pwd
> /home/tromey/gnu/baseline-gdb/build/itcl/itk
> opsy. grep @ itkConfig.sh 
> ITCL_VERSION='@ITCL_VERSION@'
> ITK_LIB_FILE=@ITK_LIB_FILE@
> ITK_BUILD_LIB_SPEC='@ITK_BUILD_LIB_SPEC@'
> ITK_LIB_SPEC='@ITK_LIB_SPEC@'
> ITK_STUB_LIB_FILE=@ITK_STUB_LIB_FILE@
> ITK_BUILD_STUB_LIB_SPEC='@ITK_BUILD_STUB_LIB_SPEC@'
> ITK_STUB_LIB_SPEC='@ITK_STUB_LIB_SPEC@'
> ITK_SRC_DIR='@ITK_SRC_DIR@'
> 
> 
> I think this probably came from this patch.

Gdbtk is broken right now until I commit the rest of my outstanding 
patches for this... Looks like that cruft is not defined in my build 
either (but then my build doesn't link against itcl/itk anymore).

I'll see about speeding up my schedule (or lack thereof).

Keith

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH/itcl] Update to Itcl 3.3
  2008-08-02  0:31   ` Keith Seitz
@ 2008-08-02  3:34     ` Tom Tromey
  0 siblings, 0 replies; 4+ messages in thread
From: Tom Tromey @ 2008-08-02  3:34 UTC (permalink / raw)
  To: Keith Seitz; +Cc: insight

>>>>> "Keith" == Keith Seitz <keiths@redhat.com> writes:

Keith> Gdbtk is broken right now until I commit the rest of my outstanding
Keith> patches for this... Looks like that cruft is not defined in my build
Keith> either (but then my build doesn't link against itcl/itk anymore).

Keith> I'll see about speeding up my schedule (or lack thereof).

It is no rush.  I have one (or two?  I forget) deprecated hook removal
patches in my queue.  These are nothing serious and really unlikely to
be obsoleted :)

Tom

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-08-02  3:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-07-23 22:48 [PATCH/itcl] Update to Itcl 3.3 Keith Seitz
2008-08-01 22:48 ` Tom Tromey
2008-08-02  0:31   ` Keith Seitz
2008-08-02  3:34     ` Tom Tromey

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).