aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-03-08 01:33:15 +0000
committernyamatongwe <devnull@localhost>2000-03-08 01:33:15 +0000
commitc09854a1d67b91ff2b2d9e607e717fe4fab601e1 (patch)
tree7bb2c5aa38c7998d84fecac6716010ae13646a78
downloadscintilla-mirror-c09854a1d67b91ff2b2d9e607e717fe4fab601e1.tar.gz
no message
-rw-r--r--License.txt20
-rw-r--r--README33
2 files changed, 53 insertions, 0 deletions
diff --git a/License.txt b/License.txt
new file mode 100644
index 000000000..4c7deb821
--- /dev/null
+++ b/License.txt
@@ -0,0 +1,20 @@
+License for Scintilla and SciTE
+
+Copyright 1998-2000 by Neil Hodgson <neilh@scintilla.org>
+
+All Rights Reserved
+
+Permission to use, copy, modify, and distribute this software and its
+documentation for any purpose and without fee is hereby granted,
+provided that the above copyright notice appear in all copies and that
+both that copyright notice and this permission notice appear in
+supporting documentation.
+
+NEIL HODGSON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
+SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+AND FITNESS, IN NO EVENT SHALL NEIL HODGSON BE LIABLE FOR ANY
+SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
+WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
+OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file
diff --git a/README b/README
new file mode 100644
index 000000000..0ac4f1ff1
--- /dev/null
+++ b/README
@@ -0,0 +1,33 @@
+README for building of Scintilla and SciTE
+
+
+*** GTK+/Linux version ***
+
+You must first have GTK+ 1.2x and GCC (2.8 or better) installed.
+GTK+ 1.0x will not work and when it did it was very slow.
+Other C++ compilers may work but may require tweaking the make file.
+
+To build SciTE for GTK+/Linux, use the Makefile_gtk like this:
+
+ make -f Makefile_gtk
+
+The current make file only supports static linking between SciTE and Scintilla.
+
+The SciTEGTK.properties file is better than the SciTEGlobal.properties for use
+on Linux/GTK+ as it specifies fonts that are likely to be installed.
+SciTE reads its SciTEGlobal.properties file from the user's home directory.
+
+
+*** Windows version ***
+
+A C++ compiler is required. Mingw32 GCC 2.9.5 is the compiler used
+for most development although Visual C++ is also supported.
+
+To compile with GCC, use make on the "makefile" file.
+
+ make
+
+To compile with VC++, use nmake on the "makefile_vc" file.
+
+ nmake /f makefile_vc
+