Remove NSIS installer.
authorRichard Jones <rjones@trick.home.annexia.org>
Tue, 6 Oct 2009 14:05:09 +0000 (15:05 +0100)
committerRichard Jones <rjones@trick.home.annexia.org>
Tue, 6 Oct 2009 14:05:09 +0000 (15:05 +0100)
Makefile.in
configure.ac
wininstaller.nsis.in [deleted file]
winlicense.rtf [deleted file]

index c1a9f56..c9a6786 100644 (file)
@@ -42,20 +42,6 @@ distclean: clean
        rm -f Makefile
        rm -f virt-top/Makefile
 
        rm -f Makefile
        rm -f virt-top/Makefile
 
-# Windows installer (requires NSIS).
-
-WININSTALLER := $(PACKAGE)-$(VERSION).exe
-
-ifneq ($(MAKENSIS),)
-wininstaller: $(WININSTALLER)
-
-$(WININSTALLER): wininstaller.nsis all opt
-       "$(MAKENSIS)" \
-         //DPACKAGE=$(PACKAGE) //DVERSION=$(VERSION) \
-         //DOUTFILE=$@ $<
-       ls -l $@
-endif
-
 # Distribution.
 
 dist: ChangeLog
 # Distribution.
 
 dist: ChangeLog
index e68dcf3..c1e08aa 100644 (file)
@@ -82,96 +82,6 @@ AC_CHECK_PROG(OCAML_GETTEXT,ocaml-gettext,ocaml-gettext)
 dnl Check for msgfmt tool.
 AC_CHECK_PROG(MSGFMT,msgfmt,msgfmt)
 
 dnl Check for msgfmt tool.
 AC_CHECK_PROG(MSGFMT,msgfmt,msgfmt)
 
-dnl Check for optional NSIS (for building a Windows installer).
-dnl XXX NSIS support is probably broken at the moment XXX
-AC_ARG_WITH([nsis],
-       [AS_HELP_STRING([--with-nsis],
-           [use NSIS to build a Windows installer])],
-       [],
-       [with_nsis=no])
-
-MAKENSIS=
-LIBVIRT_DLL_PATH=
-LIBXDR_DLL_PATH=
-LIBXML2_DLL_PATH=
-GNUTLS_DLL_PATH=
-GTK_PATH=
-GTK_DLL_PATH=
-
-[
-msys_to_win_dir () {
-    eval pushd "\$$1" > /dev/null
-    eval $1=`pwd -W`
-    popd > /dev/null
-}
-]
-
-if test "x$with_nsis" != "xno"; then
-    AC_PATH_PROG(MAKENSIS,makensis,[],[$with_nsis:$PATH])
-    if test "x$MAKENSIS" = "x"; then
-       AC_MSG_FAILURE([--with-nsis was given, but could not find MAKENSIS.EXE])
-    fi
-
-    # MAKENSIS is set so we will build a rule for making a Windows
-    # installer.  To support this, generate wininstaller.nsis.
-    saved_IFS=$IFS
-    IFS=$PATH_SEPARATOR
-    for d in $PATH; do
-       IFS=$saved_IFS
-       echo Checking $d for DLLs ... >&5
-       if test -f "$d/libvirt-0.dll"; then
-           LIBVIRT_DLL_PATH="$d"
-       fi
-       if test -f "$d/libxdr.dll"; then
-           LIBXDR_DLL_PATH="$d"
-       fi
-       if test -f "$d/libxml2-2.dll"; then
-           LIBXML2_DLL_PATH="$d"
-       fi
-       if test -f "$d/libgpg-error-0.dll"; then
-           GNUTLS_DLL_PATH="$d"
-       fi
-       if test -f "$d/libgtk-win32-2.0-0.dll"; then
-           GTK_DLL_PATH="$d"
-           GTK_PATH="$d/.."
-       fi
-    done
-    IFS=$saved_IFS
-
-    if test "x$LIBVIRT_DLL_PATH" = "x"; then
-       AC_MSG_FAILURE([cannot find libvirt-0.dll in PATH])
-    fi
-    if test "x$LIBXDR_DLL_PATH" = "x"; then
-       AC_MSG_FAILURE([cannot find libxdr.dll in PATH])
-    fi
-    if test "x$LIBXML2_DLL_PATH" = "x"; then
-       AC_MSG_FAILURE([cannot find libxml2-2.dll in PATH])
-    fi
-    if test "x$GNUTLS_DLL_PATH" = "x"; then
-       AC_MSG_FAILURE([cannot find GnuTLS DLLs in PATH])
-    fi
-    if test "x$GTK_DLL_PATH" = "x"; then
-        AC_MSG_WARN([cannot find GTK DLLs in PATH])
-    fi
-
-    # Change the paths to Windows paths.
-    msys_to_win_dir LIBVIRT_DLL_PATH
-    msys_to_win_dir LIBXDR_DLL_PATH
-    msys_to_win_dir LIBXML2_DLL_PATH
-    msys_to_win_dir GNUTLS_DLL_PATH
-    if test "x$GTK_DLL_PATH" != "x"; then
-       msys_to_win_dir GTK_DLL_PATH
-       msys_to_win_dir GTK_PATH
-    fi
-fi
-AC_SUBST(MAKENSIS)
-AC_SUBST(LIBVIRT_DLL_PATH)
-AC_SUBST(LIBXDR_DLL_PATH)
-AC_SUBST(LIBXML2_DLL_PATH)
-AC_SUBST(GNUTLS_DLL_PATH)
-AC_SUBST(GTK_DLL_PATH)
-AC_SUBST(GTK_PATH)
-
 dnl Write gettext modules for the programs.
 dnl http://www.le-gall.net/sylvain+violaine/documentation/ocaml-gettext/html/reference-manual/ch03s04.html
 for d in virt-top; do
 dnl Write gettext modules for the programs.
 dnl http://www.le-gall.net/sylvain+violaine/documentation/ocaml-gettext/html/reference-manual/ch03s04.html
 for d in virt-top; do
@@ -221,7 +131,4 @@ AC_CONFIG_FILES([Makefile
        virt-top/Makefile
        virt-top/virt_top_version.ml
        ])
        virt-top/Makefile
        virt-top/virt_top_version.ml
        ])
-if test "x$MAKENSIS" != "x"; then
-       AC_CONFIG_FILES([wininstaller.nsis])
-fi
 AC_OUTPUT
 AC_OUTPUT
