Index: Daodan/MinGW/msys/1.0/share/awk/assert.awk
===================================================================
--- Daodan/MinGW/msys/1.0/share/awk/assert.awk	(revision 1046)
+++ 	(revision )
@@ -1,20 +1,0 @@
-# assert --- assert that a condition is true. Otherwise exit.
-
-#
-# Arnold Robbins, arnold@skeeve.com, Public Domain
-# May, 1993
-
-function assert(condition, string)
-{
-    if (! condition) {
-        printf("%s:%d: assertion failed: %s\n",
-            FILENAME, FNR, string) > "/dev/stderr"
-        _assert_exit = 1
-        exit 1
-    }
-}
-
-END {
-    if (_assert_exit)
-        exit 1
-}
Index: Daodan/MinGW/msys/1.0/share/awk/bits2str.awk
===================================================================
--- Daodan/MinGW/msys/1.0/share/awk/bits2str.awk	(revision 1046)
+++ 	(revision )
@@ -1,16 +1,0 @@
-# bits2str --- turn a byte into readable 1's and 0's
-
-function bits2str(bits,        data, mask)
-{
-    if (bits == 0)
-        return "0"
-
-    mask = 1
-    for (; bits != 0; bits = rshift(bits, 1))
-        data = (and(bits, mask) ? "1" : "0") data
-
-    while ((length(data) % 8) != 0)
-        data = "0" data
-
-    return data
-}
Index: Daodan/MinGW/msys/1.0/share/awk/cliff_rand.awk
===================================================================
--- Daodan/MinGW/msys/1.0/share/awk/cliff_rand.awk	(revision 1046)
+++ 	(revision )
@@ -1,14 +1,0 @@
-# cliff_rand.awk --- generate Cliff random numbers
-#
-# Arnold Robbins, arnold@skeeve.com, Public Domain
-# December 2000
-
-BEGIN { _cliff_seed = 0.1 }
-
-function cliff_rand()
-{
-    _cliff_seed = (100 * log(_cliff_seed)) % 1
-    if (_cliff_seed < 0)
-        _cliff_seed = - _cliff_seed
-    return _cliff_seed
-}
Index: Daodan/MinGW/msys/1.0/share/awk/ctime.awk
===================================================================
--- Daodan/MinGW/msys/1.0/share/awk/ctime.awk	(revision 1046)
+++ 	(revision )
@@ -1,11 +1,0 @@
-# ctime.awk
-#
-# awk version of C ctime(3) function
-
-function ctime(ts,    format)
-{
-    format = "%a %b %d %H:%M:%S %Z %Y"
-    if (ts == 0)
-        ts = systime()       # use current time as default
-    return strftime(format, ts)
-}
Index: Daodan/MinGW/msys/1.0/share/awk/ftrans.awk
===================================================================
--- Daodan/MinGW/msys/1.0/share/awk/ftrans.awk	(revision 1046)
+++ 	(revision )
@@ -1,15 +1,0 @@
-# ftrans.awk --- handle data file transitions
-#
-# user supplies beginfile() and endfile() functions
-#
-# Arnold Robbins, arnold@skeeve.com, Public Domain
-# November 1992
-
-FNR == 1 {
-    if (_filename_ != "")
-        endfile(_filename_)
-    _filename_ = FILENAME
-    beginfile(FILENAME)
-}
-
-END  { endfile(_filename_) }
Index: Daodan/MinGW/msys/1.0/share/awk/getopt.awk
===================================================================
--- Daodan/MinGW/msys/1.0/share/awk/getopt.awk	(revision 1046)
+++ 	(revision )
@@ -1,80 +1,0 @@
-# getopt.awk --- do C library getopt(3) function in awk
-#
-# Arnold Robbins, arnold@skeeve.com, Public Domain
-#
-# Initial version: March, 1991
-# Revised: May, 1993
-
-# External variables:
-#    Optind -- index in ARGV of first nonoption argument
-#    Optarg -- string value of argument to current option
-#    Opterr -- if nonzero, print our own diagnostic
-#    Optopt -- current option letter
-
-# Returns:
-#    -1     at end of options
-#    ?      for unrecognized option
-#    <c>    a character representing the current option
-
-# Private Data:
-#    _opti  -- index in multi-flag option, e.g., -abc
-function getopt(argc, argv, options,    thisopt, i)
-{
-    if (length(options) == 0)    # no options given
-        return -1
-
-    if (argv[Optind] == "--") {  # all done
-        Optind++
-        _opti = 0
-        return -1
-    } else if (argv[Optind] !~ /^-[^: \t\n\f\r\v\b]/) {
-        _opti = 0
-        return -1
-    }
-    if (_opti == 0)
-        _opti = 2
-    thisopt = substr(argv[Optind], _opti, 1)
-    Optopt = thisopt
-    i = index(options, thisopt)
-    if (i == 0) {
-        if (Opterr)
-            printf("%c -- invalid option\n",
-                                  thisopt) > "/dev/stderr"
-        if (_opti >= length(argv[Optind])) {
-            Optind++
-            _opti = 0
-        } else
-            _opti++
-        return "?"
-    }
-    if (substr(options, i + 1, 1) == ":") {
-        # get option argument
-        if (length(substr(argv[Optind], _opti + 1)) > 0)
-            Optarg = substr(argv[Optind], _opti + 1)
-        else
-            Optarg = argv[++Optind]
-        _opti = 0
-    } else
-        Optarg = ""
-    if (_opti == 0 || _opti >= length(argv[Optind])) {
-        Optind++
-        _opti = 0
-    } else
-        _opti++
-    return thisopt
-}
-BEGIN {
-    Opterr = 1    # default is to diagnose
-    Optind = 1    # skip ARGV[0]
-
-    # test program
-    if (_getopt_test) {
-        while ((_go_c = getopt(ARGC, ARGV, "ab:cd")) != -1)
-            printf("c = <%c>, optarg = <%s>\n",
-                                       _go_c, Optarg)
-        printf("non-option arguments:\n")
-        for (; Optind < ARGC; Optind++)
-            printf("\tARGV[%d] = <%s>\n",
-                                    Optind, ARGV[Optind])
-    }
-}
Index: Daodan/MinGW/msys/1.0/share/awk/gettime.awk
===================================================================
--- Daodan/MinGW/msys/1.0/share/awk/gettime.awk	(revision 1046)
+++ 	(revision )
@@ -1,62 +1,0 @@
-# gettimeofday.awk --- get the time of day in a usable format
-#
-# Arnold Robbins, arnold@skeeve.com, Public Domain, May 1993
-#
-
-# Returns a string in the format of output of date(1)
-# Populates the array argument time with individual values:
-#    time["second"]       -- seconds (0 - 59)
-#    time["minute"]       -- minutes (0 - 59)
-#    time["hour"]         -- hours (0 - 23)
-#    time["althour"]      -- hours (0 - 12)
-#    time["monthday"]     -- day of month (1 - 31)
-#    time["month"]        -- month of year (1 - 12)
-#    time["monthname"]    -- name of the month
-#    time["shortmonth"]   -- short name of the month
-#    time["year"]         -- year modulo 100 (0 - 99)
-#    time["fullyear"]     -- full year
-#    time["weekday"]      -- day of week (Sunday = 0)
-#    time["altweekday"]   -- day of week (Monday = 0)
-#    time["dayname"]      -- name of weekday
-#    time["shortdayname"] -- short name of weekday
-#    time["yearday"]      -- day of year (0 - 365)
-#    time["timezone"]     -- abbreviation of timezone name
-#    time["ampm"]         -- AM or PM designation
-#    time["weeknum"]      -- week number, Sunday first day
-#    time["altweeknum"]   -- week number, Monday first day
-
-function gettimeofday(time,    ret, now, i)
-{
-    # get time once, avoids unnecessary system calls
-    now = systime()
-
-    # return date(1)-style output
-    ret = strftime("%a %b %d %H:%M:%S %Z %Y", now)
-
-    # clear out target array
-    delete time
-
-    # fill in values, force numeric values to be
-    # numeric by adding 0
-    time["second"]       = strftime("%S", now) + 0
-    time["minute"]       = strftime("%M", now) + 0
-    time["hour"]         = strftime("%H", now) + 0
-    time["althour"]      = strftime("%I", now) + 0
-    time["monthday"]     = strftime("%d", now) + 0
-    time["month"]        = strftime("%m", now) + 0
-    time["monthname"]    = strftime("%B", now)
-    time["shortmonth"]   = strftime("%b", now)
-    time["year"]         = strftime("%y", now) + 0
-    time["fullyear"]     = strftime("%Y", now) + 0
-    time["weekday"]      = strftime("%w", now) + 0
-    time["altweekday"]   = strftime("%u", now) + 0
-    time["dayname"]      = strftime("%A", now)
-    time["shortdayname"] = strftime("%a", now)
-    time["yearday"]      = strftime("%j", now) + 0
-    time["timezone"]     = strftime("%Z", now)
-    time["ampm"]         = strftime("%p", now)
-    time["weeknum"]      = strftime("%U", now) + 0
-    time["altweeknum"]   = strftime("%W", now) + 0
-
-    return ret
-}
Index: Daodan/MinGW/msys/1.0/share/awk/group.awk
===================================================================
--- Daodan/MinGW/msys/1.0/share/awk/group.awk	(revision 1046)
+++ 	(revision )
@@ -1,87 +1,0 @@
-# group.awk --- functions for dealing with the group file
-#
-# Arnold Robbins, arnold@skeeve.com, Public Domain
-# May 1993
-# Revised October 2000
-
-BEGIN    \
-{
-    # Change to suit your system
-    _gr_awklib = "/usr/sbin/awk/"
-}
-
-function _gr_init(    oldfs, oldrs, olddol0, grcat,
-                             using_fw, n, a, i)
-{
-    if (_gr_inited)
-        return
-
-    oldfs = FS
-    oldrs = RS
-    olddol0 = $0
-    using_fw = (PROCINFO["FS"] == "FIELDWIDTHS")
-    FS = ":"
-    RS = "\n"
-
-    grcat = _gr_awklib "grcat"
-    while ((grcat | getline) > 0) {
-        if ($1 in _gr_byname)
-            _gr_byname[$1] = _gr_byname[$1] "," $4
-        else
-            _gr_byname[$1] = $0
-        if ($3 in _gr_bygid)
-            _gr_bygid[$3] = _gr_bygid[$3] "," $4
-        else
-            _gr_bygid[$3] = $0
-
-        n = split($4, a, "[ \t]*,[ \t]*")
-        for (i = 1; i <= n; i++)
-            if (a[i] in _gr_groupsbyuser)
-                _gr_groupsbyuser[a[i]] = \
-                    _gr_groupsbyuser[a[i]] " " $1
-            else
-                _gr_groupsbyuser[a[i]] = $1
-
-        _gr_bycount[++_gr_count] = $0
-    }
-    close(grcat)
-    _gr_count = 0
-    _gr_inited++
-    FS = oldfs
-    if (using_fw)
-        FIELDWIDTHS = FIELDWIDTHS
-    RS = oldrs
-    $0 = olddol0
-}
-function getgrnam(group)
-{
-    _gr_init()
-    if (group in _gr_byname)
-        return _gr_byname[group]
-    return ""
-}
-function getgrgid(gid)
-{
-    _gr_init()
-    if (gid in _gr_bygid)
-        return _gr_bygid[gid]
-    return ""
-}
-function getgruser(user)
-{
-    _gr_init()
-    if (user in _gr_groupsbyuser)
-        return _gr_groupsbyuser[user]
-    return ""
-}
-function getgrent()
-{
-    _gr_init()
-    if (++_gr_count in _gr_bycount)
-        return _gr_bycount[_gr_count]
-    return ""
-}
-function endgrent()
-{
-    _gr_count = 0
-}
Index: Daodan/MinGW/msys/1.0/share/awk/join.awk
===================================================================
--- Daodan/MinGW/msys/1.0/share/awk/join.awk	(revision 1046)
+++ 	(revision )
@@ -1,16 +1,0 @@
-# join.awk --- join an array into a string
-#
-# Arnold Robbins, arnold@skeeve.com, Public Domain
-# May 1993
-
-function join(array, start, end, sep,    result, i)
-{
-    if (sep == "")
-       sep = " "
-    else if (sep == SUBSEP) # magic value
-       sep = ""
-    result = array[start]
-    for (i = start + 1; i <= end; i++)
-        result = result sep array[i]
-    return result
-}
Index: Daodan/MinGW/msys/1.0/share/awk/libintl.awk
===================================================================
--- Daodan/MinGW/msys/1.0/share/awk/libintl.awk	(revision 1046)
+++ 	(revision )
@@ -1,14 +1,0 @@
-function bindtextdomain(dir, domain)
-{
-    return dir
-}
-
-function dcgettext(string, domain, category)
-{
-    return string
-}
-
-function dcngettext(string1, string2, number, domain, category)
-{
-    return (number == 1 ? string1 : string2)
-}
Index: Daodan/MinGW/msys/1.0/share/awk/nextfile.awk
===================================================================
--- Daodan/MinGW/msys/1.0/share/awk/nextfile.awk	(revision 1046)
+++ 	(revision )
@@ -1,16 +1,0 @@
-# nextfile --- skip remaining records in current file
-# correctly handle successive occurrences of the same file
-#
-# Arnold Robbins, arnold@skeeve.com, Public Domain
-# May, 1993
-
-# this should be read in before the "main" awk program
-
-function nextfile()   { _abandon_ = FILENAME; next }
-
-_abandon_ == FILENAME {
-      if (FNR == 1)
-          _abandon_ = ""
-      else
-          next
-}
Index: Daodan/MinGW/msys/1.0/share/awk/noassign.awk
===================================================================
--- Daodan/MinGW/msys/1.0/share/awk/noassign.awk	(revision 1046)
+++ 	(revision )
@@ -1,17 +1,0 @@
-# noassign.awk --- library file to avoid the need for a
-# special option that disables command-line assignments
-#
-# Arnold Robbins, arnold@skeeve.com, Public Domain
-# October 1999
-
-function disable_assigns(argc, argv,    i)
-{
-    for (i = 1; i < argc; i++)
-        if (argv[i] ~ /^[A-Za-z_][A-Za-z_0-9]*=.*/)
-            argv[i] = ("./" argv[i])
-}
-
-BEGIN {
-    if (No_command_assign)
-        disable_assigns(ARGC, ARGV)
-}
Index: Daodan/MinGW/msys/1.0/share/awk/ord.awk
===================================================================
--- Daodan/MinGW/msys/1.0/share/awk/ord.awk	(revision 1046)
+++ 	(revision )
@@ -1,44 +1,0 @@
-# ord.awk --- do ord and chr
-
-# Global identifiers:
-#    _ord_:        numerical values indexed by characters
-#    _ord_init:    function to initialize _ord_
-#
-# Arnold Robbins, arnold@skeeve.com, Public Domain
-# 16 January, 1992
-# 20 July, 1992, revised
-
-BEGIN    { _ord_init() }
-
-function _ord_init(    low, high, i, t)
-{
-    low = sprintf("%c", 7) # BEL is ascii 7
-    if (low == "\a") {    # regular ascii
-        low = 0
-        high = 127
-    } else if (sprintf("%c", 128 + 7) == "\a") {
-        # ascii, mark parity
-        low = 128
-        high = 255
-    } else {        # ebcdic(!)
-        low = 0
-        high = 255
-    }
-
-    for (i = low; i <= high; i++) {
-        t = sprintf("%c", i)
-        _ord_[t] = i
-    }
-}
-function ord(str,    c)
-{
-    # only first character is of interest
-    c = substr(str, 1, 1)
-    return _ord_[c]
-}
-
-function chr(c)
-{
-    # force c to be numeric by adding 0
-    return sprintf("%c", c + 0)
-}
Index: Daodan/MinGW/msys/1.0/share/awk/passwd.awk
===================================================================
--- Daodan/MinGW/msys/1.0/share/awk/passwd.awk	(revision 1046)
+++ 	(revision )
@@ -1,63 +1,0 @@
-# passwd.awk --- access password file information
-#
-# Arnold Robbins, arnold@skeeve.com, Public Domain
-# May 1993
-# Revised October 2000
-
-BEGIN {
-    # tailor this to suit your system
-    _pw_awklib = "/usr/sbin/awk/"
-}
-
-function _pw_init(    oldfs, oldrs, olddol0, pwcat, using_fw)
-{
-    if (_pw_inited)
-        return
-
-    oldfs = FS
-    oldrs = RS
-    olddol0 = $0
-    using_fw = (PROCINFO["FS"] == "FIELDWIDTHS")
-    FS = ":"
-    RS = "\n"
-
-    pwcat = _pw_awklib "pwcat"
-    while ((pwcat | getline) > 0) {
-        _pw_byname[$1] = $0
-        _pw_byuid[$3] = $0
-        _pw_bycount[++_pw_total] = $0
-    }
-    close(pwcat)
-    _pw_count = 0
-    _pw_inited = 1
-    FS = oldfs
-    if (using_fw)
-        FIELDWIDTHS = FIELDWIDTHS
-    RS = oldrs
-    $0 = olddol0
-}
-function getpwnam(name)
-{
-    _pw_init()
-    if (name in _pw_byname)
-        return _pw_byname[name]
-    return ""
-}
-function getpwuid(uid)
-{
-    _pw_init()
-    if (uid in _pw_byuid)
-        return _pw_byuid[uid]
-    return ""
-}
-function getpwent()
-{
-    _pw_init()
-    if (_pw_count < _pw_total)
-        return _pw_bycount[++_pw_count]
-    return ""
-}
-function endpwent()
-{
-    _pw_count = 0
-}
Index: Daodan/MinGW/msys/1.0/share/awk/readable.awk
===================================================================
--- Daodan/MinGW/msys/1.0/share/awk/readable.awk	(revision 1046)
+++ 	(revision )
@@ -1,16 +1,0 @@
-# readable.awk --- library file to skip over unreadable files
-#
-# Arnold Robbins, arnold@skeeve.com, Public Domain
-# October 2000
-
-BEGIN {
-    for (i = 1; i < ARGC; i++) {
-        if (ARGV[i] ~ /^[A-Za-z_][A-Za-z0-9_]*=.*/ \
-            || ARGV[i] == "-")
-            continue    # assignment or standard input
-        else if ((getline junk < ARGV[i]) < 0) # unreadable
-            delete ARGV[i]
-        else
-            close(ARGV[i])
-    }
-}
Index: Daodan/MinGW/msys/1.0/share/awk/rewind.awk
===================================================================
--- Daodan/MinGW/msys/1.0/share/awk/rewind.awk	(revision 1046)
+++ 	(revision )
@@ -1,20 +1,0 @@
-# rewind.awk --- rewind the current file and start over
-#
-# Arnold Robbins, arnold@skeeve.com, Public Domain
-# September 2000
-
-function rewind(    i)
-{
-    # shift remaining arguments up
-    for (i = ARGC; i > ARGIND; i--)
-        ARGV[i] = ARGV[i-1]
-
-    # make sure gawk knows to keep going
-    ARGC++
-
-    # make current file next to get done
-    ARGV[ARGIND+1] = FILENAME
-
-    # do it
-    nextfile
-}
Index: Daodan/MinGW/msys/1.0/share/awk/round.awk
===================================================================
--- Daodan/MinGW/msys/1.0/share/awk/round.awk	(revision 1046)
+++ 	(revision )
@@ -1,29 +1,0 @@
-# round.awk --- do normal rounding
-#
-# Arnold Robbins, arnold@skeeve.com, Public Domain
-# August, 1996
-
-function round(x,   ival, aval, fraction)
-{
-   ival = int(x)    # integer part, int() truncates
-
-   # see if fractional part
-   if (ival == x)   # no fraction
-      return ival   # ensure no decimals
-
-   if (x < 0) {
-      aval = -x     # absolute value
-      ival = int(aval)
-      fraction = aval - ival
-      if (fraction >= .5)
-         return int(x) - 1   # -2.5 --> -3
-      else
-         return int(x)       # -2.3 --> -2
-   } else {
-      fraction = x - ival
-      if (fraction >= .5)
-         return ival + 1
-      else
-         return ival
-   }
-}
Index: Daodan/MinGW/msys/1.0/share/awk/strtonum.awk
===================================================================
--- Daodan/MinGW/msys/1.0/share/awk/strtonum.awk	(revision 1046)
+++ 	(revision )
@@ -1,56 +1,0 @@
-# strtonum --- convert string to number
-
-#
-# Arnold Robbins, arnold@skeeve.com, Public Domain
-# February, 2004
-
-function mystrtonum(str,        ret, chars, n, i, k, c)
-{
-    if (str ~ /^0[0-7]*$/) {
-        # octal
-        n = length(str)
-        ret = 0
-        for (i = 1; i <= n; i++) {
-            c = substr(str, i, 1)
-            if ((k = index("01234567", c)) > 0)
-                k-- # adjust for 1-basing in awk
-
-            ret = ret * 8 + k
-        }
-    } else if (str ~ /^0[xX][0-9a-fA-f]+/) {
-        # hexadecimal
-        str = substr(str, 3)    # lop off leading 0x
-        n = length(str)
-        ret = 0
-        for (i = 1; i <= n; i++) {
-            c = substr(str, i, 1)
-            c = tolower(c)
-            if ((k = index("0123456789", c)) > 0)
-                k-- # adjust for 1-basing in awk
-            else if ((k = index("abcdef", c)) > 0)
-                k += 9
-
-            ret = ret * 16 + k
-        }
-    } else if (str ~ /^[-+]?([0-9]+([.][0-9]*([Ee][0-9]+)?)?|([.][0-9]+([Ee][-+]?[0-9]+)?))$/) {
-        # decimal number, possibly floating point
-        ret = str + 0
-    } else
-        ret = "NOT-A-NUMBER"
-
-    return ret
-}
-
-# BEGIN {     # gawk test harness
-#     a[1] = "25"
-#     a[2] = ".31"
-#     a[3] = "0123"
-#     a[4] = "0xdeadBEEF"
-#     a[5] = "123.45"
-#     a[6] = "1.e3"
-#     a[7] = "1.32"
-#     a[7] = "1.32E2"
-# 
-#     for (i = 1; i in a; i++)
-#         print a[i], strtonum(a[i]), mystrtonum(a[i])
-# }
Index: Daodan/MinGW/msys/1.0/share/awk/zerofile.awk
===================================================================
--- Daodan/MinGW/msys/1.0/share/awk/zerofile.awk	(revision 1046)
+++ 	(revision )
@@ -1,19 +1,0 @@
-# zerofile.awk --- library file to process empty input files
-#
-# Arnold Robbins, arnold@skeeve.com, Public Domain
-# June 2003
-
-BEGIN { Argind = 0 }
-
-ARGIND > Argind + 1 {
-    for (Argind++; Argind < ARGIND; Argind++)
-        zerofile(ARGV[Argind], Argind)
-}
-
-ARGIND != Argind { Argind = ARGIND }
-
-END {
-    if (ARGIND > Argind)
-        for (Argind++; Argind <= ARGIND; Argind++)
-            zerofile(ARGV[Argind], Argind)
-}
Index: Daodan/MinGW/msys/1.0/share/doc/MSYS/COPYING
===================================================================
--- Daodan/MinGW/msys/1.0/share/doc/MSYS/COPYING	(revision 1046)
+++ 	(revision )
@@ -1,345 +1,0 @@
-		    GNU GENERAL PUBLIC LICENSE
-		       Version 2, June 1991
-
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.
-                       59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-			    Preamble
-
-  The licenses for most software are designed to take away your
-freedom to share and change it.  By contrast, the GNU General Public
-License is intended to guarantee your freedom to share and change free
-software--to make sure the software is free for all its users.  This
-General Public License applies to most of the Free Software
-Foundation's software and to any other program whose authors commit to
-using it.  (Some other Free Software Foundation software is covered by
-the GNU Library General Public License instead.)  You can apply it to
-your programs, too.
-
-  When we speak of free software, we are referring to freedom, not
-price.  Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-this service if you wish), that you receive source code or can get it
-if you want it, that you can change the software or use pieces of it
-in new free programs; and that you know you can do these things.
-
-  To protect your rights, we need to make restrictions that forbid
-anyone to deny you these rights or to ask you to surrender the rights.
-These restrictions translate to certain responsibilities for you if you
-distribute copies of the software, or if you modify it.
-
-  For example, if you distribute copies of such a program, whether
-gratis or for a fee, you must give the recipients all the rights that
-you have.  You must make sure that they, too, receive or can get the
-source code.  And you must show them these terms so they know their
-rights.
-
-  We protect your rights with two steps: (1) copyright the software, and
-(2) offer you this license which gives you legal permission to copy,
-distribute and/or modify the software.
-
-  Also, for each author's protection and ours, we want to make certain
-that everyone understands that there is no warranty for this free
-software.  If the software is modified by someone else and passed on, we
-want its recipients to know that what they have is not the original, so
-that any problems introduced by others will not reflect on the original
-authors' reputations.
-
-  Finally, any free program is threatened constantly by software
-patents.  We wish to avoid the danger that redistributors of a free
-program will individually obtain patent licenses, in effect making the
-program proprietary.  To prevent this, we have made it clear that any
-patent must be licensed for everyone's free use or not licensed at all.
-
-  The precise terms and conditions for copying, distribution and
-modification follow.
-
-
-		    GNU GENERAL PUBLIC LICENSE
-   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
-  0. This License applies to any program or other work which contains
-a notice placed by the copyright holder saying it may be distributed
-under the terms of this General Public License.  The "Program", below,
-refers to any such program or work, and a "work based on the Program"
-means either the Program or any derivative work under copyright law:
-that is to say, a work containing the Program or a portion of it,
-either verbatim or with modifications and/or translated into another
-language.  (Hereinafter, translation is included without limitation in
-the term "modification".)  Each licensee is addressed as "you".
-
-Activities other than copying, distribution and modification are not
-covered by this License; they are outside its scope.  The act of
-running the Program is not restricted, and the output from the Program
-is covered only if its contents constitute a work based on the
-Program (independent of having been made by running the Program).
-Whether that is true depends on what the Program does.
-
-  1. You may copy and distribute verbatim copies of the Program's
-source code as you receive it, in any medium, provided that you
-conspicuously and appropriately publish on each copy an appropriate
-copyright notice and disclaimer of warranty; keep intact all the
-notices that refer to this License and to the absence of any warranty;
-and give any other recipients of the Program a copy of this License
-along with the Program.
-
-You may charge a fee for the physical act of transferring a copy, and
-you may at your option offer warranty protection in exchange for a fee.
-
-  2. You may modify your copy or copies of the Program or any portion
-of it, thus forming a work based on the Program, and copy and
-distribute such modifications or work under the terms of Section 1
-above, provided that you also meet all of these conditions:
-
-    a) You must cause the modified files to carry prominent notices
-    stating that you changed the files and the date of any change.
-
-    b) You must cause any work that you distribute or publish, that in
-    whole or in part contains or is derived from the Program or any
-    part thereof, to be licensed as a whole at no charge to all third
-    parties under the terms of this License.
-
-    c) If the modified program normally reads commands interactively
-    when run, you must cause it, when started running for such
-    interactive use in the most ordinary way, to print or display an
-    announcement including an appropriate copyright notice and a
-    notice that there is no warranty (or else, saying that you provide
-    a warranty) and that users may redistribute the program under
-    these conditions, and telling the user how to view a copy of this
-    License.  (Exception: if the Program itself is interactive but
-    does not normally print such an announcement, your work based on
-    the Program is not required to print an announcement.)
-
-
-These requirements apply to the modified work as a whole.  If
-identifiable sections of that work are not derived from the Program,
-and can be reasonably considered independent and separate works in
-themselves, then this License, and its terms, do not apply to those
-sections when you distribute them as separate works.  But when you
-distribute the same sections as part of a whole which is a work based
-on the Program, the distribution of the whole must be on the terms of
-this License, whose permissions for other licensees extend to the
-entire whole, and thus to each and every part regardless of who wrote it.
-
-Thus, it is not the intent of this section to claim rights or contest
-your rights to work written entirely by you; rather, the intent is to
-exercise the right to control the distribution of derivative or
-collective works based on the Program.
-
-In addition, mere aggregation of another work not based on the Program
-with the Program (or with a work based on the Program) on a volume of
-a storage or distribution medium does not bring the other work under
-the scope of this License.
-
-  3. You may copy and distribute the Program (or a work based on it,
-under Section 2) in object code or executable form under the terms of
-Sections 1 and 2 above provided that you also do one of the following:
-
-    a) Accompany it with the complete corresponding machine-readable
-    source code, which must be distributed under the terms of Sections
-    1 and 2 above on a medium customarily used for software interchange; or,
-
-    b) Accompany it with a written offer, valid for at least three
-    years, to give any third party, for a charge no more than your
-    cost of physically performing source distribution, a complete
-    machine-readable copy of the corresponding source code, to be
-    distributed under the terms of Sections 1 and 2 above on a medium
-    customarily used for software interchange; or,
-
-    c) Accompany it with the information you received as to the offer
-    to distribute corresponding source code.  (This alternative is
-    allowed only for noncommercial distribution and only if you
-    received the program in object code or executable form with such
-    an offer, in accord with Subsection b above.)
-
-The source code for a work means the preferred form of the work for
-making modifications to it.  For an executable work, complete source
-code means all the source code for all modules it contains, plus any
-associated interface definition files, plus the scripts used to
-control compilation and installation of the executable.  However, as a
-special exception, the source code distributed need not include
-anything that is normally distributed (in either source or binary
-form) with the major components (compiler, kernel, and so on) of the
-operating system on which the executable runs, unless that component
-itself accompanies the executable.
-
-If distribution of executable or object code is made by offering
-access to copy from a designated place, then offering equivalent
-access to copy the source code from the same place counts as
-distribution of the source code, even though third parties are not
-compelled to copy the source along with the object code.
-
-
-  4. You may not copy, modify, sublicense, or distribute the Program
-except as expressly provided under this License.  Any attempt
-otherwise to copy, modify, sublicense or distribute the Program is
-void, and will automatically terminate your rights under this License.
-However, parties who have received copies, or rights, from you under
-this License will not have their licenses terminated so long as such
-parties remain in full compliance.
-
-  5. You are not required to accept this License, since you have not
-signed it.  However, nothing else grants you permission to modify or
-distribute the Program or its derivative works.  These actions are
-prohibited by law if you do not accept this License.  Therefore, by
-modifying or distributing the Program (or any work based on the
-Program), you indicate your acceptance of this License to do so, and
-all its terms and conditions for copying, distributing or modifying
-the Program or works based on it.
-
-  6. Each time you redistribute the Program (or any work based on the
-Program), the recipient automatically receives a license from the
-original licensor to copy, distribute or modify the Program subject to
-these terms and conditions.  You may not impose any further
-restrictions on the recipients' exercise of the rights granted herein.
-You are not responsible for enforcing compliance by third parties to
-this License.
-
-  7. If, as a consequence of a court judgment or allegation of patent
-infringement or for any other reason (not limited to patent issues),
-conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License.  If you cannot
-distribute so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you
-may not distribute the Program at all.  For example, if a patent
-license would not permit royalty-free redistribution of the Program by
-all those who receive copies directly or indirectly through you, then
-the only way you could satisfy both it and this License would be to
-refrain entirely from distribution of the Program.
-
-If any portion of this section is held invalid or unenforceable under
-any particular circumstance, the balance of the section is intended to
-apply and the section as a whole is intended to apply in other
-circumstances.
-
-It is not the purpose of this section to induce you to infringe any
-patents or other property right claims or to contest validity of any
-such claims; this section has the sole purpose of protecting the
-integrity of the free software distribution system, which is
-implemented by public license practices.  Many people have made
-generous contributions to the wide range of software distributed
-through that system in reliance on consistent application of that
-system; it is up to the author/donor to decide if he or she is willing
-to distribute software through any other system and a licensee cannot
-impose that choice.
-
-This section is intended to make thoroughly clear what is believed to
-be a consequence of the rest of this License.
-
-
-  8. If the distribution and/or use of the Program is restricted in
-certain countries either by patents or by copyrighted interfaces, the
-original copyright holder who places the Program under this License
-may add an explicit geographical distribution limitation excluding
-those countries, so that distribution is permitted only in or among
-countries not thus excluded.  In such case, this License incorporates
-the limitation as if written in the body of this License.
-
-  9. The Free Software Foundation may publish revised and/or new versions
-of the General Public License from time to time.  Such new versions will
-be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
-Each version is given a distinguishing version number.  If the Program
-specifies a version number of this License which applies to it and "any
-later version", you have the option of following the terms and conditions
-either of that version or of any later version published by the Free
-Software Foundation.  If the Program does not specify a version number of
-this License, you may choose any version ever published by the Free Software
-Foundation.
-
-  10. If you wish to incorporate parts of the Program into other free
-programs whose distribution conditions are different, write to the author
-to ask for permission.  For software which is copyrighted by the Free
-Software Foundation, write to the Free Software Foundation; we sometimes
-make exceptions for this.  Our decision will be guided by the two goals
-of preserving the free status of all derivatives of our free software and
-of promoting the sharing and reuse of software generally.
-
-			    NO WARRANTY
-
-  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
-FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
-OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
-PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
-OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
-TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
-PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
-REPAIR OR CORRECTION.
-
-  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
-REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
-INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
-OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
-TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
-YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
-PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGES.
-
-		     END OF TERMS AND CONDITIONS
-
-
-	    How to Apply These Terms to Your New Programs
-
-  If you develop a new program, and you want it to be of the greatest
-possible use to the public, the best way to achieve this is to make it
-free software which everyone can redistribute and change under these terms.
-
-  To do so, attach the following notices to the program.  It is safest
-to attach them to the start of each source file to most effectively
-convey the exclusion of warranty; and each file should have at least
-the "copyright" line and a pointer to where the full notice is found.
-
-    <one line to give the program's name and a brief idea of what it does.>
-    Copyright (C) 19yy  <name of author>
-
-    This program is free software; you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation; either version 2 of the License, or
-    (at your option) any later version.
-
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with this program; if not, write to the Free Software
-    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-
-
-Also add information on how to contact you by electronic and paper mail.
-
-If the program is interactive, make it output a short notice like this
-when it starts in an interactive mode:
-
-    Gnomovision version 69, Copyright (C) 19yy name of author
-    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
-    This is free software, and you are welcome to redistribute it
-    under certain conditions; type `show c' for details.
-
-The hypothetical commands `show w' and `show c' should show the appropriate
-parts of the General Public License.  Of course, the commands you use may
-be called something other than `show w' and `show c'; they could even be
-mouse-clicks or menu items--whatever suits your program.
-
-You should also get your employer (if you work as a programmer) or your
-school, if any, to sign a "copyright disclaimer" for the program, if
-necessary.  Here is a sample; alter the names:
-
-  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
-  `Gnomovision' (which makes passes at compilers) written by James Hacker.
-
-  <signature of Ty Coon>, 1 April 1989
-  Ty Coon, President of Vice
-
-This General Public License does not permit incorporating your program into
-proprietary programs.  If your program is a subroutine library, you may
-consider it more useful to permit linking proprietary applications with the
-library.  If this is what you want to do, use the GNU Library General
-Public License instead of this License.
Index: Daodan/MinGW/msys/1.0/share/doc/MSYS/COPYING.LIB
===================================================================
--- Daodan/MinGW/msys/1.0/share/doc/MSYS/COPYING.LIB	(revision 1046)
+++ 	(revision )
@@ -1,491 +1,0 @@
-		  GNU LIBRARY GENERAL PUBLIC LICENSE
-		       Version 2, June 1991
-
- Copyright (C) 1991 Free Software Foundation, Inc.
- 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-[This is the first released version of the library GPL.  It is
- numbered 2 because it goes with version 2 of the ordinary GPL.]
-
-			    Preamble
-
-  The licenses for most software are designed to take away your
-freedom to share and change it.  By contrast, the GNU General Public
-Licenses are intended to guarantee your freedom to share and change
-free software--to make sure the software is free for all its users.
-
-  This license, the Library General Public License, applies to some
-specially designated Free Software Foundation software, and to any
-other libraries whose authors decide to use it.  You can use it for
-your libraries, too.
-
-  When we speak of free software, we are referring to freedom, not
-price.  Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-this service if you wish), that you receive source code or can get it
-if you want it, that you can change the software or use pieces of it
-in new free programs; and that you know you can do these things.
-
-  To protect your rights, we need to make restrictions that forbid
-anyone to deny you these rights or to ask you to surrender the rights.
-These restrictions translate to certain responsibilities for you if
-you distribute copies of the library, or if you modify it.
-
-  For example, if you distribute copies of the library, whether gratis
-or for a fee, you must give the recipients all the rights that we gave
-you.  You must make sure that they, too, receive or can get the source
-code.  If you link a program with the library, you must provide
-complete object files to the recipients so that they can relink them
-with the library, after making changes to the library and recompiling
-it.  And you must show them these terms so they know their rights.
-
-  Our method of protecting your rights has two steps: (1) copyright
-the library, and (2) offer you this license which gives you legal
-permission to copy, distribute and/or modify the library.
-
-  Also, for each distributor's protection, we want to make certain
-that everyone understands that there is no warranty for this free
-library.  If the library is modified by someone else and passed on, we
-want its recipients to know that what they have is not the original
-version, so that any problems introduced by others will not reflect on
-the original authors' reputations.
-
-
-  Finally, any free program is threatened constantly by software
-patents.  We wish to avoid the danger that companies distributing free
-software will individually obtain patent licenses, thus in effect
-transforming the program into proprietary software.  To prevent this,
-we have made it clear that any patent must be licensed for everyone's
-free use or not licensed at all.
-
-  Most GNU software, including some libraries, is covered by the ordinary
-GNU General Public License, which was designed for utility programs.  This
-license, the GNU Library General Public License, applies to certain
-designated libraries.  This license is quite different from the ordinary
-one; be sure to read it in full, and don't assume that anything in it is
-the same as in the ordinary license.
-
-  The reason we have a separate public license for some libraries is that
-they blur the distinction we usually make between modifying or adding to a
-program and simply using it.  Linking a program with a library, without
-changing the library, is in some sense simply using the library, and is
-analogous to running a utility program or application program.  However, in
-a textual and legal sense, the linked executable is a combined work, a
-derivative of the original library, and the ordinary General Public License
-treats it as such.
-
-  Because of this blurred distinction, using the ordinary General
-Public License for libraries did not effectively promote software
-sharing, because most developers did not use the libraries.  We
-concluded that weaker conditions might promote sharing better.
-
-  However, unrestricted linking of non-free programs would deprive the
-users of those programs of all benefit from the free status of the
-libraries themselves.  This Library General Public License is intended to
-permit developers of non-free programs to use free libraries, while
-preserving your freedom as a user of such programs to change the free
-libraries that are incorporated in them.  (We have not seen how to achieve
-this as regards changes in header files, but we have achieved it as regards
-changes in the actual functions of the Library.)  The hope is that this
-will lead to faster development of free libraries.
-
-  The precise terms and conditions for copying, distribution and
-modification follow.  Pay close attention to the difference between a
-"work based on the library" and a "work that uses the library".  The
-former contains code derived from the library, while the latter only
-works together with the library.
-
-  Note that it is possible for a library to be covered by the ordinary
-General Public License rather than by this special one.
-
-
-		  GNU LIBRARY GENERAL PUBLIC LICENSE
-   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
-  0. This License Agreement applies to any software library which
-contains a notice placed by the copyright holder or other authorized
-party saying it may be distributed under the terms of this Library
-General Public License (also called "this License").  Each licensee is
-addressed as "you".
-
-  A "library" means a collection of software functions and/or data
-prepared so as to be conveniently linked with application programs
-(which use some of those functions and data) to form executables.
-
-  The "Library", below, refers to any such software library or work
-which has been distributed under these terms.  A "work based on the
-Library" means either the Library or any derivative work under
-copyright law: that is to say, a work containing the Library or a
-portion of it, either verbatim or with modifications and/or translated
-straightforwardly into another language.  (Hereinafter, translation is
-included without limitation in the term "modification".)
-
-  "Source code" for a work means the preferred form of the work for
-making modifications to it.  For a library, complete source code means
-all the source code for all modules it contains, plus any associated
-interface definition files, plus the scripts used to control compilation
-and installation of the library.
-
-  Activities other than copying, distribution and modification are not
-covered by this License; they are outside its scope.  The act of
-running a program using the Library is not restricted, and output from
-such a program is covered only if its contents constitute a work based
-on the Library (independent of the use of the Library in a tool for
-writing it).  Whether that is true depends on what the Library does
-and what the program that uses the Library does.
-  
-  1. You may copy and distribute verbatim copies of the Library's
-complete source code as you receive it, in any medium, provided that
-you conspicuously and appropriately publish on each copy an
-appropriate copyright notice and disclaimer of warranty; keep intact
-all the notices that refer to this License and to the absence of any
-warranty; and distribute a copy of this License along with the
-Library.
-
-  You may charge a fee for the physical act of transferring a copy,
-and you may at your option offer warranty protection in exchange for a
-fee.
-
-
-  2. You may modify your copy or copies of the Library or any portion
-of it, thus forming a work based on the Library, and copy and
-distribute such modifications or work under the terms of Section 1
-above, provided that you also meet all of these conditions:
-
-    a) The modified work must itself be a software library.
-
-    b) You must cause the files modified to carry prominent notices
-    stating that you changed the files and the date of any change.
-
-    c) You must cause the whole of the work to be licensed at no
-    charge to all third parties under the terms of this License.
-
-    d) If a facility in the modified Library refers to a function or a
-    table of data to be supplied by an application program that uses
-    the facility, other than as an argument passed when the facility
-    is invoked, then you must make a good faith effort to ensure that,
-    in the event an application does not supply such function or
-    table, the facility still operates, and performs whatever part of
-    its purpose remains meaningful.
-
-    (For example, a function in a library to compute square roots has
-    a purpose that is entirely well-defined independent of the
-    application.  Therefore, Subsection 2d requires that any
-    application-supplied function or table used by this function must
-    be optional: if the application does not supply it, the square
-    root function must still compute square roots.)
-
-These requirements apply to the modified work as a whole.  If
-identifiable sections of that work are not derived from the Library,
-and can be reasonably considered independent and separate works in
-themselves, then this License, and its terms, do not apply to those
-sections when you distribute them as separate works.  But when you
-distribute the same sections as part of a whole which is a work based
-on the Library, the distribution of the whole must be on the terms of
-this License, whose permissions for other licensees extend to the
-entire whole, and thus to each and every part regardless of who wrote
-it.
-
-Thus, it is not the intent of this section to claim rights or contest
-your rights to work written entirely by you; rather, the intent is to
-exercise the right to control the distribution of derivative or
-collective works based on the Library.
-
-In addition, mere aggregation of another work not based on the Library
-with the Library (or with a work based on the Library) on a volume of
-a storage or distribution medium does not bring the other work under
-the scope of this License.
-
-  3. You may opt to apply the terms of the ordinary GNU General Public
-License instead of this License to a given copy of the Library.  To do
-this, you must alter all the notices that refer to this License, so
-that they refer to the ordinary GNU General Public License, version 2,
-instead of to this License.  (If a newer version than version 2 of the
-ordinary GNU General Public License has appeared, then you can specify
-that version instead if you wish.)  Do not make any other change in
-these notices.
-
-
-  Once this change is made in a given copy, it is irreversible for
-that copy, so the ordinary GNU General Public License applies to all
-subsequent copies and derivative works made from that copy.
-
-  This option is useful when you wish to copy part of the code of
-the Library into a program that is not a library.
-
-  4. You may copy and distribute the Library (or a portion or
-derivative of it, under Section 2) in object code or executable form
-under the terms of Sections 1 and 2 above provided that you accompany
-it with the complete corresponding machine-readable source code, which
-must be distributed under the terms of Sections 1 and 2 above on a
-medium customarily used for software interchange.
-
-  If distribution of object code is made by offering access to copy
-from a designated place, then offering equivalent access to copy the
-source code from the same place satisfies the requirement to
-distribute the source code, even though third parties are not
-compelled to copy the source along with the object code.
-
-  5. A program that contains no derivative of any portion of the
-Library, but is designed to work with the Library by being compiled or
-linked with it, is called a "work that uses the Library".  Such a
-work, in isolation, is not a derivative work of the Library, and
-therefore falls outside the scope of this License.
-
-  However, linking a "work that uses the Library" with the Library
-creates an executable that is a derivative of the Library (because it
-contains portions of the Library), rather than a "work that uses the
-library".  The executable is therefore covered by this License.
-Section 6 states terms for distribution of such executables.
-
-  When a "work that uses the Library" uses material from a header file
-that is part of the Library, the object code for the work may be a
-derivative work of the Library even though the source code is not.
-Whether this is true is especially significant if the work can be
-linked without the Library, or if the work is itself a library.  The
-threshold for this to be true is not precisely defined by law.
-
-  If such an object file uses only numerical parameters, data
-structure layouts and accessors, and small macros and small inline
-functions (ten lines or less in length), then the use of the object
-file is unrestricted, regardless of whether it is legally a derivative
-work.  (Executables containing this object code plus portions of the
-Library will still fall under Section 6.)
-
-  Otherwise, if the work is a derivative of the Library, you may
-distribute the object code for the work under the terms of Section 6.
-Any executables containing that work also fall under Section 6,
-whether or not they are linked directly with the Library itself.
-
-
-  6. As an exception to the Sections above, you may also compile or
-link a "work that uses the Library" with the Library to produce a
-work containing portions of the Library, and distribute that work
-under terms of your choice, provided that the terms permit
-modification of the work for the customer's own use and reverse
-engineering for debugging such modifications.
-
-  You must give prominent notice with each copy of the work that the
-Library is used in it and that the Library and its use are covered by
-this License.  You must supply a copy of this License.  If the work
-during execution displays copyright notices, you must include the
-copyright notice for the Library among them, as well as a reference
-directing the user to the copy of this License.  Also, you must do one
-of these things:
-
-    a) Accompany the work with the complete corresponding
-    machine-readable source code for the Library including whatever
-    changes were used in the work (which must be distributed under
-    Sections 1 and 2 above); and, if the work is an executable linked
-    with the Library, with the complete machine-readable "work that
-    uses the Library", as object code and/or source code, so that the
-    user can modify the Library and then relink to produce a modified
-    executable containing the modified Library.  (It is understood
-    that the user who changes the contents of definitions files in the
-    Library will not necessarily be able to recompile the application
-    to use the modified definitions.)
-
-    b) Accompany the work with a written offer, valid for at
-    least three years, to give the same user the materials
-    specified in Subsection 6a, above, for a charge no more
-    than the cost of performing this distribution.
-
-    c) If distribution of the work is made by offering access to copy
-    from a designated place, offer equivalent access to copy the above
-    specified materials from the same place.
-
-    d) Verify that the user has already received a copy of these
-    materials or that you have already sent this user a copy.
-
-  For an executable, the required form of the "work that uses the
-Library" must include any data and utility programs needed for
-reproducing the executable from it.  However, as a special exception,
-the source code distributed need not include anything that is normally
-distributed (in either source or binary form) with the major
-components (compiler, kernel, and so on) of the operating system on
-which the executable runs, unless that component itself accompanies
-the executable.
-
-  It may happen that this requirement contradicts the license
-restrictions of other proprietary libraries that do not normally
-accompany the operating system.  Such a contradiction means you cannot
-use both them and the Library together in an executable that you
-distribute.
-
-
-  7. You may place library facilities that are a work based on the
-Library side-by-side in a single library together with other library
-facilities not covered by this License, and distribute such a combined
-library, provided that the separate distribution of the work based on
-the Library and of the other library facilities is otherwise
-permitted, and provided that you do these two things:
-
-    a) Accompany the combined library with a copy of the same work
-    based on the Library, uncombined with any other library
-    facilities.  This must be distributed under the terms of the
-    Sections above.
-
-    b) Give prominent notice with the combined library of the fact
-    that part of it is a work based on the Library, and explaining
-    where to find the accompanying uncombined form of the same work.
-
-  8. You may not copy, modify, sublicense, link with, or distribute
-the Library except as expressly provided under this License.  Any
-attempt otherwise to copy, modify, sublicense, link with, or
-distribute the Library is void, and will automatically terminate your
-rights under this License.  However, parties who have received copies,
-or rights, from you under this License will not have their licenses
-terminated so long as such parties remain in full compliance.
-
-  9. You are not required to accept this License, since you have not
-signed it.  However, nothing else grants you permission to modify or
-distribute the Library or its derivative works.  These actions are
-prohibited by law if you do not accept this License.  Therefore, by
-modifying or distributing the Library (or any work based on the
-Library), you indicate your acceptance of this License to do so, and
-all its terms and conditions for copying, distributing or modifying
-the Library or works based on it.
-
-  10. Each time you redistribute the Library (or any work based on the
-Library), the recipient automatically receives a license from the
-original licensor to copy, distribute, link with or modify the Library
-subject to these terms and conditions.  You may not impose any further
-restrictions on the recipients' exercise of the rights granted herein.
-You are not responsible for enforcing compliance by third parties to
-this License.
-
-
-  11. If, as a consequence of a court judgment or allegation of patent
-infringement or for any other reason (not limited to patent issues),
-conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License.  If you cannot
-distribute so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you
-may not distribute the Library at all.  For example, if a patent
-license would not permit royalty-free redistribution of the Library by
-all those who receive copies directly or indirectly through you, then
-the only way you could satisfy both it and this License would be to
-refrain entirely from distribution of the Library.
-
-If any portion of this section is held invalid or unenforceable under any
-particular circumstance, the balance of the section is intended to apply,
-and the section as a whole is intended to apply in other circumstances.
-
-It is not the purpose of this section to induce you to infringe any
-patents or other property right claims or to contest validity of any
-such claims; this section has the sole purpose of protecting the
-integrity of the free software distribution system which is
-implemented by public license practices.  Many people have made
-generous contributions to the wide range of software distributed
-through that system in reliance on consistent application of that
-system; it is up to the author/donor to decide if he or she is willing
-to distribute software through any other system and a licensee cannot
-impose that choice.
-
-This section is intended to make thoroughly clear what is believed to
-be a consequence of the rest of this License.
-
-  12. If the distribution and/or use of the Library is restricted in
-certain countries either by patents or by copyrighted interfaces, the
-original copyright holder who places the Library under this License may add
-an explicit geographical distribution limitation excluding those countries,
-so that distribution is permitted only in or among countries not thus
-excluded.  In such case, this License incorporates the limitation as if
-written in the body of this License.
-
-  13. The Free Software Foundation may publish revised and/or new
-versions of the Library General Public License from time to time.
-Such new versions will be similar in spirit to the present version,
-but may differ in detail to address new problems or concerns.
-
-Each version is given a distinguishing version number.  If the Library
-specifies a version number of this License which applies to it and
-"any later version", you have the option of following the terms and
-conditions either of that version or of any later version published by
-the Free Software Foundation.  If the Library does not specify a
-license version number, you may choose any version ever published by
-the Free Software Foundation.
-
-
-  14. If you wish to incorporate parts of the Library into other free
-programs whose distribution conditions are incompatible with these,
-write to the author to ask for permission.  For software which is
-copyrighted by the Free Software Foundation, write to the Free
-Software Foundation; we sometimes make exceptions for this.  Our
-decision will be guided by the two goals of preserving the free status
-of all derivatives of our free software and of promoting the sharing
-and reuse of software generally.
-
-			    NO WARRANTY
-
-  15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
-WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
-EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
-OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
-KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
-LIBRARY IS WITH YOU.  SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
-THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
-  16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
-WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
-AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
-FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
-CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
-LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
-RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
-FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
-SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
-DAMAGES.
-
-		     END OF TERMS AND CONDITIONS
-
-
-     Appendix: How to Apply These Terms to Your New Libraries
-
-  If you develop a new library, and you want it to be of the greatest
-possible use to the public, we recommend making it free software that
-everyone can redistribute and change.  You can do so by permitting
-redistribution under these terms (or, alternatively, under the terms of the
-ordinary General Public License).
-
-  To apply these terms, attach the following notices to the library.  It is
-safest to attach them to the start of each source file to most effectively
-convey the exclusion of warranty; and each file should have at least the
-"copyright" line and a pointer to where the full notice is found.
-
-    <one line to give the library's name and a brief idea of what it does.>
-    Copyright (C) <year>  <name of author>
-
-    This library is free software; you can redistribute it and/or
-    modify it under the terms of the GNU Library General Public
-    License as published by the Free Software Foundation; either
-    version 2 of the License, or (at your option) any later version.
-
-    This library is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-    Library General Public License for more details.
-
-    You should have received a copy of the GNU Library General Public
-    License along with this library; if not, write to the Free
-    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
-    MA 02111-1307, USA
-
-Also add information on how to contact you by electronic and paper mail.
-
-You should also get your employer (if you work as a programmer) or your
-school, if any, to sign a "copyright disclaimer" for the library, if
-necessary.  Here is a sample; alter the names:
-
-  Yoyodyne, Inc., hereby disclaims all copyright interest in the
-  library `Frob' (a library for tweaking knobs) written by James Random Hacker.
-
-  <signature of Ty Coon>, 1 April 1990
-  Ty Coon, President of Vice
-
-That's all there is to it!
Index: Daodan/MinGW/msys/1.0/share/doc/MSYS/CYGWIN_LICENSE
===================================================================
--- Daodan/MinGW/msys/1.0/share/doc/MSYS/CYGWIN_LICENSE	(revision 1046)
+++ 	(revision )
@@ -1,46 +1,0 @@
---------------------------------------------------------------------------
-This program is free software; you can redistribute it and/or modify it
-under the terms of the GNU General Public License (GPL) as published by
-the Free Software Foundation; either version 2 of the License, or (at
-your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
---------------------------------------------------------------------------
-
-			*** NOTE ***
-
-In accordance with section 10 of the GPL, Cygnus permits programs whose
-sources are distributed under a license that complies with the Open
-Source definition to be linked with libcygwin.a without libcygwin.a
-itself causing the resulting program to be covered by the GNU GPL.
-
-This means that you can port an Open Source(tm) application to cygwin,
-and distribute that executable as if it didn't include a copy of
-libcygwin.a linked into it.  Note that this does not apply to the cygwin
-DLL itself.  If you distribute a (possibly modified) version of the DLL
-you must adhere to the terms of the GPL, i.e., you must provide sources
-for the cygwin DLL.
-
-See http://www.opensource.org/osd.html for the precise Open Source
-Definition referenced above.
-
-If you have questions about any of the above or would like to arrange
-for other licensing terms, please contact Cygnus using the information
-given below:
-
-     Cygnus Solutions
-     1325 Chesapeake Terrace
-     Sunnyvale, CA 94089
-     USA
-
-     +1 408 542 9600
-     hotline: +1 408 542 9601
-     email: info@cygnus.com
-     fax: +1 408 542 9699
Index: Daodan/MinGW/msys/1.0/share/doc/MSYS/MSYS_MISSION
===================================================================
--- Daodan/MinGW/msys/1.0/share/doc/MSYS/MSYS_MISSION	(revision 1046)
+++ 	(revision )
@@ -1,12 +1,0 @@
-File:		MSYS_MISSION
-Copyright (C):	Earnie Boyd  <earnie@users.sf.net>
-Distribution:	See MSYS_LICENSE
-Revision:	1.0.2
-Revision Date:	2002.01.25
-
-The mission or goal of MSYS is to provide a minimal POSIX environment for 
-configuring and building MinGW ports and code.  The MSYS developers have taken 
-the Cygwin source and modified it to fit the needs for MinGW and MSYS.  The very
-minimum of binaries needed to provide an efficient means to natively configure
-and make is what the developers have strived to distribute.  Therefore they do
-not encourage the use of MSYS as a runtime.
Index: Daodan/MinGW/msys/1.0/share/doc/MSYS/MSYS_VS_CYGWIN
===================================================================
--- Daodan/MinGW/msys/1.0/share/doc/MSYS/MSYS_VS_CYGWIN	(revision 1046)
+++ 	(revision )
@@ -1,81 +1,0 @@
-File:		     MSYS_VS_CYGWIN
-Copyright (C):	     2001: Earnie Boyd  <earnie@users.sf.net>
-Distribution Rights: See MSYS_LICENSE
-File Revision:	     1.0.4
-File Revision Date:  2002.01.25
-
-mount:	The mount command is only used to display all mount points.  The mount
-points for the very important are automounted.  Nothing is stored in the Win32
-registry database.  If you wish to add other mount points, ones that aren't
-auto mounted, then you may do so in the /etc/fstab file.  i
-
-ROOTPATH "/": The "/" auto mount point is currently a reference to the parent
-directory of the directory containing the msys-1.0.dll file.  
-<strikeout>In later releases
-the / will be a reference to a pseudo device that points to the mount points.
-I.E. in a later release it is planned that `ls /' will list the mount points.
-</strikeout>  I plan to do something but it won't be as previously stated.
-
-/bin: The /bin auto mount point is a reference to the directory containing the
-msys-1.0.dll file.  I.E. if the path to msys-1.0.dll is
-C:\msys\1.0\bin\msys-1.0.dll then /bin resolves to C:\msys\1.0\bin.
-
-/tmp: The /tmp auto mount point is a reference to the directory that is
-referenced by the Win32 TMP environment variable.  I.E. if the win32 TMP
-environment variable value is C:\TEMP then the /tmp mount point resolves to
-C:\TEMP.
-
-/usr: The /usr auto mount point is a reference to the parent directory of the
-directory containing the msys-1.0.dll file.  I.E. if the path to msys-1.0.dll
-is C:\msys\1.0\bin\msys-1.0.dll then the /usr mount point resolves to
-C:\msys\1.0.
-
-/cygdrive:  There is no such item.  All devices and mapped shares are auto
-mounted with the device letter as the mount point.  E.G.: the C:\ drive is
-referenced as /c.
-
-/etc/fstab:  If this file exists then it is read for user specified mount
-points.  The form of the record is [PHYSICAL PATH][WHITE SPACE][MOUNT POINT]
-where [WHITE SPACE] is one or more spaces and/or tabs.
-
-binary vs text:  File processing mode is set to binary.  This is not changeable.
-I had originally planned to set this to text mode processing but ran into
-various problems of which volumes have been written in the Cygwin archives.
-For release 1.0 of MSYS this means that you cannot have \r\n line endings on
-text files.  In a future release it is planned to "Do The Right Thing" and
-predetermine the type of file being opened and set text or binary processing
-as appropriate for reading files.  Or, predetermine the type of file and as the
-file is being read remove the \r from the end of the line.
-
-uname -s:  The default system name is returned as MSYS_NT-4.0, if you're on
-NT 4.0.  However you could export MSYSTEM=MINGW32 as change the returned value
-for `uname -s' to MINGW32_NT-4.0.  This is done to aid the use of MSYS with
-MinGW and configuration scripts will determine that it is a MINGW32 build
-system.
-
---added in version 1.0.2--
-/bin and /usr/bin:  These are currently reserved for MSYS programs only (MSYS
-programs are progrms that depend on the msys-1.0.dll file).  It will be unlikely
-that non-MSYS programs will execute properly if they exist in /bin and /usr/bin.
-
-POSIX paths in arguments:  POSIX paths passed as arguments on the command line
-are now converted to WIN32 paths.  This is only true for programs that don't
-exist in the /bin and /usr/bin paths.  POSIX paths are determined by i) a '/'
-character in the argument and ii) the argument must not be two characters long.
-The two character filter is done so that WIN32 parameters of the type /x can be
-passed to the WIN32 program.  This allows you to do `write /p /mydocuments/abc'
-and the write.exe program found in the c:\WINNT\System32 directory on my
-system can print to the printer on lpt1 the c:\msys\1.0\mydocments\abc file.
-
---added in version 1.0.3--
-More robust checking for filesystem paths on arguments.
-
---added in version 1.0.4--
-Symlink resolution.
-diff, diff3 and head to the distribution.
---removed in version 1.0.4--
-Requirement that the path must begin with /.
-bash from the distribution.
-
---removed in version 1.0.11--
-Requirement that /bin and /usr/bin are reserved for MSYS programs only.
Index: Daodan/MinGW/msys/1.0/share/doc/MSYS/msysCORE-1.0.19-1-msys-RELEASE_NOTES.txt
===================================================================
--- Daodan/MinGW/msys/1.0/share/doc/MSYS/msysCORE-1.0.19-1-msys-RELEASE_NOTES.txt	(revision 1046)
+++ 	(revision )
@@ -1,151 +1,0 @@
-msysCORE
-========================================================================
-msysCORE consists of the MSYS runtime plus the basic support files for
-a standard MSYS installation.
-
-Runtime requirements:
-  None.
-
-Build requirements:
-  msys-bash-bin
-  msys-core-ext
-  msys-coreutils-bin
-  msys-diffutils-bin
-  msys-findutils-bin
-  msys-gawk-bin
-  msys-grep-bin
-  msys-make-bin
-  msys-sed-bin
-  msys-tar-bin
-  msys-xz-bin
-  msys-gcc-bin
-  mingw32-gcc-g++-bin
-
-Canonical homepage:
-  http://www.mingw.org/wiki/msys/
-
-Canonical download:
-  http://sourceforge.net/projects/mingw/files/
-
-License:
-  Cygwin (see /share/doc/MSYS/CYGWIN_LICENSE)
-
-Language:
-  C, C++
-
-========================================================================
-
-Build instructions:
-1) unpack msysCORE-1.0.19-1-msys-1.0.19-src.tar.xz
-2) Install the build requirements:
-  ./msysrlsbld -e build_dep
-  (requires mingw-get in PATH)
-3) Create an empty build directory and type: 
-   <path-to-source>/msysrlsbld
-
-See <path-to-source>/msysrlsbld -h for further options.
-
-This will create:
-
-  msysCORE-1.0.19-1-msys-1.0.19-bin.tar.xz
-    MSYS runtime DLL plus basic support files
-
-  msysCORE-1.0.19-1-msys-1.0.19-ext.tar.xz
-    A few support scripts dependent on other MSYS components.
-
-  msysCORE-1.0.19-1-msys-1.0.19-dev.tar.xz
-    Development files for the MSYS runtime.
-
-  msysCORE-1.0.19-1-msys-1.0.19-doc.tar.xz
-    MSYS documentation.
-
-  msysCORE-1.0.19-1-msys-1.0.19-lic.tar.xz
-    MSYS license.
-
-  msysCORE-1.0.19-1-msys-1.0.19-dbg.tar.bz2
-    Debug information:
-    * msys-1.0-debug.dll - Debug version of the MSYS runtime.
-    * strace.exe - System call tracer for use with the above.
-    * msys-1.0.dll.dbg - Symbolic information for decoding stack dumps.
-
-========================================================================
-
-----------  msysCORE-1.0.19-1 -- 2016 Jul 13 -----------
-* Fix a buffer overflow vulnerability in execvp (issue #2269).
-* Correct a bug with pipe handling that affected parallel make
-  (issue #1950).
-* Avoid loading some system DLLs, potentially improving process startup
-  time. (issue #1823).
-* Generate /etc/fstab automatically in postinstall (issue #2008):
-  1) /etc/fstab.sample is delivered with the package, but adjusted at
-  installation time, to reflect actual installation choice for /mingw mount
-  point association.
-  2) /etc/fstab is created if necessary, with the correct mapping of the
-  /mingw mount point.
-* Package compression format changed from lzma to xz.
-
-----------  msysCORE-1.0.18-1 -- 2012 Nov 21 -----------
-* Enable quoting of globbing characters on the command-line of native
-  applications (bug #3482704).
-* In case of an absent /etc directory, keep on trying to monitor the root
-  directory for its creation instead of silently failing (bug #3302830).
-* Fix getpwnam to return NULL for unknown user names, and be more robust
-  when HOME is not set (bug #3415129).
-* Import Cygwin 1.3.4 and port modern wincap functionality.
-* Convert msys.bat line endings back to CRLF. (bug #2854155)
-
-----------  msysCORE-1.0.17-1 -- 2011 Apr 19 -----------
-* Allow to override the error mode for Windows exceptions like GPF.
-
-----------  msysCORE-1.0.16-1 -- 2010 Sep 28 -----------
-* Fix a race condition when determining if a pid is valid
-  just after creating the process (bug #3042292)
-* Support path conversion of @file arguments.
-* Be more robust when dealing with ambiguous paths and mount points
-  (eg. /usr/tmp vs. /tmp, when /usr == /). Fixes bug #3059626.
-* Add --mintty option to msys.bat, for using mintty as the MSYS
-  terminal (mintty must be already installed for this to work).
-
-----------  msysCORE-1.0.15-1 -- 2010 Jul 06 -----------
-* Add declarations of fchdir and getdomainname to sys/unistd.h
-* Add declarations of rcmd, rexec, and rresvport to netdb.h
-* Correct bug involving double evaluations of pseudo-relocations
-  after fork().  Affected MSYS applications must be recompiled to
-  take advantage of this fix.
-* Add --replace option to mount and umount scripts
-* Split -bin component into -bin, -ext, -doc and -lic.
-* Removed a dependency of strace on the native GCC shared runtimes.
-* Moved the MSYS DLL base to 0x60800000, to hopefully minimize the need
-  to rebase it so often.
-* Simplified the bin/cmd script
-
-----------  msysCORE-1.0.14-1 -- 2010 Mar 17 -----------
-* Fix path translation in presence of components with dots.
-Example: /mingw/example.dot/../include
--> c:/mingw/example.dot/../include
-
-----------  msysCORE-1.0.13-2 -- 2010 Jan 27 -----------
-* Recompile at -O3 +:
-    -fno-unit-at-a-time
-  to avoid compiler optimization bug at -O3 and -O2
-
-----------  msysCORE-1.0.13-1 -- 2010 Jan 15 -----------
-* Updated MSYS to support runtime pseudo-relocs (see `info ld'
-  and search for --enable-runtime-pseudo-reloc). Both v1 and v2
-  relocations are supported.
-* Other changes necesssary to allow building with GCC 3.x rather
-  than the old 2.95.3 version.
-* Developer files are moved from within /usr/i686-pc-msys to
-  /usr/include and /usr/lib.
-* Fix a potential crash when preparing to run executables.
-* Fix bug #1249827 - MSYS appending Win32 path to hyphen.
-
-----------  msysCORE-1.0.12-1 -- 2010 Jan 5 -----------
-* Documentation moved to /share/doc/MSYS
-* MSYS symlink semantics are documented in /share/doc/MSYS/README.rtf
-* Improve symlink emulation:
-  - handle relative symlinks
-  - avoid infinite recursion
-  - correct return value on failure
-  - fail if destination exists
-* Better Win9x compatibility.
Index: Daodan/MinGW/msys/1.0/share/texinfo/texinfo.cat
===================================================================
--- Daodan/MinGW/msys/1.0/share/texinfo/texinfo.cat	(revision 1046)
+++ 	(revision )
@@ -1,3 +1,0 @@
-OVERRIDE YES
-
-PUBLIC "-//GNU//DTD TexinfoML V4.13//EN" "texinfo.dtd"
Index: Daodan/MinGW/msys/1.0/share/texinfo/texinfo.dtd
===================================================================
--- Daodan/MinGW/msys/1.0/share/texinfo/texinfo.dtd	(revision 1046)
+++ 	(revision )
@@ -1,507 +1,0 @@
-<!-- $Id: texinfo.dtd,v 1.13 2008/01/31 18:33:27 karl Exp $
-   Document Type Definition for Texinfo XML output (the '-'-xml option).
-
-  Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
-  Free Software Foundation, Inc.
-
-  Copying and distribution of this file, with or without modification,
-  are permitted in any medium without royalty provided the copyright
-  notice and this notice are preserved.
-
-   Author: Philippe Martin
-   Contributors:
-           Karl Eichwalder
-           Alper Ersoy
-           Karl Berry
-           Torsten Bronger
--->
-
-<!-- * ENTITIES * -->
-
-<!-- Meta-information -->
-<!ENTITY % metainformation "setfilename | settitle | dircategory
-                            | documentdescription">
-<!ENTITY % variables "setvalue | clearvalue">
-
-<!-- Document language -->
-<!ENTITY % lang "documentlanguage">
-
-<!-- Language codes -->
-<!ENTITY % languagecodes "aa|ab|af|am|ar|as|ay|az|ba|be|bg|bh|bi|bn|bo|br|ca|co|cs|cy|da|de|dz|el|en|eo|es|et|eu|fa|fi|fj|fo|fr|fy|ga|gd|gl|gn|gu|ha|he|hi|hr|hu|hy|ia|id|ie|ik|is|it|iu|ja|jw|ka|kk|kl|km|kn|ko|ks|ku|ky|la|ln|lo|lt|lv|mg|mi|mk|ml|mn|mo|mr|ms|mt|my|na|ne|nl|no|oc|om|or|pa|pl|ps|pt|qu|rm|rn|ro|ru|rw|sa|sd|sg|sh|si|sk|sl|sm|sn|so|sq|sr|ss|st|su|sv|sw|ta|te|tg|th|ti|tk|tl|tn|to|tr|ts|tt|tw|ug|uk|ur|uz|vi|vo|wo|xh|yi|yo|za|zh|zu">
-
-<!-- ToC -->
-<!ENTITY % toc "contents | shortcontents">
-
-<!-- Title page -->
-<!ENTITY % titlepage_cmds "author | booktitle | booksubtitle">
-
-<!-- block -->
-<!ENTITY % block "menu | para | quotation | example | smallexample | lisp
-                  | smalllisp | cartouche | copying
-                  | format | smallformat | display
-                  | smalldisplay | itemize | enumerate | sp | center | group
-                  | table | multitable | definition | float | image">
-
-<!-- API definitions -->
-<!ENTITY % definition.cmds "defcategory | deffunction | defvariable | defparam
-                            | defdelimiter | deftype | defparamtype | defdatatype
-                            | defclass | defclassvar | defoperation">
-
-<!-- Headings -->
-<!ENTITY % headings "majorheading | chapheading | heading | subheading
-                     | subsubheading">
-
-
-<!-- Sectioning -->
-<!ENTITY % section.level1 "top | chapter | unnumbered | appendix">
-
-<!ENTITY % section.level2 "section | unnumberedsec | appendixsec">
-
-<!ENTITY % section.level3 "subsection | unnumberedsubsec | appendixsubsec">
-
-<!ENTITY % section.level4 "subsubsection | unnumberedsubsubsec 
-                           | appendixsubsubsec">
-
-<!ENTITY % section.all "%section.level1; | %section.level2; | %section.level3;
-                        | %section.level4;">
-
-
-<!ENTITY % section.level1.content "(%block;
-                                   | %section.level2;
-                                   | %section.level3;
-                                   | %section.level4;
-                                   | verbatim | titlepage | %toc;
-                                   | %lang; | %variables;
-                                   | %headings;
-                                   | listoffloats
-                                   | printindex)*">
-
-<!ENTITY % section.level2.content "(%block;
-                                   | %section.level3;
-                                   | %section.level4;
-                                   | verbatim | titlepage | %toc;
-                                   | %lang; | %variables;
-                                   | %headings;)*">
-
-<!ENTITY % section.level3.content "(%block;
-                                   | %section.level4;
-                                   | verbatim | titlepage | %toc;
-                                   | %lang; | %variables;
-                                   | %headings;)*">
-
-<!ENTITY % section.level4.content "(%block;
-                                    | verbatim | titlepage | %toc;
-                                    | %lang; | %variables;
-                                    | %headings;)*">
-
-<!-- Options (many missing) -->
-<!ENTITY % onoff "on|off">
-<!ENTITY % option.cmds "frenchspacing">
-
-<!-- Inline -->
-<!ENTITY % Inline.emphasize "strong | emph">
-<!ENTITY % Inline.fonts "b | i | r | sansserif | slanted | titlefont | tt
-                         | sc">
-<!ENTITY % Inline.footnote "footnote">
-<!ENTITY % Inline.markup "code | command | env | file | option | samp | verb
-                          | dfn | cite | key | kbd | var | acronym | url"> 
-<!ENTITY % Inline.math "math | dmn">
-<!ENTITY % Inline.reference "xref | inforef | indexterm | email | uref">
-<!ENTITY % Inline.misc "click | clicksequence | logo | punct">
-
-<!ENTITY % Inline.phrase
-           "%Inline.emphasize;  | %Inline.misc; | %Inline.fonts;
-            | %Inline.markup;   | %Inline.math; | %Inline.reference;
-            | %Inline.footnote; | %option.cmds; ">
-
-
-<!-- * ELEMENTS * -->
-
-<!-- TOP Level Element -->
-<!ELEMENT texinfo ((%metainformation; | titlepage | node | synindex | %block; | %toc;
-                    | %variables; | %lang;)* )>
-<!ATTLIST texinfo xml:lang (%languagecodes;) 'en'>
-
-<!-- meta-information -->
-<!ELEMENT setfilename (#PCDATA)>
-<!ELEMENT settitle    (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT dircategory (#PCDATA)>
-
-<!ELEMENT setvalue    (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT clearvalue  EMPTY>
-<!ATTLIST setvalue
-                name CDATA #REQUIRED>
-<!ATTLIST clearvalue
-                name CDATA #REQUIRED>
-
-<!-- ToC -->
-<!ELEMENT contents      EMPTY>
-<!ELEMENT shortcontents EMPTY>
-
-<!-- Document language -->
-<!ELEMENT documentlanguage EMPTY>
-<!ATTLIST documentlanguage xml:lang (%languagecodes;) 'en'>
-
-<!-- Titlepage -->
-<!ELEMENT titlepage    (%titlepage_cmds; | %block;)*>
-<!ELEMENT author       (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT booktitle    (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT booksubtitle (#PCDATA | %Inline.phrase;)*>
-
-<!-- NODES -->
-<!ELEMENT node (nodename, nodenext?, nodeprev?, nodeup?,
-                (%section.all; | %block; | %toc; | %lang;)*) >
-
-<!ELEMENT nodename (#PCDATA)>
-<!ELEMENT nodenext (#PCDATA)>
-<!ELEMENT nodeprev (#PCDATA)>
-<!ELEMENT nodeup   (#PCDATA)>
-
-
-<!-- SECTIONING -->
-<!ELEMENT top           (title?, (%section.level1.content;))>
-
-<!ELEMENT chapter       (title?, (%section.level1.content;))>
-<!ELEMENT section       (title?, (%section.level2.content;))>
-<!ELEMENT subsection    (title?, (%section.level3.content;))>
-<!ELEMENT subsubsection (title?, (%section.level4.content;))>
-
-<!ELEMENT unnumbered          (title?, (%section.level1.content;))>
-<!ELEMENT unnumberedsec       (title?, (%section.level2.content;))>
-<!ELEMENT unnumberedsubsec    (title?, (%section.level3.content;))>
-<!ELEMENT unnumberedsubsubsec (title?, (%section.level4.content;))>
-
-<!ELEMENT appendix          (title?, (%section.level1.content;))>
-<!ELEMENT appendixsec       (title?, (%section.level2.content;))>
-<!ELEMENT appendixsubsec    (title?, (%section.level3.content;))>
-<!ELEMENT appendixsubsubsec (title?, (%section.level4.content;))>
-
-<!-- Headings and titles -->
-<!ELEMENT majorheading  (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT chapheading   (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT heading       (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT subheading    (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT subsubheading (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT title         (#PCDATA | %Inline.phrase;)*>
-
-<!-- Negative Indentation in Blocks -->
-<!ELEMENT exdent       (#PCDATA | %Inline.phrase;)*>
-
-
-<!-- BLOCK Elements -->
-
-<!ELEMENT quotation    (%block; | %Inline.phrase; | exdent)*>
-<!ELEMENT documentdescription (#PCDATA | %block; | %Inline.phrase;)*>
-<!ELEMENT example      (#PCDATA | %block; | %Inline.phrase; | exdent)*>
-<!ELEMENT smallexample (#PCDATA | %block; | %Inline.phrase; | exdent)*>
-<!ELEMENT lisp         (#PCDATA | %block; | %Inline.phrase; | exdent)*>
-<!ELEMENT smalllisp    (#PCDATA | %block; | %Inline.phrase; | exdent)*>
-<!ELEMENT cartouche    (#PCDATA | %block; | %Inline.phrase; | exdent)*>
-<!ELEMENT copying      (#PCDATA | %block; | %Inline.phrase; | exdent)*>
-<!ELEMENT format       (#PCDATA | %block; | %Inline.phrase; | exdent)*>
-<!ELEMENT smallformat  (#PCDATA | %block; | %Inline.phrase; | exdent)*>
-<!ELEMENT display      (#PCDATA | %block; | %Inline.phrase; | exdent)*>
-<!ELEMENT smalldisplay (#PCDATA | %block; | %Inline.phrase; | exdent)*>
-<!ELEMENT center       (#PCDATA | %block; | %Inline.phrase; | exdent)*>
-<!ELEMENT group        (#PCDATA | %block; | %Inline.phrase; | exdent)*>
-
-<!ELEMENT image        (alttext)>
-<!ELEMENT alttext      (#PCDATA)>
-<!ATTLIST image
-            name      CDATA #REQUIRED
-            extension CDATA #REQUIRED
-            width     CDATA #REQUIRED
-            height    CDATA #REQUIRED>
-
-<!-- Whitespace in these elements are always preserved -->
-<!ATTLIST example      xml:space (preserve) #FIXED 'preserve'>
-<!ATTLIST smallexample xml:space (preserve) #FIXED 'preserve'>
-<!ATTLIST lisp         xml:space (preserve) #FIXED 'preserve'>
-<!ATTLIST smalllisp    xml:space (preserve) #FIXED 'preserve'>
-<!ATTLIST display      xml:space (preserve) #FIXED 'preserve'>
-<!ATTLIST smalldisplay xml:space (preserve) #FIXED 'preserve'>
-<!ATTLIST format       xml:space (preserve) #FIXED 'preserve'>
-<!ATTLIST smallformat  xml:space (preserve) #FIXED 'preserve'>
-
-<!ELEMENT verbatim     (#PCDATA)>
-<!ATTLIST verbatim     xml:space (preserve) #FIXED 'preserve'>
-
-<!ELEMENT para         (#PCDATA | %Inline.phrase; | %lang;)*>
-<!ATTLIST para
-          role CDATA #IMPLIED>
-
-<!ELEMENT menu (menuentry | detailmenu | para)*>
-<!ELEMENT detailmenu (menuentry | para)*>
-<!ELEMENT menuentry (menunode?, menutitle?, menucomment?)>
-<!ELEMENT menunode (#PCDATA)>
-<!ELEMENT menutitle (#PCDATA)>
-<!ELEMENT menucomment (#PCDATA | %Inline.phrase;)*>
-
-<!-- Floating displays -->
-<!ELEMENT float (floattype, floatpos, (%block;)*,
-                ((caption, shortcaption?) | (shortcaption, caption))?)>
-<!ATTLIST float
-          name CDATA #IMPLIED>
-<!ELEMENT floattype (#PCDATA)>
-<!ELEMENT floatpos (#PCDATA)>
-<!ELEMENT caption (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT shortcaption (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT listoffloats EMPTY>
-<!ATTLIST listoffloats
-          type CDATA #IMPLIED>
-
-<!-- Lists -->
-<!ELEMENT itemize (itemfunction, (item | itemize | enumerate | indexterm)*)>
-<!ELEMENT enumerate (item | itemize | enumerate | indexterm)*>
-<!ATTLIST enumerate
-          first CDATA #IMPLIED>
-
-<!ELEMENT item (%block;)*>
-
-<!ELEMENT itemfunction (#PCDATA | %Inline.phrase;)*>
-
-<!-- Tables -->
-<!ELEMENT table (tableitem | indexterm)+>
-<!ELEMENT tableitem ((tableterm, indexterm*)+, item?)>
-<!ELEMENT tableterm (#PCDATA | %Inline.phrase;)*>
-
-<!ELEMENT multitable (columnfraction*, thead?, tbody)>
-<!ELEMENT columnfraction (#PCDATA)>
-<!ELEMENT thead (row+)>
-<!ELEMENT tbody (row+)>
-<!ELEMENT row (entry*)>
-<!ELEMENT entry (#PCDATA | %Inline.phrase;)*>
-
-<!-- API definitions -->
-<!ELEMENT definition (definitionterm | definitionitem | indexterm)+>
-<!ELEMENT definitionterm (%definition.cmds; | indexterm)+>
-<!ELEMENT definitionitem (%block;)*>
-
-<!ELEMENT defcategory  (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT deffunction  (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT defvariable  (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT defparam     (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT defdelimiter (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT deftype      (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT defparamtype (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT defdatatype  (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT defclass     (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT defclassvar  (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT defoperation (#PCDATA | %Inline.phrase;)*>
-
-<!-- INLINE Elements -->
-
-<!-- options -->
-<!ELEMENT frenchspacing (#PCDATA)> <!-- must be on or off -->
-<!ATTLIST frenchspacing val (%onoff;) 'off'>
-
-<!-- emphasize -->
-<!ELEMENT strong (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT emph   (#PCDATA | %Inline.phrase;)*>
-
-<!-- small caps -->
-<!ELEMENT sc (#PCDATA | %Inline.phrase;)*>
-
-<!-- fonts -->
-<!ELEMENT b  (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT i  (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT r  (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT sansserif   (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT slanted     (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT titlefont   (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT tt (#PCDATA | %Inline.phrase;)*>
-
-<!-- markup -->
-<!ELEMENT code    (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT command (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT env     (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT file    (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT option  (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT samp    (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT dfn     (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT cite    (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT key     (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT kbd     (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT var     (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT url     (#PCDATA | %Inline.phrase;)*>
-
-<!ELEMENT acronym (acronymword, acronymdesc?)>
-<!ELEMENT acronymword (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT acronymdesc (#PCDATA | %Inline.phrase;)*>
-
-<!ELEMENT abbrev (abbrevword, abbrevdesc?)>
-<!ELEMENT abbrevword (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT abbrevdesc (#PCDATA | %Inline.phrase;)*>
-
-<!-- math -->
-<!ELEMENT math    (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT dmn     (#PCDATA | %Inline.phrase;)*>
-
-<!-- reference -->
-<!ELEMENT anchor EMPTY>
-<!ATTLIST anchor
-          name CDATA #IMPLIED>
-
-<!ELEMENT xref (xrefnodename | xrefinfoname | xrefinfofile
-                | xrefprintedname | xrefprinteddesc)*>
-<!ELEMENT xrefnodename    (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT xrefinfoname    (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT xrefinfofile    (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT xrefprintedname (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT xrefprinteddesc (#PCDATA | %Inline.phrase;)*>
-
-<!ELEMENT inforef (inforefnodename | inforefrefname | inforefinfoname)*>
-<!ELEMENT inforefnodename (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT inforefrefname  (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT inforefinfoname (#PCDATA | %Inline.phrase;)*>
-
-<!ELEMENT synindex  EMPTY>
-<!ATTLIST synindex
-          code      (yes|no) 'no'
-          from      NMTOKEN #REQUIRED
-          to        NMTOKEN #REQUIRED>
-<!ELEMENT indexterm (#PCDATA | %Inline.phrase;)*>
-<!ATTLIST indexterm
-          index CDATA #IMPLIED>
-
-<!ELEMENT email (emailaddress, emailname?)>
-<!ELEMENT emailaddress (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT emailname (#PCDATA | %Inline.phrase;)*>
-
-<!ELEMENT uref (urefurl, urefdesc?, urefreplacement?)>
-<!ELEMENT urefurl         (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT urefdesc        (#PCDATA | %Inline.phrase;)*>
-<!ELEMENT urefreplacement (#PCDATA | %Inline.phrase;)*>
-
-<!ELEMENT footnote (para)>
-
-
-<!ELEMENT punct     (#PCDATA)>
-<!ATTLIST punct
-          end-of-sentence (yes|no) #IMPLIED>
-<!ELEMENT logo      (#PCDATA)>
-<!ELEMENT linebreak EMPTY>
-
-<!ENTITY tex        "<logo>TeX</logo>">
-<!ENTITY latex      "<logo>LaTeX</logo>">
-<!ENTITY ellipsis   "&#x2026;">
-<!ENTITY lt         "&#x3c;">
-<!ENTITY gt         "&#x3e;">
-<!ENTITY bullet     "&#x2022;">
-<!ENTITY copyright  "&#xa9;">
-<!ENTITY registered "&#xae;">
-<!ENTITY euro       "&#x20ac;">
-<!ENTITY pounds     "&#xa3;">
-<!ENTITY minus      "&#x2212;">
-<!ENTITY linebreak  "<linebreak/>">
-<!ENTITY space      " ">          <!-- Should become an element. -->
-<!ENTITY dots       "<punct end-of-sentence='no'>&#x2026;</punct>">
-<!ENTITY enddots    "<punct end-of-sentence='yes'>&#x2026;</punct>">
-<!ENTITY amp        "&#x26;">
-<!ENTITY lsquo      "&#x2018;">
-<!ENTITY rsquo      "&#x2019;">
-<!ENTITY sbquo      "&#x201a;">
-<!ENTITY ldquo      "&#x201c;">
-<!ENTITY rdquo      "&#x201d;">
-<!ENTITY bdquo      "&#x201e;">
-<!ENTITY laquo      "&#xab;">
-<!ENTITY raquo      "&#xbb;">
-<!ENTITY lsaquo     "&#x2039;">
-<!ENTITY rsaquo     "&#x203a;">
-<!ENTITY mdash      "&#x2014;">
-<!ENTITY ndash      "&#x2013;">
-<!ENTITY period     "<punct end-of-sentence='no'>.</punct>">
-<!ENTITY eosperiod  "<punct end-of-sentence='yes'>.</punct>">
-<!ENTITY quest      "<punct end-of-sentence='no'>?</punct>">
-<!ENTITY eosquest   "<punct end-of-sentence='yes'>?</punct>">
-<!ENTITY excl       "<punct end-of-sentence='no'>!</punct>">
-<!ENTITY eosexcl    "<punct end-of-sentence='yes'>!</punct>">
-
-<!ENTITY auml "&#xe4;">
-<!ENTITY ouml "&#xf6;">
-<!ENTITY uuml "&#xfc;">
-<!ENTITY Auml "&#xc4;">
-<!ENTITY Ouml "&#xd6;">
-<!ENTITY Uuml "&#xdc;">
-<!ENTITY Euml "&#xcb;">
-<!ENTITY euml "&#xeb;">
-<!ENTITY Iuml "&#xcf;">
-<!ENTITY iuml "&#xef;">
-<!ENTITY yuml "&#xff;">
-<!ENTITY uml  "&#xa8;">
-
-<!ENTITY Aacute "&#xc1;">
-<!ENTITY Eacute "&#xc9;">
-<!ENTITY Iacute "&#xcd;">
-<!ENTITY Oacute "&#xd3;">
-<!ENTITY Uacute "&#xda;">
-<!ENTITY Yacute "&#xdd;">
-<!ENTITY aacute "&#xe1;">
-<!ENTITY eacute "&#xe9;">
-<!ENTITY iacute "&#xed;">
-<!ENTITY oacute "&#xf3;">
-<!ENTITY uacute "&#xfa;">
-<!ENTITY yacute "&#xfd;">
-
-<!ENTITY ccedil "&#xe7;">
-<!ENTITY Ccedil "&#xc7;">
-
-<!ENTITY Acirc "&#xc2;">
-<!ENTITY Ecirc "&#xca;">
-<!ENTITY Icirc "&#xc3;">
-<!ENTITY Ocirc "&#xd4;">
-<!ENTITY Ucirc "&#xdb;">
-<!ENTITY acirc "&#xe2;">
-<!ENTITY ecirc "&#xea;">
-<!ENTITY icirc "&#xee;">
-<!ENTITY ocirc "&#xf4;">
-<!ENTITY ucirc "&#xfb;">
-
-<!ENTITY Agrave "&#xc0;">
-<!ENTITY Egrave "&#xc8;">
-<!ENTITY Igrave "&#xcc;">
-<!ENTITY Ograve "&#xd2;">
-<!ENTITY Ugrave "&#xd9;">
-<!ENTITY agrave "&#xe0;">
-<!ENTITY egrave "&#xe8;">
-<!ENTITY igrave "&#xec;">
-<!ENTITY ograve "&#xf2;">
-<!ENTITY ugrave "&#xf9;">
-
-<!ENTITY Atilde "&#xc3;">
-<!ENTITY Ntilde "&#xd1;">
-<!ENTITY Otilde "&#xd5;">
-<!ENTITY atilde "&#xe3;">
-<!ENTITY ntilde "&#xf1;">
-<!ENTITY otilde "&#xf5;">
-
-<!ENTITY oslash "&#xf8;">
-<!ENTITY Oslash "&#xd8;">
-
-<!ENTITY ordm "&#xba;">
-<!ENTITY ordf "&#xaa;">
-
-<!ENTITY iexcl "&#xa1;">
-<!ENTITY pound "&#xa3;">
-<!ENTITY iquest "&#xbf;">
-<!ENTITY AElig "&#xc6;">
-<!ENTITY aelig "&#xe6;">
-<!ENTITY OElig "&#x152;">
-<!ENTITY oelig "&#x153;">
-<!ENTITY Aring "&#xc5;">
-<!ENTITY aring "&#xe5;">
-<!ENTITY szlig "&#xdf;">
-
-<!ENTITY rarr "&#x2192;">
-<!ENTITY rArr "&#x21d2;">
-
-<!ENTITY macr "&#xaf;">
-
-
-<!-- fixxme: not yet classified -->
-
-<!ELEMENT sp (#PCDATA)>
-<!ATTLIST sp
-          lines CDATA #IMPLIED>
-<!ELEMENT printindex (#PCDATA)>
-
Index: Daodan/MinGW/msys/1.0/share/texinfo/texinfo.xsl
===================================================================
--- Daodan/MinGW/msys/1.0/share/texinfo/texinfo.xsl	(revision 1046)
+++ 	(revision )
@@ -1,242 +1,0 @@
-<?xml version='1.0'?>
-<!-- $Id: texinfo.xsl,v 1.1 2004/04/11 17:56:47 karl Exp $ -->
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                version="1.0">
-
-<xsl:output method="html" indent="yes"/>
-
-<!-- root rule -->
-<xsl:template match="/">
-   <html>
-    <head><title>
-     <xsl:apply-templates select="TEXINFO/SETTITLE" mode="head"/>
-    </title></head>
-     <body bgcolor="#FFFFFF"><xsl:apply-templates/>
-</body></html>
-</xsl:template>
-
-
-<xsl:template match="TEXINFO">
-  <xsl:apply-templates/>
-</xsl:template>
-
-
-<xsl:template match="TEXINFO/SETFILENAME">
-</xsl:template>
-
-<xsl:template match="TEXINFO/SETTITLE" mode="head">
-  <xsl:apply-templates/>
-</xsl:template>
-
-<xsl:template match="TEXINFO/SETTITLE">
-  <h1><xsl:apply-templates/></h1>
-</xsl:template>
-
-
-<xsl:template match="TEXINFO/DIRCATEGORY">
-</xsl:template>
-
-<xsl:template match="//PARA">
-  <p><xsl:apply-templates/></p>
-</xsl:template>
-
-<xsl:template match="//EMPH">
-  <i><xsl:apply-templates/></i>
-</xsl:template>
-
-<!-- The node -->
-<xsl:template match="TEXINFO/NODE">
- <hr/>
- <p>
- <xsl:apply-templates select="NODENAME" mode="select"/>
- <xsl:apply-templates select="NODEPREV" mode="select"/>
- <xsl:apply-templates select="NODEUP" mode="select"/>
- <xsl:apply-templates select="NODENEXT" mode="select"/>
- <xsl:apply-templates/>
-  <h2>Footnotes</h2>
-  <ol>
-  <xsl:apply-templates select=".//FOOTNOTE" mode="footnote"/>
-   </ol>
- </p>
-</xsl:template>
-
-<xsl:template match="TEXINFO/NODE/NODENAME" mode="select">
-<h2>
- <a>
- <xsl:attribute name="name">
-  <xsl:apply-templates/>
- </xsl:attribute>
- <xsl:apply-templates/>
- </a>
-</h2>
-</xsl:template>
-
-<xsl:template match="TEXINFO/NODE/NODENAME"/>
-
-
-<xsl:template match="TEXINFO/NODE/NODEPREV" mode="select">
- [ <b>Previous: </b>
- <a>
- <xsl:attribute name="href">
-  <xsl:text>#</xsl:text>
-  <xsl:apply-templates/>
- </xsl:attribute>
- <xsl:apply-templates/>
- </a> ]
-</xsl:template>
-
-<xsl:template match="TEXINFO/NODE/NODEPREV"/>
-	
-<xsl:template match="TEXINFO/NODE/NODEUP" mode="select">
- [ <b>Up: </b>
- <a>
- <xsl:attribute name="href">
-  <xsl:text>#</xsl:text>
-  <xsl:apply-templates/>
- </xsl:attribute>
- <xsl:apply-templates/>
- </a> ]
-</xsl:template>
-
-<xsl:template match="TEXINFO/NODE/NODEUP"/>
-
-<xsl:template match="TEXINFO/NODE/NODENEXT" mode="select">
- [ <b>Next: </b>
- <a>
- <xsl:attribute name="href">
-  <xsl:text>#</xsl:text>
-  <xsl:apply-templates/>
- </xsl:attribute>
- <xsl:apply-templates/>
- </a> ]
-</xsl:template>
-
-<xsl:template match="TEXINFO/NODE/NODENEXT"/>
-
-<!-- Menu -->
-<xsl:template match="//MENU">
- <h3>Menu</h3>
- <xsl:apply-templates/>
-</xsl:template> 
-
-<xsl:template match="//MENU/MENUENTRY">
- <a>
- <xsl:attribute name="href">
-  <xsl:text>#</xsl:text>
-  <xsl:apply-templates select="MENUNODE"/>
- </xsl:attribute>
- <xsl:apply-templates select="MENUTITLE"/>
- </a>: 
- <xsl:apply-templates select="MENUCOMMENT"/>
- <br/>
-</xsl:template>
-
-<xsl:template match="//MENU/MENUENTRY/MENUNODE">
- <xsl:apply-templates/>
-</xsl:template>
-
-<xsl:template match="//MENU/MENUENTRY/MENUTITLE">
- <xsl:apply-templates/>
-</xsl:template>
-
-<xsl:template match="//MENU/MENUENTRY/MENUCOMMENT">
- <xsl:apply-templates mode="menucomment"/>
-</xsl:template>
-
-<xsl:template match="PARA" mode="menucomment">
- <xsl:apply-templates/>
-</xsl:template>
-
-<xsl:template match="//PARA">
- <p><xsl:apply-templates/></p>
-</xsl:template>
-
-<!-- LISTS -->
-<xsl:template match="//ITEMIZE">
- <ul>
-  <xsl:apply-templates/>
- </ul>
-</xsl:template>
-
-<xsl:template match="//ITEMIZE/ITEM">
- <li>
-  <xsl:apply-templates/>
- </li>
-</xsl:template>
-
-<xsl:template match="//ENUMERATE">
- <ol>
-  <xsl:apply-templates/>
- </ol>
-</xsl:template>
-
-<xsl:template match="//ENUMERATE/ITEM">
- <li>
-  <xsl:apply-templates/>
- </li>
-</xsl:template>
-
-<!-- INLINE -->
-<xsl:template match="//CODE">
- <tt>
-  <xsl:apply-templates/>
- </tt>
-</xsl:template>
-
-<xsl:template match="//DFN">
- <i><b>
-  <xsl:apply-templates/>
- </b></i>
-</xsl:template>
-
-<xsl:template match="//STRONG">
- <b>
-  <xsl:apply-templates/>
- </b>
-</xsl:template>
-
-<xsl:template match="//CENTER">
- <center>
-  <xsl:apply-templates/>
- </center>
-</xsl:template>
-
-<xsl:template match="//VAR">
- <i>
-  <xsl:apply-templates/>
- </i>
-</xsl:template>
-
-<xsl:template match="//KBD">
- <tt>
-  <xsl:apply-templates/>
- </tt>
-</xsl:template>
-
-<xsl:template match="//KEY">
- <b>
-  <xsl:apply-templates/>
- </b>
-</xsl:template>
-
-<!-- BLOCKS -->
-<xsl:template match="//DISPLAY">
- <pre>
-  <xsl:apply-templates/>
- </pre>
-</xsl:template>
-
-
-<!-- INDEX -->
-<xsl:template match="//INDEXTERM">
-</xsl:template>
-
-<!-- FOOTNOTE -->
-<xsl:template match="//FOOTNOTE">
-</xsl:template>
-
-<xsl:template match="//FOOTNOTE" mode="footnote">
- <li><xsl:apply-templates/></li>
-</xsl:template>
-
-</xsl:stylesheet>
