-$Id: CHANGELOG,v 1.24 1996-07-25 15:51:54 adam Exp $
+$Id: CHANGELOG,v 1.25 1996-07-26 09:15:06 adam Exp $
06/19/95 Release of ir-tcl-1.0b
------------------------------------------------------
07/25/96 Release of ir-tcl-1.2
------------------------------------------------------
+
+07/26/96 Bug fix: configure script didn't include library specification
+ for Tcl when linking ir-tk.
+
+07/26/96 Release of ir-tcl-1.2pl1
+------------------------------------------------------
/*
- * Copyright (c) 1995, Index Data.
+ * Copyright (c) 1995-1996, Index Data.
*
* Permission to use, copy, modify, distribute, and sell this software and
* its documentation, in whole or in part, for any purpose, is hereby granted,
# IR toolkit for tcl/tk
-# (c) Index Data 1995
+# (c) Index Data 1995-1996
# See the file LICENSE for details.
# Sebastian Hammer, Adam Dickmeiss
-# $Id: Makefile.in,v 1.37 1996-07-25 14:07:09 adam Exp $
+# $Id: Makefile.in,v 1.38 1996-07-26 09:15:06 adam Exp $
SHELL=/bin/sh
# IrTcl Version
-VERSION=1.2
+VERSION=1.2pl1
# Directory prefix with machine independent files (scripts, setup files, etc.)
prefix = @prefix@
* See the file LICENSE for details.
* Sebastian Hammer, Adam Dickmeiss
-IrTcl version 1.2
+IrTcl version 1.2pl1
----- $Date: 1996-07-25 13:43:57 $
+---- $Date: 1996-07-26 09:15:07 $
Information about Tcl can be found at http://www.indexdata.dk/irtcl.html.
This page contains pointers to documentation in various formats.
# IR toolkit for tcl/tk
-# (c) Index Data 1995
+# (c) Index Data 1995-1996
# See the file LICENSE for details.
# Sebastian Hammer, Adam Dickmeiss
#
# $Log: client.tcl,v $
-# Revision 1.94 1996-07-25 15:55:34 adam
+# Revision 1.95 1996-07-26 09:15:08 adam
+# IrTcl version 1.2 patch level 1.
+#
+# Revision 1.94 1996/07/25 15:55:34 adam
# IrTcl version 1.2 release.
#
# Revision 1.93 1996/06/28 08:43:54 adam
dnl IR toolkit for tcl/tk
dnl (c) Index Data 1996
dnl See the file LICENSE for details.
-dnl $Id: configure.in,v 1.17 1996-06-28 08:43:55 adam Exp $
+dnl $Id: configure.in,v 1.18 1996-07-26 09:15:09 adam Exp $
AC_INIT(ir-tcl.h)
CC=${CC-cc}
dnl ------ Substitutions
if test "$YAZDIR" = "yes"; then
YAZDIR="../yaz-1.2"
elif test "$YAZDIR" = ""; then
- YAZDIR="../yaz"
- for i in ../yaz-1.2 ../yaz-1.3 ../yaz; do
+ for i in ../yaz* ../yaz; do
if test -d $i; then
YAZDIR=$i
fi
if test -r ${tryprefix}/lib/tclConfig.sh; then
AC_MSG_CHECKING(for Tcl)
source ${tryprefix}/lib/tclConfig.sh
- if test "$TCL_LIB_VERSIONS_OK" = "yes"; then
- TCLLIB="-L${TCL_PREFIX}/lib -ltcl${TCL_VERSION}"
- else
- TCLLIB=${TCL_PREFIX}/lib/${TCL_LIB_FILE}
- fi
- TCLLIB="${TCLLIB} ${TCL_LIBS}"
+ TCLLIB="${TCL_LIB_SPEC} ${TCL_LIBS}"
TCLINC=-I${TCL_PREFIX}/include
RANLIB=$TCL_RANLIB
AC_MSG_RESULT($TCL_VERSION)
done
if test "$TCL_VERSION" = nope; then
AC_MSG_WARN(Didn't find Tcl)
- TCLLIB=-ltcl
+ TCL_LIB_SPEC=-ltcl
TCLINC=" # -I.. Tcl/Tk include path"
else
if test "$TCL_VERSION" = ""; then
else
AC_MSG_RESULT($TCL_VERSION)
fi
- TCLLIB=${tryprefix}/lib/libtcl${TCL_VERSION}.a
+ TCL_LIB_SPEC=${tryprefix}/lib/libtcl${TCL_VERSION}.a
TCLINC=-I${tryprefix}/include
fi
- TCLLIB="${TCLLIB} ${LIBS} -lm"
+ TCLLIB="${TCL_LIB_SPEC} ${LIBS} -lm"
fi
dnl ------ look for Tk
if test -r ${tryprefix}/lib/tkConfig.sh; then
source ${tryprefix}/lib/tkConfig.sh
AC_MSG_RESULT($TK_VERSION)
TKINC=${TK_XINCLUDES}
- TKLIB="${TK_PREFIX}/lib/${TK_LIB_FILE} ${TK_LIBS}"
+ TKLIB="${TK_PREFIX}/lib/${TK_LIB_FILE} ${TCL_LIB_SPEC} ${TK_LIBS}"
else
AC_MSG_CHECKING(for Tk)
TK_VERSION=nope
AC_MSG_RESULT($TK_VERSION)
fi
fi
- TKLIB=${tryprefix}/lib/libtk${i}.a
+ TKLIB=${tryprefix}/lib/libtk${TK_VERSION}.a
AC_PATH_X
not_really_there=""
if test "$no_x" = ""; then
echo "Warning: couldn't find the X11 library archive. Using -lX11."
XLIBSW=-lX11
fi
- TKINC=$XINCLUDE
+ TKINC=$XINCLUDES
TKLIB="${TKLIB} ${XLIBSW} ${TCLLIB}"
fi
AC_OUTPUT(Makefile)
/*
- * Copyright (c) 1995, Index Data.
+ * Copyright (c) 1995-1996, Index Data.
*
* Permission to use, copy, modify, distribute, and sell this software and
* its documentation, in whole or in part, for any purpose, is hereby granted,
* OF THIS SOFTWARE.
*
* $Log: ir-tcl.h,v $
- * Revision 1.14 1996-02-21 10:16:19 adam
+ * Revision 1.15 1996-07-26 09:15:09 adam
+ * IrTcl version 1.2 patch level 1.
+ *
+ * Revision 1.14 1996/02/21 10:16:19 adam
* Simplified select handling. Only one function ir_tcl_select_set has
* to be externally defined.
*