summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjoye <joye>2013-12-30 20:31:35 (GMT)
committerjoye <joye>2013-12-30 20:31:35 (GMT)
commit95e549344a92f371db1482b2f995fc007c42b778 (patch)
tree6ea7d4325e1e27aad4321d88e408a7579948a458
parentba5d3cc7c4f2c5c4b9a373a7268cba17e077d6a6 (diff)
downloadblt-95e549344a92f371db1482b2f995fc007c42b778.zip
blt-95e549344a92f371db1482b2f995fc007c42b778.tar.gz
blt-95e549344a92f371db1482b2f995fc007c42b778.tar.bz2
*** empty log message ***
-rwxr-xr-xconfigure22
-rwxr-xr-xconfigure.in2
-rw-r--r--src/bltGrPSOutput.C6
-rw-r--r--src/bltInt.C10
4 files changed, 20 insertions, 20 deletions
diff --git a/configure b/configure
index 9286726..0b209aa 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for tlt 3.0.
+# Generated by GNU Autoconf 2.69 for tkblt 3.0.
#
#
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -575,10 +575,10 @@ MFLAGS=
MAKEFLAGS=
# Identity of this package.
-PACKAGE_NAME='tlt'
-PACKAGE_TARNAME='tlt'
+PACKAGE_NAME='tkblt'
+PACKAGE_TARNAME='tkblt'
PACKAGE_VERSION='3.0'
-PACKAGE_STRING='tlt 3.0'
+PACKAGE_STRING='tkblt 3.0'
PACKAGE_BUGREPORT=''
PACKAGE_URL=''
@@ -1307,7 +1307,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures tlt 3.0 to adapt to many kinds of systems.
+\`configure' configures tkblt 3.0 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1355,7 +1355,7 @@ Fine tuning of the installation directories:
--infodir=DIR info documentation [DATAROOTDIR/info]
--localedir=DIR locale-dependent data [DATAROOTDIR/locale]
--mandir=DIR man documentation [DATAROOTDIR/man]
- --docdir=DIR documentation root [DATAROOTDIR/doc/tlt]
+ --docdir=DIR documentation root [DATAROOTDIR/doc/tkblt]
--htmldir=DIR html documentation [DOCDIR]
--dvidir=DIR dvi documentation [DOCDIR]
--pdfdir=DIR pdf documentation [DOCDIR]
@@ -1372,7 +1372,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of tlt 3.0:";;
+ short | recursive ) echo "Configuration of tkblt 3.0:";;
esac
cat <<\_ACEOF
@@ -1475,7 +1475,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
-tlt configure 3.0
+tkblt configure 3.0
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1840,7 +1840,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by tlt $as_me 3.0, which was
+It was created by tkblt $as_me 3.0, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
@@ -9951,7 +9951,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
-This file was extended by tlt $as_me 3.0, which was
+This file was extended by tkblt $as_me 3.0, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -10004,7 +10004,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
-tlt config.status 3.0
+tkblt config.status 3.0
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
diff --git a/configure.in b/configure.in
index 8cdaa6f..6f8b2a4 100755
--- a/configure.in
+++ b/configure.in
@@ -19,7 +19,7 @@ dnl to configure the system for the local environment.
# so that we create the export library with the dll.
#-----------------------------------------------------------------------
-AC_INIT([tlt], [3.0])
+AC_INIT([tkblt], [3.0])
#--------------------------------------------------------------------
# Call TEA_INIT as the first TEA_ macro to set up initial vars.
diff --git a/src/bltGrPSOutput.C b/src/bltGrPSOutput.C
index c3eeb61..e9a5120 100644
--- a/src/bltGrPSOutput.C
+++ b/src/bltGrPSOutput.C
@@ -388,10 +388,10 @@ Blt_Ps_IncludeFile(Tcl_Interp *interp, Blt_Ps ps, const char *fileName)
* PostScript output stored in the Tcl_DString in psPtr.
*/
- libDir = (char *)Tcl_GetVar(interp, "tlt_library", TCL_GLOBAL_ONLY);
+ libDir = (char *)Tcl_GetVar(interp, "tkblt_library", TCL_GLOBAL_ONLY);
if (libDir == NULL) {
- Tcl_AppendResult(interp, "couldn't find TLT script library:",
- "global variable \"tlt_library\" doesn't exist", (char *)NULL);
+ Tcl_AppendResult(interp, "couldn't find TKBLT script library:",
+ "global variable \"tkblt_library\" doesn't exist", (char *)NULL);
return TCL_ERROR;
}
Tcl_DStringInit(&dString);
diff --git a/src/bltInt.C b/src/bltInt.C
index fa231f4..53691fc 100644
--- a/src/bltInt.C
+++ b/src/bltInt.C
@@ -34,10 +34,10 @@
#include "bltInt.h"
-Tcl_AppInitProc Tlt_Init;
-Tcl_AppInitProc Tlt_SafeInit;
+Tcl_AppInitProc Tkblt_Init;
+Tcl_AppInitProc Tkblt_SafeInit;
-int Tlt_Init(Tcl_Interp *interp)
+int Tkblt_Init(Tcl_Interp *interp)
{
Tcl_Namespace *nsPtr;
@@ -81,9 +81,9 @@ int Tlt_Init(Tcl_Interp *interp)
return TCL_OK;
}
-int Tlt_SafeInit(Tcl_Interp *interp)
+int Tkblt_SafeInit(Tcl_Interp *interp)
{
- return Tlt_Init(interp);
+ return Tkblt_Init(interp);
}