Changeset 778
- Timestamp:
- 04/01/04 05:49:32 (5 years ago)
- Location:
- trunk
- Files:
-
- 5 modified
-
manuals/userman/installing.html (modified) (3 diffs)
-
QUICK_START (modified) (1 diff)
-
README (modified) (1 diff)
-
RELEASE_NOTES (modified) (2 diffs)
-
UPGRADING (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/manuals/userman/installing.html
r775 r778 30 30 31 31 <p> 32 The Macintosh version is included in the file <code>lgt2xx .sea.bin</code>, a <code>MacBinary</code> encoded, self-extracting archive. Your web browser should automatically decode the file, giving you a <code>.sea</code> self-extracting archive that you double-click to install Logtalk. If not, drag and drop the <code>.bin</code> file in a utility like <code>StuffIt Expander</code> or <code>MacBinaryII+</code>.32 The Macintosh version is included in the file <code>lgt2xxx.sea.bin</code>, a <code>MacBinary</code> encoded, self-extracting archive. Your web browser should automatically decode the file, giving you a <code>.sea</code> self-extracting archive that you double-click to install Logtalk. If not, drag and drop the <code>.bin</code> file in a utility like <code>StuffIt Expander</code> or <code>MacBinaryII+</code>. 33 33 </p> 34 34 … … 36 36 37 37 <p> 38 The MacOS X/BSD/Linux/Unix version is included in the file <code>lgt2xx .tar.gz</code>. In order to decompress and install the system you may use the following commands:39 </p> 40 <pre> 41 % gunzip lgt2xx .tar.gz42 % tar -xvf lgt2xx .tar43 </pre> 44 <p> 45 This will create a sub-directory named <code>lgt2xx </code> in your current directory.38 The MacOS X/BSD/Linux/Unix version is included in the file <code>lgt2xxx.tar.gz</code>. In order to decompress and install the system you may use the following commands: 39 </p> 40 <pre> 41 % gunzip lgt2xxx.tar.gz 42 % tar -xvf lgt2xxx.tar 43 </pre> 44 <p> 45 This will create a sub-directory named <code>lgt2xxx</code> in your current directory. 46 46 </p> 47 47 … … 49 49 50 50 <p> 51 The OS/2 and Windows 95/98/NT/ME/2000 version is included in the file <code>lgt2xx .zip</code>. The file can be decompressed using an utility like <code>unzip</code>:52 </p> 53 <pre> 54 unzip lgt2xx .zip51 The OS/2 and Windows 95/98/NT/ME/2000 version is included in the file <code>lgt2xxx.zip</code>. The file can be decompressed using an utility like <code>unzip</code>: 52 </p> 53 <pre> 54 unzip lgt2xxx.zip 55 55 </pre> 56 56 -
trunk/QUICK_START
r776 r778 69 69 70 70 2. Create a sub-directory with a suitable name to hold all the files of your 71 program.71 application. 72 72 73 3. Copy to this sub-directory a *.loader file f orm one of the examples and74 modify it to load your own source files.73 3. Copy to this sub-directory a *.loader file from one of the example 74 directories and modify it to load your own source files. -
trunk/README
r776 r778 91 91 .cshrc file: 92 92 93 setenv LOGTALKHOME "/your/installation/directory/lgt216 1"93 setenv LOGTALKHOME "/your/installation/directory/lgt2162" 94 94 95 95 If you use a bash shell, add the following lines to your .profile file: 96 96 97 LOGTALKHOME="/your/installation/directory/lgt216 1"97 LOGTALKHOME="/your/installation/directory/lgt2162" 98 98 export LOGTALKHOME 99 99 -
trunk/RELEASE_NOTES
r777 r778 11 11 12 12 13 2.16.2 - April ??, 200413 2.16.2 - April 2, 2004 14 14 15 15 Corrected a bug in the library category monitor (file library/monitor.lgt) … … 17 17 18 18 Changed the possible values of the read-only flag startup_message (defined 19 in the config files) to "flags" (print banner and flag values s), "banner"19 in the config files) to "flags" (print banner and flag values), "banner" 20 20 (print only the banner), and "none" (do not print neither the banner or the 21 flag values). 21 flag values). Default value is "flags". 22 22 23 23 -
trunk/UPGRADING
r776 r778 71 71 containing operator declarations is needed in order to take advantage of the 72 72 improvements made. 73 74 Logtalk 2.16.1 now checks for attempts to redefined built-in Logtalk control 75 constructs when compiling source files. These checks may generate compilation 76 errors on files containing bugs that are not detected on previous versions of 77 the compiler. 78 79 Logtalk version 2.16.2 changed the possible option values of the read-only 80 compiler option "startup_message" to "none", "banner", and "flags". Default 81 value is "flags" (print both banner and default flag values).
