summaryrefslogtreecommitdiffstats
path: root/unix/README
diff options
context:
space:
mode:
authorhobbs <hobbs>2000-02-10 08:55:14 (GMT)
committerhobbs <hobbs>2000-02-10 08:55:14 (GMT)
commitdd33cec55f8d2792c7b628594c4f0f2d4df7f669 (patch)
tree096ac7fd2b5cc84fae1c4869d6fbbf4e5848c4d2 /unix/README
parent4541ee11ae166c9c275bd5162a5cf79839415b93 (diff)
downloadtcl-dd33cec55f8d2792c7b628594c4f0f2d4df7f669.zip
tcl-dd33cec55f8d2792c7b628594c4f0f2d4df7f669.tar.gz
tcl-dd33cec55f8d2792c7b628594c4f0f2d4df7f669.tar.bz2
* unix/README:
* unix/Makefile.in (dist): removed porting.notes and porting.old from distribution and CVS. The information was very outdated. Now refer to http://dev.scriptics.com/services/support/platforms.html * tests/unixInit.test: fixed japanese LANG encoding test [Bug: 3549] * unix/configure.in: * unix/tcl.m4: correct CFLAG_WARNING setting, fixed gcc config for AIX, added -export-dynamic to LDFLAGS for FreeBSD-3+ [Bug: 2998] * win/tclWinLoad.c (TclpLoadFile): improved error message for load failures, could perhaps be even more intelligent.
Diffstat (limited to 'unix/README')
-rw-r--r--unix/README32
1 files changed, 16 insertions, 16 deletions
diff --git a/unix/README b/unix/README
index 684970c..702c5b4 100644
--- a/unix/README
+++ b/unix/README
@@ -10,6 +10,10 @@ used on the PC or Mac platform too, but they all depend on UNIX
Updated forms of the information found in this file is available at:
http://www.scriptics.com/support/howto/compile.html#unix
+For information on platforms where Tcl is known to compile, along
+with any porting notes for getting it to work on those platforms, see:
+ http://dev.scriptics.com/services/support/platforms.html
+
The rest of this file contains instructions on how to do this. The
release should compile and run either "out of the box" or with trivial
changes on any UNIX-like system that approximates POSIX, BSD, or System
@@ -18,7 +22,7 @@ SGI, as well as PCs running Linux, BSDI, and SCO UNIX. To compile for
a PC running Windows, see the README file in the directory ../win. To
compile for a Macintosh, see the README file in the directory ../mac.
-RCS: @(#) $Id: README,v 1.9 2000/02/05 12:09:16 hobbs Exp $
+RCS: @(#) $Id: README,v 1.10 2000/02/10 08:55:26 hobbs Exp $
How To Compile And Install Tcl:
-------------------------------
@@ -71,15 +75,15 @@ How To Compile And Install Tcl:
Note: be sure to use only absolute path names (those starting with "/")
in the --prefix and --exec_prefix options.
-(e) Type "make". This will create a library archive called "libtcl.a"
- or "libtcl.so" and an interpreter application called "tclsh" that
- allows you to type Tcl commands interactively or execute script files.
+(e) Type "make". This will create a library archive called
+ "libtcl<version>.a" or "libtcl<version>.so" and an interpreter
+ application called "tclsh" that allows you to type Tcl commands
+ interactively or execute script files.
(f) If the make fails then you'll have to personalize the Makefile
for your site or possibly modify the distribution in other ways.
- First check the file "porting.notes" to see if there are hints
- for compiling on your system. Then look at the porting Web page
- described later in this file. If you need to modify Makefile, there
+ First check the porting Web page above to see if there are hints
+ for compiling on your system. If you need to modify Makefile,
are comments at the beginning of it that describe the things you
might want to change and how to change them.
@@ -101,15 +105,11 @@ How To Compile And Install Tcl:
to use the installed versions, either specify the version number
or create a symbolic link (e.g. from "tclsh" to "tclsh8.3").
-If you have trouble compiling Tcl, check out the following Web URL:
- http://www.scriptics.com/software/install.html#Database
-This is an on-line database of porting information. We make no
-guarantees that this information is accurate, complete, or up-to-date,
-but you may find it useful. If you get Tcl running on a new
-configuration, we would be happy to receive new information to add to
-the database. We're also interested in hearing how to change the
-configuration setup so that Tcl compiles out of the box on more
-platforms.
+If you have trouble compiling Tcl, see the URL noted above about working
+platforms. It contains information that people have provided about changes
+they had to make to compile Tcl in various environments. We're also
+interested in hearing how to change the configuration setup so that Tcl
+compiles on additional platforms "out of the box".
Test suite
----------