diff --git a/wininstaller.nsis.in b/wininstaller.nsis.in
deleted file mode 100644 (file)
index b5971a5..0000000
+++ /dev/null
@@ -1,131 +0,0 @@
-#!Nsis Installer Command Script\r
-# @configure_input@\r
-# Copyright (C) 2008 Red Hat Inc., Richard W.M. Jones\r
-#\r
-# This library is free software; you can redistribute it and/or\r
-# modify it under the terms of the GNU Lesser General Public\r
-# License as published by the Free Software Foundation; either\r
-# version 2 of the License, or (at your option) any later version.\r
-#\r
-# This library is distributed in the hope that it will be useful,\r
-# but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\r
-# Lesser General Public License for more details.\r
-#\r
-# You should have received a copy of the GNU Lesser General Public\r
-# License along with this library; if not, write to the Free Software\r
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA\r
-\r
-# To build the installer:\r
-#\r
-# ./configure --with-nsis=/c/Progra~1/NSIS\r
-# make all opt\r
-# make wininstaller\r
-\r
-# Installer name.\r
-Name "OCaml Libvirt ${VERSION}"\r
-\r
-# This is where we will write the installer to, set by Makefile.\r
-OutFile "${OUTFILE}"\r
-\r
-# Target directory, or use value from the registry.\r
-InstallDir "c:\${PACKAGE}"\r
-InstallDirRegKey HKLM SOFTWARE\OCAML-LIBVIRT "Install_Dir"\r
-\r
-# Hide details.\r
-ShowInstDetails hide\r
-ShowUninstDetails hide\r
-\r
-# BZip2-compressed files are smaller but use more memory at runtime.\r
-SetCompressor bzip2\r
-\r
-# Include an XP manifest.\r
-XPStyle on\r
-\r
-# Pages in the installer wizard.\r
-Page license\r
-Page components\r
-Page directory\r
-Page instfiles\r
-\r
-# Title, data for license page.\r
-LicenseText "Continue"\r
-LicenseData "winlicense.rtf"\r
-\r
-# Title for components page.\r
-ComponentText "This will install OCaml libvirt bindings, dependent libraries and programs on your computer. Select which optional components you want installed."\r
-\r
-# Title for the install directory page.\r
-DirText "Please select the installation folder."\r
-\r
-# Installer sections.\r
-Section "Libvirt and its libraries (required)"\r
-       # Make this required.\r
-       SectionIn RO\r
-\r
-       SetOutPath $INSTDIR\r
-       File "@LIBVIRT_DLL_PATH@\libvirt-0.dll"\r
-       File "@LIBXDR_DLL_PATH@\libxdr.dll"\r
-       File "@LIBXML2_DLL_PATH@\libxml2-2.dll"\r
-       File "@GNUTLS_DLL_PATH@\libgcrypt-??.dll"\r
-       File "@GNUTLS_DLL_PATH@\libgnutls-??.dll"\r
-       File "@GNUTLS_DLL_PATH@\libgpg-error-?.dll"\r
-       File "@GNUTLS_DLL_PATH@\libtasn1-?.dll"\r
-       File "@GTK_DLL_PATH@\*.dll"\r
-\r
-       SetOutPath $INSTDIR\lib\r
-       File /r "@GTK_PATH@\lib\gtk-2.0"\r
-       File /r "@GTK_PATH@\lib\pango"\r
-\r
-       SetOutPath $INSTDIR\r
-       File /r "@GTK_PATH@\etc"\r
-\r
-       SetOutPath $INSTDIR\r
-SectionEnd\r
-\r
-Section "Programs (recommended)"\r
-       SetOutPath $INSTDIR\r
-       File "/oname=mlvirsh.exe" "mlvirsh\mlvirsh.opt"\r
-       File "/oname=virt-ctrl.exe" "virt-ctrl\virt-ctrl.opt"\r
-SectionEnd\r
-\r
-Section "OCaml Libvirt bindings (for developers only)"\r
-       # XXX Need to find out where Objective CAML is installed.\r
-SectionEnd\r
-\r
-Section "Start Menu Shortcuts"\r
-       CreateDirectory "$SMPROGRAMS\${PACKAGE}"\r
-       CreateShortCut "$SMPROGRAMS\${PACKAGE}\Uninstall.lnk" "$INSTDIR\Uninstall ${PACKAGE}.exe" "" "$INSTDIR\Uninstall ${PACKAGE}.exe" 0\r
-       CreateShortCut "$SMPROGRAMS\${PACKAGE}\Virt Shell.lnk" "$INSTDIR\mlvirsh.exe" "" "$INSTDIR\mlvirsh.exe" 0\r
-       CreateShortCut "$SMPROGRAMS\${PACKAGE}\Virt Control.lnk" "$INSTDIR\virt-ctrl.exe" "" "$INSTDIR\virt-ctrl.exe" 0\r
-SectionEnd\r
-\r
-Section "Desktop Icons"\r
-       CreateShortCut "$DESKTOP\Virt Shell.lnk" "$INSTDIR\mlvirsh.exe" "" "$INSTDIR\mlvirsh.exe" 0\r
-       CreateShortCut "$DESKTOP\Virt Control.lnk" "$INSTDIR\virt-ctrl.exe" "" "$INSTDIR\virt-ctrl.exe" 0\r
-SectionEnd\r
-\r
-Section "Uninstall"\r
-       # Desktop icons\r
-       Delete /rebootok "$DESKTOP\Virt Shell.lnk"\r
-       Delete /rebootok "$DESKTOP\Virt Control.lnk"\r
-\r
-       # Menu shortcuts\r
-       Delete /rebootok "$SMPROGRAMS\${PACKAGE}\Virt Shell.lnk"\r
-       Delete /rebootok "$SMPROGRAMS\${PACKAGE}\Virt Control.lnk"\r
-       Delete /rebootok "$SMPROGRAMS\${PACKAGE}\Uninstall.lnk"\r
-       RMDir "$SMPROGRAMS\${PACKAGE}"\r
-\r
-       # Files in installation directory.\r
-       RMDir /r "$INSTDIR\etc"\r
-       RMDir /r "$INSTDIR\lib"\r
-       Delete /rebootok "$INSTDIR\*.exe"\r
-       Delete /rebootok "$INSTDIR\*.dll"\r
-\r
-       RMDir "$INSTDIR"\r
-SectionEnd\r
-\r
-# Write an uninstaller into the installation directory.\r
-Section -post\r
-       WriteUninstaller "$INSTDIR\Uninstall ${PACKAGE}.exe"\r
-SectionEnd\r
diff --git a/winlicense.rtf b/winlicense.rtf
deleted file mode 100644 (file)
index 42a4a80..0000000
+++ /dev/null
@@ -1,871 +0,0 @@
-{\rtf1\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\fswiss\fcharset0 Arial;}{\f1\fnil\fcharset0 Courier New;}}\r
-{\*\generator Msftedit 5.41.21.2507;}\viewkind4\uc1\pard\f0\fs20 OCaml libvirt bindings and programs\par\r
-Copyright \'a9 2007-2008 Red Hat Inc.\par\r
-http://libvirt.org\par\r
-\par\r
-Programs and libraries in this installer are licensed variously under the GNU General Public License (GPL) and GNU Lesser General Public License (LGPL) version 2 and above.  These licenses are reproduced below.  Source for all parts is available from the website at http://libvirt.org.\par\r
-\par\r
-\par\r
-\par\r
-\par\r
-\f1\tab\tab     GNU GENERAL PUBLIC LICENSE\par\r
-\tab\tab        Version 2, June 1991\par\r
-\par\r
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.\par\r
-                          675 Mass Ave, Cambridge, MA 02139, USA\par\r
- Everyone is permitted to copy and distribute verbatim copies\par\r
- of this license document, but changing it is not allowed.\par\r
-\par\r
-\tab\tab\tab     Preamble\par\r
-\par\r
-  The licenses for most software are designed to take away your\par\r
-freedom to share and change it.  By contrast, the GNU General Public\par\r
-License is intended to guarantee your freedom to share and change free\par\r
-software--to make sure the software is free for all its users.  This\par\r
-General Public License applies to most of the Free Software\par\r
-Foundation's software and to any other program whose authors commit to\par\r
-using it.  (Some other Free Software Foundation software is covered by\par\r
-the GNU Library General Public License instead.)  You can apply it to\par\r
-your programs, too.\par\r
-\par\r
-  When we speak of free software, we are referring to freedom, not\par\r
-price.  Our General Public Licenses are designed to make sure that you\par\r
-have the freedom to distribute copies of free software (and charge for\par\r
-this service if you wish), that you receive source code or can get it\par\r
-if you want it, that you can change the software or use pieces of it\par\r
-in new free programs; and that you know you can do these things.\par\r
-\par\r
-  To protect your rights, we need to make restrictions that forbid\par\r
-anyone to deny you these rights or to ask you to surrender the rights.\par\r
-These restrictions translate to certain responsibilities for you if you\par\r
-distribute copies of the software, or if you modify it.\par\r
-\par\r
-  For example, if you distribute copies of such a program, whether\par\r
-gratis or for a fee, you must give the recipients all the rights that\par\r
-you have.  You must make sure that they, too, receive or can get the\par\r
-source code.  And you must show them these terms so they know their\par\r
-rights.\par\r
-\par\r
-  We protect your rights with two steps: (1) copyright the software, and\par\r
-(2) offer you this license which gives you legal permission to copy,\par\r
-distribute and/or modify the software.\par\r
-\par\r
-  Also, for each author's protection and ours, we want to make certain\par\r
-that everyone understands that there is no warranty for this free\par\r
-software.  If the software is modified by someone else and passed on, we\par\r
-want its recipients to know that what they have is not the original, so\par\r
-that any problems introduced by others will not reflect on the original\par\r
-authors' reputations.\par\r
-\par\r
-  Finally, any free program is threatened constantly by software\par\r
-patents.  We wish to avoid the danger that redistributors of a free\par\r
-program will individually obtain patent licenses, in effect making the\par\r
-program proprietary.  To prevent this, we have made it clear that any\par\r
-patent must be licensed for everyone's free use or not licensed at all.\par\r
-\par\r
-  The precise terms and conditions for copying, distribution and\par\r
-modification follow.\par\r
-\page\par\r
-\tab\tab     GNU GENERAL PUBLIC LICENSE\par\r
-   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\par\r
-\par\r
-  0. This License applies to any program or other work which contains\par\r
-a notice placed by the copyright holder saying it may be distributed\par\r
-under the terms of this General Public License.  The "Program", below,\par\r
-refers to any such program or work, and a "work based on the Program"\par\r
-means either the Program or any derivative work under copyright law:\par\r
-that is to say, a work containing the Program or a portion of it,\par\r
-either verbatim or with modifications and/or translated into another\par\r
-language.  (Hereinafter, translation is included without limitation in\par\r
-the term "modification".)  Each licensee is addressed as "you".\par\r
-\par\r
-Activities other than copying, distribution and modification are not\par\r
-covered by this License; they are outside its scope.  The act of\par\r
-running the Program is not restricted, and the output from the Program\par\r
-is covered only if its contents constitute a work based on the\par\r
-Program (independent of having been made by running the Program).\par\r
-Whether that is true depends on what the Program does.\par\r
-\par\r
-  1. You may copy and distribute verbatim copies of the Program's\par\r
-source code as you receive it, in any medium, provided that you\par\r
-conspicuously and appropriately publish on each copy an appropriate\par\r
-copyright notice and disclaimer of warranty; keep intact all the\par\r
-notices that refer to this License and to the absence of any warranty;\par\r
-and give any other recipients of the Program a copy of this License\par\r
-along with the Program.\par\r
-\par\r
-You may charge a fee for the physical act of transferring a copy, and\par\r
-you may at your option offer warranty protection in exchange for a fee.\par\r
-\par\r
-  2. You may modify your copy or copies of the Program or any portion\par\r
-of it, thus forming a work based on the Program, and copy and\par\r
-distribute such modifications or work under the terms of Section 1\par\r
-above, provided that you also meet all of these conditions:\par\r
-\par\r
-    a) You must cause the modified files to carry prominent notices\par\r
-    stating that you changed the files and the date of any change.\par\r
-\par\r
-    b) You must cause any work that you distribute or publish, that in\par\r
-    whole or in part contains or is derived from the Program or any\par\r
-    part thereof, to be licensed as a whole at no charge to all third\par\r
-    parties under the terms of this License.\par\r
-\par\r
-    c) If the modified program normally reads commands interactively\par\r
-    when run, you must cause it, when started running for such\par\r
-    interactive use in the most ordinary way, to print or display an\par\r
-    announcement including an appropriate copyright notice and a\par\r
-    notice that there is no warranty (or else, saying that you provide\par\r
-    a warranty) and that users may redistribute the program under\par\r
-    these conditions, and telling the user how to view a copy of this\par\r
-    License.  (Exception: if the Program itself is interactive but\par\r
-    does not normally print such an announcement, your work based on\par\r
-    the Program is not required to print an announcement.)\par\r
-\page\par\r
-These requirements apply to the modified work as a whole.  If\par\r
-identifiable sections of that work are not derived from the Program,\par\r
-and can be reasonably considered independent and separate works in\par\r
-themselves, then this License, and its terms, do not apply to those\par\r
-sections when you distribute them as separate works.  But when you\par\r
-distribute the same sections as part of a whole which is a work based\par\r
-on the Program, the distribution of the whole must be on the terms of\par\r
-this License, whose permissions for other licensees extend to the\par\r
-entire whole, and thus to each and every part regardless of who wrote it.\par\r
-\par\r
-Thus, it is not the intent of this section to claim rights or contest\par\r
-your rights to work written entirely by you; rather, the intent is to\par\r
-exercise the right to control the distribution of derivative or\par\r
-collective works based on the Program.\par\r
-\par\r
-In addition, mere aggregation of another work not based on the Program\par\r
-with the Program (or with a work based on the Program) on a volume of\par\r
-a storage or distribution medium does not bring the other work under\par\r
-the scope of this License.\par\r
-\par\r
-  3. You may copy and distribute the Program (or a work based on it,\par\r
-under Section 2) in object code or executable form under the terms of\par\r
-Sections 1 and 2 above provided that you also do one of the following:\par\r
-\par\r
-    a) Accompany it with the complete corresponding machine-readable\par\r
-    source code, which must be distributed under the terms of Sections\par\r
-    1 and 2 above on a medium customarily used for software interchange; or,\par\r
-\par\r
-    b) Accompany it with a written offer, valid for at least three\par\r
-    years, to give any third party, for a charge no more than your\par\r
-    cost of physically performing source distribution, a complete\par\r
-    machine-readable copy of the corresponding source code, to be\par\r
-    distributed under the terms of Sections 1 and 2 above on a medium\par\r
-    customarily used for software interchange; or,\par\r
-\par\r
-    c) Accompany it with the information you received as to the offer\par\r
-    to distribute corresponding source code.  (This alternative is\par\r
-    allowed only for noncommercial distribution and only if you\par\r
-    received the program in object code or executable form with such\par\r
-    an offer, in accord with Subsection b above.)\par\r
-\par\r
-The source code for a work means the preferred form of the work for\par\r
-making modifications to it.  For an executable work, complete source\par\r
-code means all the source code for all modules it contains, plus any\par\r
-associated interface definition files, plus the scripts used to\par\r
-control compilation and installation of the executable.  However, as a\par\r
-special exception, the source code distributed need not include\par\r
-anything that is normally distributed (in either source or binary\par\r
-form) with the major components (compiler, kernel, and so on) of the\par\r
-operating system on which the executable runs, unless that component\par\r
-itself accompanies the executable.\par\r
-\par\r
-If distribution of executable or object code is made by offering\par\r
-access to copy from a designated place, then offering equivalent\par\r
-access to copy the source code from the same place counts as\par\r
-distribution of the source code, even though third parties are not\par\r
-compelled to copy the source along with the object code.\par\r
-\page\par\r
-  4. You may not copy, modify, sublicense, or distribute the Program\par\r
-except as expressly provided under this License.  Any attempt\par\r
-otherwise to copy, modify, sublicense or distribute the Program is\par\r
-void, and will automatically terminate your rights under this License.\par\r
-However, parties who have received copies, or rights, from you under\par\r
-this License will not have their licenses terminated so long as such\par\r
-parties remain in full compliance.\par\r
-\par\r
-  5. You are not required to accept this License, since you have not\par\r
-signed it.  However, nothing else grants you permission to modify or\par\r
-distribute the Program or its derivative works.  These actions are\par\r
-prohibited by law if you do not accept this License.  Therefore, by\par\r
-modifying or distributing the Program (or any work based on the\par\r
-Program), you indicate your acceptance of this License to do so, and\par\r
-all its terms and conditions for copying, distributing or modifying\par\r
-the Program or works based on it.\par\r
-\par\r
-  6. Each time you redistribute the Program (or any work based on the\par\r
-Program), the recipient automatically receives a license from the\par\r
-original licensor to copy, distribute or modify the Program subject to\par\r
-these terms and conditions.  You may not impose any further\par\r
-restrictions on the recipients' exercise of the rights granted herein.\par\r
-You are not responsible for enforcing compliance by third parties to\par\r
-this License.\par\r
-\par\r
-  7. If, as a consequence of a court judgment or allegation of patent\par\r
-infringement or for any other reason (not limited to patent issues),\par\r
-conditions are imposed on you (whether by court order, agreement or\par\r
-otherwise) that contradict the conditions of this License, they do not\par\r
-excuse you from the conditions of this License.  If you cannot\par\r
-distribute so as to satisfy simultaneously your obligations under this\par\r
-License and any other pertinent obligations, then as a consequence you\par\r
-may not distribute the Program at all.  For example, if a patent\par\r
-license would not permit royalty-free redistribution of the Program by\par\r
-all those who receive copies directly or indirectly through you, then\par\r
-the only way you could satisfy both it and this License would be to\par\r
-refrain entirely from distribution of the Program.\par\r
-\par\r
-If any portion of this section is held invalid or unenforceable under\par\r
-any particular circumstance, the balance of the section is intended to\par\r
-apply and the section as a whole is intended to apply in other\par\r
-circumstances.\par\r
-\par\r
-It is not the purpose of this section to induce you to infringe any\par\r
-patents or other property right claims or to contest validity of any\par\r
-such claims; this section has the sole purpose of protecting the\par\r
-integrity of the free software distribution system, which is\par\r
-implemented by public license practices.  Many people have made\par\r
-generous contributions to the wide range of software distributed\par\r
-through that system in reliance on consistent application of that\par\r
-system; it is up to the author/donor to decide if he or she is willing\par\r
-to distribute software through any other system and a licensee cannot\par\r
-impose that choice.\par\r
-\par\r
-This section is intended to make thoroughly clear what is believed to\par\r
-be a consequence of the rest of this License.\par\r
-\page\par\r
-  8. If the distribution and/or use of the Program is restricted in\par\r
-certain countries either by patents or by copyrighted interfaces, the\par\r
-original copyright holder who places the Program under this License\par\r
-may add an explicit geographical distribution limitation excluding\par\r
-those countries, so that distribution is permitted only in or among\par\r
-countries not thus excluded.  In such case, this License incorporates\par\r
-the limitation as if written in the body of this License.\par\r
-\par\r
-  9. The Free Software Foundation may publish revised and/or new versions\par\r
-of the General Public License from time to time.  Such new versions will\par\r
-be similar in spirit to the present version, but may differ in detail to\par\r
-address new problems or concerns.\par\r
-\par\r
-Each version is given a distinguishing version number.  If the Program\par\r
-specifies a version number of this License which applies to it and "any\par\r
-later version", you have the option of following the terms and conditions\par\r
-either of that version or of any later version published by the Free\par\r
-Software Foundation.  If the Program does not specify a version number of\par\r
-this License, you may choose any version ever published by the Free Software\par\r
-Foundation.\par\r
-\par\r
-  10. If you wish to incorporate parts of the Program into other free\par\r
-programs whose distribution conditions are different, write to the author\par\r
-to ask for permission.  For software which is copyrighted by the Free\par\r
-Software Foundation, write to the Free Software Foundation; we sometimes\par\r
-make exceptions for this.  Our decision will be guided by the two goals\par\r
-of preserving the free status of all derivatives of our free software and\par\r
-of promoting the sharing and reuse of software generally.\par\r
-\par\r
-\tab\tab\tab     NO WARRANTY\par\r
-\par\r
-  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\par\r
-FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN\par\r
-OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\par\r
-PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\par\r
-OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\par\r
-MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS\par\r
-TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE\par\r
-PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,\par\r
-REPAIR OR CORRECTION.\par\r
-\par\r
-  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\par\r
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\par\r
-REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\par\r
-INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\par\r
-OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\par\r
-TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\par\r
-YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\par\r
-PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\par\r
-POSSIBILITY OF SUCH DAMAGES.\par\r
-\par\r
-\tab\tab      END OF TERMS AND CONDITIONS\par\r
-\page\par\r
-\tab     How to Apply These Terms to Your New Programs\par\r
-\par\r
-  If you develop a new program, and you want it to be of the greatest\par\r
-possible use to the public, the best way to achieve this is to make it\par\r
-free software which everyone can redistribute and change under these terms.\par\r
-\par\r
-  To do so, attach the following notices to the program.  It is safest\par\r
-to attach them to the start of each source file to most effectively\par\r
-convey the exclusion of warranty; and each file should have at least\par\r
-the "copyright" line and a pointer to where the full notice is found.\par\r
-\par\r
-    <one line to give the program's name and a brief idea of what it does.>\par\r
-    Copyright (C) 19yy  <name of author>\par\r
-\par\r
-    This program is free software; you can redistribute it and/or modify\par\r
-    it under the terms of the GNU General Public License as published by\par\r
-    the Free Software Foundation; either version 2 of the License, or\par\r
-    (at your option) any later version.\par\r
-\par\r
-    This program is distributed in the hope that it will be useful,\par\r
-    but WITHOUT ANY WARRANTY; without even the implied warranty of\par\r
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\par\r
-    GNU General Public License for more details.\par\r
-\par\r
-    You should have received a copy of the GNU General Public License\par\r
-    along with this program; if not, write to the Free Software\par\r
-    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\par\r
-\par\r
-Also add information on how to contact you by electronic and paper mail.\par\r
-\par\r
-If the program is interactive, make it output a short notice like this\par\r
-when it starts in an interactive mode:\par\r
-\par\r
-    Gnomovision version 69, Copyright (C) 19yy name of author\par\r
-    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\par\r
-    This is free software, and you are welcome to redistribute it\par\r
-    under certain conditions; type `show c' for details.\par\r
-\par\r
-The hypothetical commands `show w' and `show c' should show the appropriate\par\r
-parts of the General Public License.  Of course, the commands you use may\par\r
-be called something other than `show w' and `show c'; they could even be\par\r
-mouse-clicks or menu items--whatever suits your program.\par\r
-\par\r
-You should also get your employer (if you work as a programmer) or your\par\r
-school, if any, to sign a "copyright disclaimer" for the program, if\par\r
-necessary.  Here is a sample; alter the names:\par\r
-\par\r
-  Yoyodyne, Inc., hereby disclaims all copyright interest in the program\par\r
-  `Gnomovision' (which makes passes at compilers) written by James Hacker.\par\r
-\par\r
-  <signature of Ty Coon>, 1 April 1989\par\r
-  Ty Coon, President of Vice\par\r
-\par\r
-This General Public License does not permit incorporating your program into\par\r
-proprietary programs.  If your program is a subroutine library, you may\par\r
-consider it more useful to permit linking proprietary applications with the\par\r
-library.  If this is what you want to do, use the GNU Library General\par\r
-Public License instead of this License.\par\r
-\par\r
-\f0\par\r
-\par\r
-\f1\par\r
-                  GNU LESSER GENERAL PUBLIC LICENSE\par\r
-                       Version 2.1, February 1999\par\r
-\par\r
- Copyright (C) 1991, 1999 Free Software Foundation, Inc.\par\r
-     51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA\par\r
- Everyone is permitted to copy and distribute verbatim copies\par\r
- of this license document, but changing it is not allowed.\par\r
-\par\r
-[This is the first released version of the Lesser GPL.  It also counts\par\r
- as the successor of the GNU Library Public License, version 2, hence\par\r
- the version number 2.1.]\par\r
-\par\r
-                            Preamble\par\r
-\par\r
-  The licenses for most software are designed to take away your\par\r
-freedom to share and change it.  By contrast, the GNU General Public\par\r
-Licenses are intended to guarantee your freedom to share and change\par\r
-free software--to make sure the software is free for all its users.\par\r
-\par\r
-  This license, the Lesser General Public License, applies to some\par\r
-specially designated software packages--typically libraries--of the\par\r
-Free Software Foundation and other authors who decide to use it.  You\par\r
-can use it too, but we suggest you first think carefully about whether\par\r
-this license or the ordinary General Public License is the better\par\r
-strategy to use in any particular case, based on the explanations\par\r
-below.\par\r
-\par\r
-  When we speak of free software, we are referring to freedom of use,\par\r
-not price.  Our General Public Licenses are designed to make sure that\par\r
-you have the freedom to distribute copies of free software (and charge\par\r
-for this service if you wish); that you receive source code or can get\par\r
-it if you want it; that you can change the software and use pieces of\par\r
-it in new free programs; and that you are informed that you can do\par\r
-these things.\par\r
-\par\r
-  To protect your rights, we need to make restrictions that forbid\par\r
-distributors to deny you these rights or to ask you to surrender these\par\r
-rights.  These restrictions translate to certain responsibilities for\par\r
-you if you distribute copies of the library or if you modify it.\par\r
-\par\r
-  For example, if you distribute copies of the library, whether gratis\par\r
-or for a fee, you must give the recipients all the rights that we gave\par\r
-you.  You must make sure that they, too, receive or can get the source\par\r
-code.  If you link other code with the library, you must provide\par\r
-complete object files to the recipients, so that they can relink them\par\r
-with the library after making changes to the library and recompiling\par\r
-it.  And you must show them these terms so they know their rights.\par\r
-\par\r
-  We protect your rights with a two-step method: (1) we copyright the\par\r
-library, and (2) we offer you this license, which gives you legal\par\r
-permission to copy, distribute and/or modify the library.\par\r
-\par\r
-  To protect each distributor, we want to make it very clear that\par\r
-there is no warranty for the free library.  Also, if the library is\par\r
-modified by someone else and passed on, the recipients should know\par\r
-that what they have is not the original version, so that the original\par\r
-author's reputation will not be affected by problems that might be\par\r
-introduced by others.\par\r
-^L\par\r
-  Finally, software patents pose a constant threat to the existence of\par\r
-any free program.  We wish to make sure that a company cannot\par\r
-effectively restrict the users of a free program by obtaining a\par\r
-restrictive license from a patent holder.  Therefore, we insist that\par\r
-any patent license obtained for a version of the library must be\par\r
-consistent with the full freedom of use specified in this license.\par\r
-\par\r
-  Most GNU software, including some libraries, is covered by the\par\r
-ordinary GNU General Public License.  This license, the GNU Lesser\par\r
-General Public License, applies to certain designated libraries, and\par\r
-is quite different from the ordinary General Public License.  We use\par\r
-this license for certain libraries in order to permit linking those\par\r
-libraries into non-free programs.\par\r
-\par\r
-  When a program is linked with a library, whether statically or using\par\r
-a shared library, the combination of the two is legally speaking a\par\r
-combined work, a derivative of the original library.  The ordinary\par\r
-General Public License therefore permits such linking only if the\par\r
-entire combination fits its criteria of freedom.  The Lesser General\par\r
-Public License permits more lax criteria for linking other code with\par\r
-the library.\par\r
-\par\r
-  We call this license the "Lesser" General Public License because it\par\r
-does Less to protect the user's freedom than the ordinary General\par\r
-Public License.  It also provides other free software developers Less\par\r
-of an advantage over competing non-free programs.  These disadvantages\par\r
-are the reason we use the ordinary General Public License for many\par\r
-libraries.  However, the Lesser license provides advantages in certain\par\r
-special circumstances.\par\r
-\par\r
-  For example, on rare occasions, there may be a special need to\par\r
-encourage the widest possible use of a certain library, so that it\par\r
-becomes\par\r
-a de-facto standard.  To achieve this, non-free programs must be\par\r
-allowed to use the library.  A more frequent case is that a free\par\r
-library does the same job as widely used non-free libraries.  In this\par\r
-case, there is little to gain by limiting the free library to free\par\r
-software only, so we use the Lesser General Public License.\par\r
-\par\r
-  In other cases, permission to use a particular library in non-free\par\r
-programs enables a greater number of people to use a large body of\par\r
-free software.  For example, permission to use the GNU C Library in\par\r
-non-free programs enables many more people to use the whole GNU\par\r
-operating system, as well as its variant, the GNU/Linux operating\par\r
-system.\par\r
-\par\r
-  Although the Lesser General Public License is Less protective of the\par\r
-users' freedom, it does ensure that the user of a program that is\par\r
-linked with the Library has the freedom and the wherewithal to run\par\r
-that program using a modified version of the Library.\par\r
-\par\r
-  The precise terms and conditions for copying, distribution and\par\r
-modification follow.  Pay close attention to the difference between a\par\r
-"work based on the library" and a "work that uses the library".  The\par\r
-former contains code derived from the library, whereas the latter must\par\r
-be combined with the library in order to run.\par\r
-^L\par\r
-                  GNU LESSER GENERAL PUBLIC LICENSE\par\r
-   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\par\r
-\par\r
-  0. This License Agreement applies to any software library or other\par\r
-program which contains a notice placed by the copyright holder or\par\r
-other authorized party saying it may be distributed under the terms of\par\r
-this Lesser General Public License (also called "this License").\par\r
-Each licensee is addressed as "you".\par\r
-\par\r
-  A "library" means a collection of software functions and/or data\par\r
-prepared so as to be conveniently linked with application programs\par\r
-(which use some of those functions and data) to form executables.\par\r
-\par\r
-  The "Library", below, refers to any such software library or work\par\r
-which has been distributed under these terms.  A "work based on the\par\r
-Library" means either the Library or any derivative work under\par\r
-copyright law: that is to say, a work containing the Library or a\par\r
-portion of it, either verbatim or with modifications and/or translated\par\r
-straightforwardly into another language.  (Hereinafter, translation is\par\r
-included without limitation in the term "modification".)\par\r
-\par\r
-  "Source code" for a work means the preferred form of the work for\par\r
-making modifications to it.  For a library, complete source code means\par\r
-all the source code for all modules it contains, plus any associated\par\r
-interface definition files, plus the scripts used to control\par\r
-compilation\par\r
-and installation of the library.\par\r
-\par\r
-  Activities other than copying, distribution and modification are not\par\r
-covered by this License; they are outside its scope.  The act of\par\r
-running a program using the Library is not restricted, and output from\par\r
-such a program is covered only if its contents constitute a work based\par\r
-on the Library (independent of the use of the Library in a tool for\par\r
-writing it).  Whether that is true depends on what the Library does\par\r
-and what the program that uses the Library does.\par\r
-\par\r
-  1. You may copy and distribute verbatim copies of the Library's\par\r
-complete source code as you receive it, in any medium, provided that\par\r
-you conspicuously and appropriately publish on each copy an\par\r
-appropriate copyright notice and disclaimer of warranty; keep intact\par\r
-all the notices that refer to this License and to the absence of any\par\r
-warranty; and distribute a copy of this License along with the\par\r
-Library.\par\r
-\par\r
-  You may charge a fee for the physical act of transferring a copy,\par\r
-and you may at your option offer warranty protection in exchange for a\par\r
-fee.\par\r
-\page\par\r
-  2. You may modify your copy or copies of the Library or any portion\par\r
-of it, thus forming a work based on the Library, and copy and\par\r
-distribute such modifications or work under the terms of Section 1\par\r
-above, provided that you also meet all of these conditions:\par\r
-\par\r
-    a) The modified work must itself be a software library.\par\r
-\par\r
-    b) You must cause the files modified to carry prominent notices\par\r
-    stating that you changed the files and the date of any change.\par\r
-\par\r
-    c) You must cause the whole of the work to be licensed at no\par\r
-    charge to all third parties under the terms of this License.\par\r
-\par\r
-    d) If a facility in the modified Library refers to a function or a\par\r
-    table of data to be supplied by an application program that uses\par\r
-    the facility, other than as an argument passed when the facility\par\r
-    is invoked, then you must make a good faith effort to ensure that,\par\r
-    in the event an application does not supply such function or\par\r
-    table, the facility still operates, and performs whatever part of\par\r
-    its purpose remains meaningful.\par\r
-\par\r
-    (For example, a function in a library to compute square roots has\par\r
-    a purpose that is entirely well-defined independent of the\par\r
-    application.  Therefore, Subsection 2d requires that any\par\r
-    application-supplied function or table used by this function must\par\r
-    be optional: if the application does not supply it, the square\par\r
-    root function must still compute square roots.)\par\r
-\par\r
-These requirements apply to the modified work as a whole.  If\par\r
-identifiable sections of that work are not derived from the Library,\par\r
-and can be reasonably considered independent and separate works in\par\r
-themselves, then this License, and its terms, do not apply to those\par\r
-sections when you distribute them as separate works.  But when you\par\r
-distribute the same sections as part of a whole which is a work based\par\r
-on the Library, the distribution of the whole must be on the terms of\par\r
-this License, whose permissions for other licensees extend to the\par\r
-entire whole, and thus to each and every part regardless of who wrote\par\r
-it.\par\r
-\par\r
-Thus, it is not the intent of this section to claim rights or contest\par\r
-your rights to work written entirely by you; rather, the intent is to\par\r
-exercise the right to control the distribution of derivative or\par\r
-collective works based on the Library.\par\r
-\par\r
-In addition, mere aggregation of another work not based on the Library\par\r
-with the Library (or with a work based on the Library) on a volume of\par\r
-a storage or distribution medium does not bring the other work under\par\r
-the scope of this License.\par\r
-\par\r
-  3. You may opt to apply the terms of the ordinary GNU General Public\par\r
-License instead of this License to a given copy of the Library.  To do\par\r
-this, you must alter all the notices that refer to this License, so\par\r
-that they refer to the ordinary GNU General Public License, version 2,\par\r
-instead of to this License.  (If a newer version than version 2 of the\par\r
-ordinary GNU General Public License has appeared, then you can specify\par\r
-that version instead if you wish.)  Do not make any other change in\par\r
-these notices.\par\r
-^L\par\r
-  Once this change is made in a given copy, it is irreversible for\par\r
-that copy, so the ordinary GNU General Public License applies to all\par\r
-subsequent copies and derivative works made from that copy.\par\r
-\par\r
-  This option is useful when you wish to copy part of the code of\par\r
-the Library into a program that is not a library.\par\r
-\par\r
-  4. You may copy and distribute the Library (or a portion or\par\r
-derivative of it, under Section 2) in object code or executable form\par\r
-under the terms of Sections 1 and 2 above provided that you accompany\par\r
-it with the complete corresponding machine-readable source code, which\par\r
-must be distributed under the terms of Sections 1 and 2 above on a\par\r
-medium customarily used for software interchange.\par\r
-\par\r
-  If distribution of object code is made by offering access to copy\par\r
-from a designated place, then offering equivalent access to copy the\par\r
-source code from the same place satisfies the requirement to\par\r
-distribute the source code, even though third parties are not\par\r
-compelled to copy the source along with the object code.\par\r
-\par\r
-  5. A program that contains no derivative of any portion of the\par\r
-Library, but is designed to work with the Library by being compiled or\par\r
-linked with it, is called a "work that uses the Library".  Such a\par\r
-work, in isolation, is not a derivative work of the Library, and\par\r
-therefore falls outside the scope of this License.\par\r
-\par\r
-  However, linking a "work that uses the Library" with the Library\par\r
-creates an executable that is a derivative of the Library (because it\par\r
-contains portions of the Library), rather than a "work that uses the\par\r
-library".  The executable is therefore covered by this License.\par\r
-Section 6 states terms for distribution of such executables.\par\r
-\par\r
-  When a "work that uses the Library" uses material from a header file\par\r
-that is part of the Library, the object code for the work may be a\par\r
-derivative work of the Library even though the source code is not.\par\r
-Whether this is true is especially significant if the work can be\par\r
-linked without the Library, or if the work is itself a library.  The\par\r
-threshold for this to be true is not precisely defined by law.\par\r
-\par\r
-  If such an object file uses only numerical parameters, data\par\r
-structure layouts and accessors, and small macros and small inline\par\r
-functions (ten lines or less in length), then the use of the object\par\r
-file is unrestricted, regardless of whether it is legally a derivative\par\r
-work.  (Executables containing this object code plus portions of the\par\r
-Library will still fall under Section 6.)\par\r
-\par\r
-  Otherwise, if the work is a derivative of the Library, you may\par\r
-distribute the object code for the work under the terms of Section 6.\par\r
-Any executables containing that work also fall under Section 6,\par\r
-whether or not they are linked directly with the Library itself.\par\r
-^L\par\r
-  6. As an exception to the Sections above, you may also combine or\par\r
-link a "work that uses the Library" with the Library to produce a\par\r
-work containing portions of the Library, and distribute that work\par\r
-under terms of your choice, provided that the terms permit\par\r
-modification of the work for the customer's own use and reverse\par\r
-engineering for debugging such modifications.\par\r
-\par\r
-  You must give prominent notice with each copy of the work that the\par\r
-Library is used in it and that the Library and its use are covered by\par\r
-this License.  You must supply a copy of this License.  If the work\par\r
-during execution displays copyright notices, you must include the\par\r
-copyright notice for the Library among them, as well as a reference\par\r
-directing the user to the copy of this License.  Also, you must do one\par\r
-of these things:\par\r
-\par\r
-    a) Accompany the work with the complete corresponding\par\r
-    machine-readable source code for the Library including whatever\par\r
-    changes were used in the work (which must be distributed under\par\r
-    Sections 1 and 2 above); and, if the work is an executable linked\par\r
-    with the Library, with the complete machine-readable "work that\par\r
-    uses the Library", as object code and/or source code, so that the\par\r
-    user can modify the Library and then relink to produce a modified\par\r
-    executable containing the modified Library.  (It is understood\par\r
-    that the user who changes the contents of definitions files in the\par\r
-    Library will not necessarily be able to recompile the application\par\r
-    to use the modified definitions.)\par\r
-\par\r
-    b) Use a suitable shared library mechanism for linking with the\par\r
-    Library.  A suitable mechanism is one that (1) uses at run time a\par\r
-    copy of the library already present on the user's computer system,\par\r
-    rather than copying library functions into the executable, and (2)\par\r
-    will operate properly with a modified version of the library, if\par\r
-    the user installs one, as long as the modified version is\par\r
-    interface-compatible with the version that the work was made with.\par\r
-\par\r
-    c) Accompany the work with a written offer, valid for at\par\r
-    least three years, to give the same user the materials\par\r
-    specified in Subsection 6a, above, for a charge no more\par\r
-    than the cost of performing this distribution.\par\r
-\par\r
-    d) If distribution of the work is made by offering access to copy\par\r
-    from a designated place, offer equivalent access to copy the above\par\r
-    specified materials from the same place.\par\r
-\par\r
-    e) Verify that the user has already received a copy of these\par\r
-    materials or that you have already sent this user a copy.\par\r
-\par\r
-  For an executable, the required form of the "work that uses the\par\r
-Library" must include any data and utility programs needed for\par\r
-reproducing the executable from it.  However, as a special exception,\par\r
-the materials to be distributed need not include anything that is\par\r
-normally distributed (in either source or binary form) with the major\par\r
-components (compiler, kernel, and so on) of the operating system on\par\r
-which the executable runs, unless that component itself accompanies\par\r
-the executable.\par\r
-\par\r
-  It may happen that this requirement contradicts the license\par\r
-restrictions of other proprietary libraries that do not normally\par\r
-accompany the operating system.  Such a contradiction means you cannot\par\r
-use both them and the Library together in an executable that you\par\r
-distribute.\par\r
-^L\par\r
-  7. You may place library facilities that are a work based on the\par\r
-Library side-by-side in a single library together with other library\par\r
-facilities not covered by this License, and distribute such a combined\par\r
-library, provided that the separate distribution of the work based on\par\r
-the Library and of the other library facilities is otherwise\par\r
-permitted, and provided that you do these two things:\par\r
-\par\r
-    a) Accompany the combined library with a copy of the same work\par\r
-    based on the Library, uncombined with any other library\par\r
-    facilities.  This must be distributed under the terms of the\par\r
-    Sections above.\par\r
-\par\r
-    b) Give prominent notice with the combined library of the fact\par\r
-    that part of it is a work based on the Library, and explaining\par\r
-    where to find the accompanying uncombined form of the same work.\par\r
-\par\r
-  8. You may not copy, modify, sublicense, link with, or distribute\par\r
-the Library except as expressly provided under this License.  Any\par\r
-attempt otherwise to copy, modify, sublicense, link with, or\par\r
-distribute the Library is void, and will automatically terminate your\par\r
-rights under this License.  However, parties who have received copies,\par\r
-or rights, from you under this License will not have their licenses\par\r
-terminated so long as such parties remain in full compliance.\par\r
-\par\r
-  9. You are not required to accept this License, since you have not\par\r
-signed it.  However, nothing else grants you permission to modify or\par\r
-distribute the Library or its derivative works.  These actions are\par\r
-prohibited by law if you do not accept this License.  Therefore, by\par\r
-modifying or distributing the Library (or any work based on the\par\r
-Library), you indicate your acceptance of this License to do so, and\par\r
-all its terms and conditions for copying, distributing or modifying\par\r
-the Library or works based on it.\par\r
-\par\r
-  10. Each time you redistribute the Library (or any work based on the\par\r
-Library), the recipient automatically receives a license from the\par\r
-original licensor to copy, distribute, link with or modify the Library\par\r
-subject to these terms and conditions.  You may not impose any further\par\r
-restrictions on the recipients' exercise of the rights granted herein.\par\r
-You are not responsible for enforcing compliance by third parties with\par\r
-this License.\par\r
-^L\par\r
-  11. If, as a consequence of a court judgment or allegation of patent\par\r
-infringement or for any other reason (not limited to patent issues),\par\r
-conditions are imposed on you (whether by court order, agreement or\par\r
-otherwise) that contradict the conditions of this License, they do not\par\r
-excuse you from the conditions of this License.  If you cannot\par\r
-distribute so as to satisfy simultaneously your obligations under this\par\r
-License and any other pertinent obligations, then as a consequence you\par\r
-may not distribute the Library at all.  For example, if a patent\par\r
-license would not permit royalty-free redistribution of the Library by\par\r
-all those who receive copies directly or indirectly through you, then\par\r
-the only way you could satisfy both it and this License would be to\par\r
-refrain entirely from distribution of the Library.\par\r
-\par\r
-If any portion of this section is held invalid or unenforceable under\par\r
-any particular circumstance, the balance of the section is intended to\par\r
-apply, and the section as a whole is intended to apply in other\par\r
-circumstances.\par\r
-\par\r
-It is not the purpose of this section to induce you to infringe any\par\r
-patents or other property right claims or to contest validity of any\par\r
-such claims; this section has the sole purpose of protecting the\par\r
-integrity of the free software distribution system which is\par\r
-implemented by public license practices.  Many people have made\par\r
-generous contributions to the wide range of software distributed\par\r
-through that system in reliance on consistent application of that\par\r
-system; it is up to the author/donor to decide if he or she is willing\par\r
-to distribute software through any other system and a licensee cannot\par\r
-impose that choice.\par\r
-\par\r
-This section is intended to make thoroughly clear what is believed to\par\r
-be a consequence of the rest of this License.\par\r
-\par\r
-  12. If the distribution and/or use of the Library is restricted in\par\r
-certain countries either by patents or by copyrighted interfaces, the\par\r
-original copyright holder who places the Library under this License\par\r
-may add an explicit geographical distribution limitation excluding those\par\r
-countries, so that distribution is permitted only in or among\par\r
-countries not thus excluded.  In such case, this License incorporates\par\r
-the limitation as if written in the body of this License.\par\r
-\par\r
-  13. The Free Software Foundation may publish revised and/or new\par\r
-versions of the Lesser General Public License from time to time.\par\r
-Such new versions will be similar in spirit to the present version,\par\r
-but may differ in detail to address new problems or concerns.\par\r
-\par\r
-Each version is given a distinguishing version number.  If the Library\par\r
-specifies a version number of this License which applies to it and\par\r
-"any later version", you have the option of following the terms and\par\r
-conditions either of that version or of any later version published by\par\r
-the Free Software Foundation.  If the Library does not specify a\par\r
-license version number, you may choose any version ever published by\par\r
-the Free Software Foundation.\par\r
-^L\par\r
-  14. If you wish to incorporate parts of the Library into other free\par\r
-programs whose distribution conditions are incompatible with these,\par\r
-write to the author to ask for permission.  For software which is\par\r
-copyrighted by the Free Software Foundation, write to the Free\par\r
-Software Foundation; we sometimes make exceptions for this.  Our\par\r
-decision will be guided by the two goals of preserving the free status\par\r
-of all derivatives of our free software and of promoting the sharing\par\r
-and reuse of software generally.\par\r
-\par\r
-                            NO WARRANTY\par\r
-\par\r
-  15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO\par\r
-WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\par\r
-EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\par\r
-OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY\par\r
-KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\par\r
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\par\r
-PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\par\r
-LIBRARY IS WITH YOU.  SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME\par\r
-THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\par\r
-\par\r
-  16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\par\r
-WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\par\r
-AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU\par\r
-FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\par\r
-CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\par\r
-LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\par\r
-RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\par\r
-FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF\par\r
-SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\par\r
-DAMAGES.\par\r
-\par\r
-                     END OF TERMS AND CONDITIONS\par\r
-^L\par\r
-           How to Apply These Terms to Your New Libraries\par\r
-\par\r
-  If you develop a new library, and you want it to be of the greatest\par\r
-possible use to the public, we recommend making it free software that\par\r
-everyone can redistribute and change.  You can do so by permitting\par\r
-redistribution under these terms (or, alternatively, under the terms\par\r
-of the ordinary General Public License).\par\r
-\par\r
-  To apply these terms, attach the following notices to the library.\par\r
-It is safest to attach them to the start of each source file to most\par\r
-effectively convey the exclusion of warranty; and each file should\par\r
-have at least the "copyright" line and a pointer to where the full\par\r
-notice is found.\par\r
-\par\r
-\par\r
-    <one line to give the library's name and a brief idea of what it\par\r
-does.>\par\r
-    Copyright (C) <year>  <name of author>\par\r
-\par\r
-    This library is free software; you can redistribute it and/or\par\r
-    modify it under the terms of the GNU Lesser General Public\par\r
-    License as published by the Free Software Foundation; either\par\r
-    version 2 of the License, or (at your option) any later version.\par\r
-\par\r
-    This library is distributed in the hope that it will be useful,\par\r
-    but WITHOUT ANY WARRANTY; without even the implied warranty of\par\r
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\par\r
-    Lesser General Public License for more details.\par\r
-\par\r
-    You should have received a copy of the GNU Lesser General Public\par\r
-    License along with this library; if not, write to the Free Software\par\r
-    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA\par\r
-\par\r
-Also add information on how to contact you by electronic and paper\par\r
-mail.\par\r
-\par\r
-You should also get your employer (if you work as a programmer) or\par\r
-your\par\r
-school, if any, to sign a "copyright disclaimer" for the library, if\par\r
-necessary.  Here is a sample; alter the names:\par\r
-\par\r
-  Yoyodyne, Inc., hereby disclaims all copyright interest in the\par\r
-  library `Frob' (a library for tweaking knobs) written by James\par\r
-Random Hacker.\par\r
-\par\r
-  <signature of Ty Coon>, 1 April 1990\par\r
-  Ty Coon, President of Vice\par\r
-\par\r
-That's all there is to it!\par\r
-\par\r
-\par\r
-\par\r
-\f0\par\r
-}\r
-\0
\ No newline at end of file