Tcl Source Code

Artifact [f5d6335980]
Login

Artifact f5d6335980d045124a16a10716c4c012ad732143:

Attachment "README.patch" to ticket [679416ffff] added by mdejong 2003-02-24 07:35:05.
Index: README
===================================================================
RCS file: /cvsroot/tcl/sampleextension/README,v
retrieving revision 1.9
diff -u -r1.9 README
--- README	20 Mar 2002 00:54:16 -0000	1.9
+++ README	24 Feb 2003 00:24:14 -0000
@@ -21,9 +21,6 @@
 
 README		This file
 
-README.cygwin	Instructions on how to use the Cygwin tools on Windows to
-		build the sample extension.
-
 README.sha	A description of the extension itself.
 
 aclocal.m4	Generated file.  Do not edit.  Autoconf uses this as input
@@ -55,6 +52,27 @@
 
 	tcl.m4		Collection of Tcl autoconf macros.  Included by
 			aclocal.m4 to define SC_* macros.
+
+UNIX BUILD
+==========
+
+Building under most UNIX systems is easy, just run the configure script
+and then run make. For more information about the build process, see
+the tcl/unix/README file in the Tcl src dist. The following minimal
+example will install the extension in the /opt/tcl directory.
+
+	$ cd sampleextension
+	$ ./configure --prefix=/opt/tcl
+	$ make
+	$ make install
+
+WINDOWS BUILD
+=============
+
+See the tcl/win/README file included in the Tcl src dist for details
+about how to build the extension under Windows. We suggest using
+the Msys + Mingw build process since it is significantly easier
+than building with VC++ or Cygwin.
 
 INSTALLATION
 ============