From 9269f1746a6ad40d5d5f6130713654d279f83108 Mon Sep 17 00:00:00 2001
From: Vlad Bogolin
Date: Mon, 13 Dec 2021 22:19:04 +0200
Subject: [PATCH] Add macOS packaging scripts
---
macOSpkg/README | 11 +
macOSpkg/distribution.xml | 51 +
.../mariadb-server-files-scripts/postinstall | 58 +
.../mariadb-server-files-scripts/preinstall | 40 +
.../postinstall | 13 +
.../com.mariadb.server.plist | 32 +
macOSpkg/mkpkg | 58 +
macOSpkg/resources/COPYING | 339 +++
macOSpkg/resources/COPYING.LESSER | 516 ++++
macOSpkg/resources/COPYING.thirdparty | 1692 +++++++++++
macOSpkg/resources/MariaDB_Background.png | Bin 0 -> 12477 bytes
macOSpkg/resources/conclusion.html | 16 +
macOSpkg/resources/example.png | Bin 0 -> 170709 bytes
macOSpkg/resources/license.html | 471 +++
macOSpkg/resources/license.txt | 2547 +++++++++++++++++
.../scripts/check_for_existing_installation | 67 +
macOSpkg/resources/scripts/find_procname | Bin 0 -> 8856 bytes
macOSpkg/resources/scripts/find_procname.c | 47 +
macOSpkg/resources/welcome.html | 12 +
19 files changed, 5970 insertions(+)
create mode 100644 macOSpkg/README
create mode 100644 macOSpkg/distribution.xml
create mode 100755 macOSpkg/mariadb-server-files-scripts/postinstall
create mode 100755 macOSpkg/mariadb-server-files-scripts/preinstall
create mode 100755 macOSpkg/mariadb-server-launchd-scripts/postinstall
create mode 100644 macOSpkg/mariadb-server-launchd/com.mariadb.server.plist
create mode 100755 macOSpkg/mkpkg
create mode 100644 macOSpkg/resources/COPYING
create mode 100644 macOSpkg/resources/COPYING.LESSER
create mode 100644 macOSpkg/resources/COPYING.thirdparty
create mode 100644 macOSpkg/resources/MariaDB_Background.png
create mode 100644 macOSpkg/resources/conclusion.html
create mode 100644 macOSpkg/resources/example.png
create mode 100644 macOSpkg/resources/license.html
create mode 100644 macOSpkg/resources/license.txt
create mode 100755 macOSpkg/resources/scripts/check_for_existing_installation
create mode 100755 macOSpkg/resources/scripts/find_procname
create mode 100644 macOSpkg/resources/scripts/find_procname.c
create mode 100644 macOSpkg/resources/welcome.html
diff --git a/macOSpkg/README b/macOSpkg/README
new file mode 100644
index 00000000..aca4767c
--- /dev/null
+++ b/macOSpkg/README
@@ -0,0 +1,11 @@
+These files support the creation of a native macOS .pkg installer for MariaDB Server.
+
+This installer is intended to install a specially-built MariaDB distribution that runs independent of other things installed on the OS. See https://mariadb.com/kb/en/mariadb/installing-mariadb-server-pkg-packages-on-macos/ for more information about the behavior of the .pkg installer and the MariaDB distribution it installs.
+
+Build Instructions:
+
+The recommended build configuration is achieved by invoking cmake with these options:
+
+cmake . -DBUILD_CONFIG=mysql_release -DWITH_SSL=system -DOPENSSL_SSL_LIBRARY="/usr/local/opt/openssl/lib/libssl.a" -DOPENSSL_CRYPTO_LIBRARY="/usr/local/opt/openssl/lib/libcrypto.a" -DOPENSSL_INCLUDE_DIR="/usr/local/opt/openssl/include" -DTOKUDB_OK=0 -DWITH_JEMALLOC=no -DMYSQL_UNIX_ADDR=/usr/local/mariadb/data/mariadb.sock -DCMAKE_INSTALL_PREFIX=/usr/local/mariadb/server -DINSTALL_MYSQLDATADIR=/usr/local/mariadb/data -DDEFAULT_SYSCONFDIR=/usr/local/mariadb/etc -DWITH_EMBEDDED_SERVER=OFF -DPLUGIN_AWS_KEY_MANAGEMENT=NO -DWITH_UNIT_TESTS=OFF -DWITH_WSREP=OFF
+
+Build the TGZ package using cmake && make package, and then point mkpkg to that archive.
diff --git a/macOSpkg/distribution.xml b/macOSpkg/distribution.xml
new file mode 100644
index 00000000..11abcc40
--- /dev/null
+++ b/macOSpkg/distribution.xml
@@ -0,0 +1,51 @@
+
+
+ MariaDB Server
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #mariadb-server-files.pkg
+ #mariadb-server-launchd.pkg
+
diff --git a/macOSpkg/mariadb-server-files-scripts/postinstall b/macOSpkg/mariadb-server-files-scripts/postinstall
new file mode 100755
index 00000000..6f12b18d
--- /dev/null
+++ b/macOSpkg/mariadb-server-files-scripts/postinstall
@@ -0,0 +1,58 @@
+#!/bin/bash
+#
+# Copyright (c) 2016 MariaDB Corporation
+#
+# 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; version 2 of the License.
+#
+# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */
+
+set -e
+set -x
+exec >>/var/log/mariadb_installer.log 2>&1
+
+basedir=/usr/local/mariadb/server
+datadir=/usr/local/mariadb/data
+option_file=/usr/local/mariadb/etc/my.cnf
+
+# If the datadir does NOT exist, create it and bootstrap with some special sauce to remove
+# superfluous users and put some unix socket auth users in their place.
+if ! [[ -e $datadir ]]
+then
+ cd "$basedir"
+ mkdir -p "$datadir"
+ ./scripts/mysql_install_db --skip-networking --datadir="$datadir"
+# ./bin/mysqld --skip-networking --bootstrap --datadir="$datadir" --basedir=. </dev/null
+then
+ #
+ if ! [[ -e $option_file ]] ||
+ ! "$basedir"/bin/my_print_defaults --defaults-file="$option_file" --mysqld 2>/dev/null |
+ grep -q skip.networking
+ then
+ printf '%s\n' '[server]' 'skip-networking' >> "$option_file"
+ fi
+fi
+
diff --git a/macOSpkg/mariadb-server-files-scripts/preinstall b/macOSpkg/mariadb-server-files-scripts/preinstall
new file mode 100755
index 00000000..d003d709
--- /dev/null
+++ b/macOSpkg/mariadb-server-files-scripts/preinstall
@@ -0,0 +1,40 @@
+#!/bin/bash
+#
+# Copyright (c) 2016 MariaDB Corporation
+#
+# 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; version 2 of the License.
+#
+# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */
+
+# Unload existing .plist, and stop running MariaDB Server
+launchctl unload /Library/LaunchDaemons/com.mariadb.server.plist
+
+mkdir -p /usr/local/mariadb
+
+symlinks=( /usr/local/mariadb/server )
+
+# Go through the symlinks in the array and, for each one, move it to use an unused suffixed
+for dest in "${symlinks[@]}"
+do
+ if [[ -L $dest ]]
+ then
+ rm "$dest"
+ elif [[ -e $dest ]]
+ then
+ # look for an unused suffix to rename $dest
+ suffix=0
+ while [[ -e $dest.$((++suffix)) ]]; do :; done
+
+ mv "$dest" "$dest.$suffix"
+ fi
+done
+
diff --git a/macOSpkg/mariadb-server-launchd-scripts/postinstall b/macOSpkg/mariadb-server-launchd-scripts/postinstall
new file mode 100755
index 00000000..3ce996e0
--- /dev/null
+++ b/macOSpkg/mariadb-server-launchd-scripts/postinstall
@@ -0,0 +1,13 @@
+#!/bin/bash
+# Create a log file of the script's activities.
+exec >>/var/log/mariadb_installer.log 2>&1
+
+# Load the .plist file into launchctl, which will also start MariaDB Server
+launchctl load /Library/LaunchDaemons/com.mariadb.server.plist
+
+# Wait 30 seconds for MariaDB Server to start
+i=0; while ((i++ < 30)); do pgrep mariadbd && [[ -e /usr/local/mariadb/data/mariadb.sock ]] && break; sleep 1; done
+
+/usr/local/mariadb/server/bin/mysql_upgrade
+
+# ln -sf /usr/local/mariadb/server/bin/* /usr/local/bin/
diff --git a/macOSpkg/mariadb-server-launchd/com.mariadb.server.plist b/macOSpkg/mariadb-server-launchd/com.mariadb.server.plist
new file mode 100644
index 00000000..e4141de1
--- /dev/null
+++ b/macOSpkg/mariadb-server-launchd/com.mariadb.server.plist
@@ -0,0 +1,32 @@
+
+
+
+
+ Label com.mariadb.server
+
+ KeepAlive
+
+ SuccessfulExit
+
+
+ ExitTimeOut 600
+ UserName _mysql
+ GroupName _mysql
+
+ WorkingDirectory /usr/local/mariadb/data
+ Program /usr/local/mariadb/server/bin/mariadbd
+ ProgramArguments
+
+ /usr/local/mariadb/server/bin/mariadbd
+ --user=_mysql
+ --basedir=/usr/local/mariadb/server
+ --datadir=/usr/local/mariadb/data
+ --log-basename=mariadb
+ --plugin-dir=/usr/local/mariadb/server/lib/plugin
+
+ EnvironmentVariables
+
+ MYSQL_HOME /usr/local/mariadb
+
+
+
diff --git a/macOSpkg/mkpkg b/macOSpkg/mkpkg
new file mode 100755
index 00000000..6a0d83b8
--- /dev/null
+++ b/macOSpkg/mkpkg
@@ -0,0 +1,58 @@
+#!/usr/bin/env bash
+
+# This script takes an existing .tar.gz package of MariaDB Server and morphs it into
+# a macOS .pkg installer. The server should be built using some specific CMake options
+# outlined in the README file in this source tree for the package to work correctly!
+
+# This script builds two packages: mariadb-server-files and mariadb-server-launchd,
+# and then it combines them together into a single, installable .pkg file.
+# The script was originally developed by Kolbe Kegel (https://github.com/kolbe).
+
+set -ex
+
+if ! (($# == 1))
+then
+ echo "Must provide path to MariaDB Server .tar.gz package. Aborting." >&2
+ exit 1
+fi
+
+file=$1
+dir="${file%*.tar.gz}"
+dir="${dir##*/}"
+
+re='mariadb-([0-9]+\.[0-9]+\.[0-9]+)-'
+[[ $dir =~ $re ]]
+ver=${BASH_REMATCH[1]}
+
+mkdir -p mariadb-server-files tmp
+rm -rf mariadb-server-files/* tmp/*
+
+tar -xf "$file" -C mariadb-server-files/
+
+pushd "mariadb-server-files"
+pushd "$dir"
+
+pushd bin
+
+# Create these symlinks, so that MariaDB Server is started using "mariadbd" instead
+# of "mysqld" and the client program is "mariadb" instead of "mysql".
+#ln -s mysql mariadb
+#ln -s mysqld mariadbd
+
+popd
+popd
+
+ln -s "$dir" server
+
+# Create the etc dir so that it's "installed" by the installer.
+mkdir etc
+
+popd
+
+pkgbuild --root ./mariadb-server-files --identifier com.mariadb.mariadb-server-files --scripts ./mariadb-server-files-scripts --version "${ver//./}0" --install-location /usr/local/mariadb mariadb-server-files.pkg
+
+pkgbuild --root ./mariadb-server-launchd --identifier com.mariadb.mariadb-server-launchd --scripts ./mariadb-server-launchd-scripts --install-location /Library/LaunchDaemons mariadb-server-launchd.pkg
+
+productbuild --distribution distribution.xml --resources ./resources --scripts ./resources/scripts "$dir.pkg"
+
+mv mariadb-server-files.pkg mariadb-server-launchd.pkg tmp/
diff --git a/macOSpkg/resources/COPYING b/macOSpkg/resources/COPYING
new file mode 100644
index 00000000..d511905c
--- /dev/null
+++ b/macOSpkg/resources/COPYING
@@ -0,0 +1,339 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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 Lesser 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.
+
+
+ Copyright (C)
+
+ 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.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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) year 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.
+
+ , 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 Lesser General
+Public License instead of this License.
diff --git a/macOSpkg/resources/COPYING.LESSER b/macOSpkg/resources/COPYING.LESSER
new file mode 100644
index 00000000..c2c87d69
--- /dev/null
+++ b/macOSpkg/resources/COPYING.LESSER
@@ -0,0 +1,516 @@
+
+ GNU LESSER GENERAL PUBLIC LICENSE
+ Version 2.1, February 1999
+
+ Copyright (C) 1991, 1999 Free Software Foundation, Inc.
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 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 Lesser GPL. It also counts
+ as the successor of the GNU Library Public License, version 2, hence
+ the version number 2.1.]
+
+ 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 Lesser General Public License, applies to some
+specially designated software packages--typically libraries--of the
+Free Software Foundation and other authors who decide to use it. You
+can use it too, but we suggest you first think carefully about whether
+this license or the ordinary General Public License is the better
+strategy to use in any particular case, based on the explanations
+below.
+
+ When we speak of free software, we are referring to freedom of use,
+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 and use pieces of
+it in new free programs; and that you are informed that you can do
+these things.
+
+ To protect your rights, we need to make restrictions that forbid
+distributors to deny you these rights or to ask you to surrender these
+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 other code 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.
+
+ We protect your rights with a two-step method: (1) we copyright the
+library, and (2) we offer you this license, which gives you legal
+permission to copy, distribute and/or modify the library.
+
+ To protect each distributor, we want to make it very clear that
+there is no warranty for the free library. Also, if the library is
+modified by someone else and passed on, the recipients should know
+that what they have is not the original version, so that the original
+author's reputation will not be affected by problems that might be
+introduced by others.
+^L
+ Finally, software patents pose a constant threat to the existence of
+any free program. We wish to make sure that a company cannot
+effectively restrict the users of a free program by obtaining a
+restrictive license from a patent holder. Therefore, we insist that
+any patent license obtained for a version of the library must be
+consistent with the full freedom of use specified in this license.
+
+ Most GNU software, including some libraries, is covered by the
+ordinary GNU General Public License. This license, the GNU Lesser
+General Public License, applies to certain designated libraries, and
+is quite different from the ordinary General Public License. We use
+this license for certain libraries in order to permit linking those
+libraries into non-free programs.
+
+ When a program is linked with a library, whether statically or using
+a shared library, the combination of the two is legally speaking a
+combined work, a derivative of the original library. The ordinary
+General Public License therefore permits such linking only if the
+entire combination fits its criteria of freedom. The Lesser General
+Public License permits more lax criteria for linking other code with
+the library.
+
+ We call this license the "Lesser" General Public License because it
+does Less to protect the user's freedom than the ordinary General
+Public License. It also provides other free software developers Less
+of an advantage over competing non-free programs. These disadvantages
+are the reason we use the ordinary General Public License for many
+libraries. However, the Lesser license provides advantages in certain
+special circumstances.
+
+ For example, on rare occasions, there may be a special need to
+encourage the widest possible use of a certain library, so that it
+becomes
+a de-facto standard. To achieve this, non-free programs must be
+allowed to use the library. A more frequent case is that a free
+library does the same job as widely used non-free libraries. In this
+case, there is little to gain by limiting the free library to free
+software only, so we use the Lesser General Public License.
+
+ In other cases, permission to use a particular library in non-free
+programs enables a greater number of people to use a large body of
+free software. For example, permission to use the GNU C Library in
+non-free programs enables many more people to use the whole GNU
+operating system, as well as its variant, the GNU/Linux operating
+system.
+
+ Although the Lesser General Public License is Less protective of the
+users' freedom, it does ensure that the user of a program that is
+linked with the Library has the freedom and the wherewithal to run
+that program using a modified version of the Library.
+
+ 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, whereas the latter must
+be combined with the library in order to run.
+^L
+ GNU LESSER GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License Agreement applies to any software library or other
+program which contains a notice placed by the copyright holder or
+other authorized party saying it may be distributed under the terms of
+this Lesser 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.
+^L
+ 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.
+^L
+ 6. As an exception to the Sections above, you may also combine 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) Use a suitable shared library mechanism for linking with the
+ Library. A suitable mechanism is one that (1) uses at run time a
+ copy of the library already present on the user's computer system,
+ rather than copying library functions into the executable, and (2)
+ will operate properly with a modified version of the library, if
+ the user installs one, as long as the modified version is
+ interface-compatible with the version that the work was made with.
+
+ c) 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.
+
+ d) 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.
+
+ e) 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 materials to be 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.
+^L
+ 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 with
+this License.
+^L
+ 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 Lesser 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.
+^L
+ 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
+^L
+ 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.
+
+
+
+ Copyright (C)
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser 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
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ MA 02110-1301, 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.
+
+ , 1 April 1990
+ Ty Coon, President of Vice
+
+That's all there is to it!
+
+
diff --git a/macOSpkg/resources/COPYING.thirdparty b/macOSpkg/resources/COPYING.thirdparty
new file mode 100644
index 00000000..4ce4017f
--- /dev/null
+++ b/macOSpkg/resources/COPYING.thirdparty
@@ -0,0 +1,1692 @@
+%%The following software may be included in this product:
+Cmake
+
+Use of any of this software is governed by the terms of the license below:
+
+CMake is distributed under BSD License
+
+ Copyright (c) 2008, Kitware, Inc.
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in
+ the documentation and/or other materials provided with the
+ distribution.
+ * Neither the name of Kitware, Inc. nor the names of its
+ contributors may be used to endorse or promote products derived
+ from this software without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY Kitware, Inc. "AS IS" AND ANY EXPRESS OR
+ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL Kitware Inc. BE LIABLE FOR ANY DIRECT,
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
+ IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+
+Additional License(s)
+
+cmake-2.4.8/Utilities/cmtar/compat/gethostname.c:
+ gethostname.c: minimal substitute for missing gethostname() function
+ created 2000-Mar-02 jmk
+ requires SVR4 uname() and -lc
+
+ by Jim Knoble
+ Copyright ? 2000 Jim Knoble
+
+ Permission to use, copy, modify, distribute, and sell this software
+ and its documentation for any purpose is hereby granted without fee,
+ provided that the above copyright notice appear in all copies and
+ that both that copyright notice and this permission notice appear in
+ supporting documentation.
+
+ This software is provided "as is", without warranty of any kind,
+ express or implied, including but not limited to the warranties of
+ merchantability, fitness for a particular purpose and
+ noninfringement. In no event shall the author(s) be liable for any
+ claim, damages or other liability, whether in an action of contract,
+ tort or otherwise, arising from, out of or in connection with the
+ software or the use or other dealings in the software.
+
+----------------------------------
+
+* Originally written by Steven M. Bellovin while
+* at the University of North Carolina at Chapel Hill. Later tweaked by
+* a couple of people on Usenet. Completely overhauled by Rich $alz
+* and Jim Berets in August, 1990.
+*
+* This code is in the public domain and has no copyright.
+
+-------------------------------
+
+ THIS CODE IS SPECIFICALLY EXEMPTED FROM THE NCURSES PACKAGE COPYRIGHT.
+ You may freely copy it for use as a template for your own field types.
+ If you develop a field type that might be of general use, please send
+ it back to the ncurses maintainers for inclusion in the next version.
+
+**************************************************************************
+
+ * Author : Per Foreby, perf@efd.lth.se
+ * Author : Juergen Pfeifer, juergen.pfeifer@gmx.net
+
+**************************************************************************
+
+----------------------------------------
+
+ Copyright (c) 2002 Insight Consortium. All rights reserved.
+ See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for
+ details.
+
+ This software is distributed WITHOUT ANY WARRANTY; without even
+ the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ PURPOSE. See the above copyright notices for more information.
+
+--------------------------------------------
+
+ Skeleton parser for Yacc-like parsing with Bison,
+ Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003 Free Software
+ Foundation, Inc.
+
+ 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, 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., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301, USA.
+
+ As a special exception, when this file is copied by Bison into a
+ Bison output file, you may use that output file without restriction.
+ This special exception was added by the Free Software Foundation
+ in version 1.24 of Bison.
+
+---------------------------------------------------
+
+cmake-2.4.8/Utilities/cmzlib/zlib.h:
+ zlib.h -- interface of the 'zlib' general purpose compression library
+ version 1.1.4, March 11th, 2002
+
+ Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler
+
+ This software is provided 'as-is', without any express or implied
+ warranty. In no event will the authors be held liable for any damages
+ arising from the use of this software.
+
+ Permission is granted to anyone to use this software for any purpose,
+ including commercial applications, and to alter it and redistribute it
+ freely, subject to the following restrictions:
+
+ 1. The origin of this software must not be misrepresented; you must not
+ claim that you wrote the original software. If you use this software
+ in a product, an acknowledgment in the product documentation would be
+ appreciated but is not required.
+ 2. Altered source versions must be plainly marked as such, and must
+ not be misrepresented as being the original software.
+ 3. This notice may not be removed or altered from any source
+ distribution.
+
+ Jean-loup Gailly Mark Adler
+
+----------------------------------------------
+
+ This source code was modified by Martin Hedenfalk for use in Curl. His
+ latest changes were done 2000-09-18.
+
+ It has since been patched away like a madman by Daniel Stenberg to make it
+ better applied to curl conditions, and to make it not use globals, pollute
+ name space and more. This source code awaits a rewrite to work around the
+ paragraph 2 in the BSD licenses as explained below.
+
+ Copyright (c) 1995, 1996, 1997, 1998, 1999 Kungliga Tekniska Hgskolan
+ It has since been patched and modified a lot by Daniel Stenberg to make it
+ better applied to curl conditions, and to make it not use globals, pollute
+ name space and more. This source code awaits a rewrite to work around the
+ paragraph 2 in the BSD licenses as explained below.
+
+ Copyright (c) 1998, 1999 Kungliga Tekniska Hgskolan
+ (Royal Institute of Technology, Stockholm, Sweden).
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ 3. Neither the name of the Institute nor the names of its contributors
+ may be used to endorse or promote products derived from this software
+ without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ SUCH DAMAGE.
+
+---------------------------------------------
+
+ Permission to use, copy, modify, and distribute this software for any
+ purpose with or without fee is hereby granted, provided that the above
+ copyright notice and this permission notice appear in all copies.
+
+ THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
+ WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
+ MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHORS AND
+ CONTRIBUTORS ACCEPT NO RESPONSIBILITY IN ANY CONCEIVABLE MANNER.
+
+--------------------------------------------------
+
+cmake-2.4.8/Utilities/cmcurl/inet_pton.c,
+cmake-2.4.8/Source/CTest/Curl/inet_pton.c:
+ This is from the BIND 4.9.4 release, modified to compile by itself
+
+ Copyright (c) 1996 by Internet Software Consortium.
+
+ Permission to use, copy, modify, and distribute this software for any
+ purpose with or without fee is hereby granted, provided that the above
+ copyright notice and this permission notice appear in all copies.
+
+ THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
+ DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
+ INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT,
+ OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
+ USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+ PERFORMANCE OF THIS SOFTWARE.
+
+-------------------------------------------------------
+
+* Copyright (C) 2001 by Eric Kidd. All rights reserved.
+* Copyright (C) 2001 by Luke Howard. All rights reserved.
+* Copyright (C) 2002 Ximian, Inc.
+*
+* Redistribution and use in source and binary forms, with or without
+* modification, are permitted provided that the following conditions
+* are met:
+* 1. Redistributions of source code must retain the above copyright
+* notice, this list of conditions and the following disclaimer.
+* 2. Redistributions in binary form must reproduce the above copyright
+* notice, this list of conditions and the following disclaimer in the
+* documentation and/or other materials provided with the distribution.
+* 3. The name of the author may not be used to endorse or promote products
+* derived from this software without specific prior written permission.
+*
+* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY
+* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
+* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+* SUCH DAMAGE.
+
+---------------------------------------------------
+
+ Copyright (c) 1994
+ The Regents of the University of California. All rights reserved.
+
+ This code is derived from software contributed to Berkeley by
+ Chuck Karish of Mindcraft, Inc.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ 3. Neither the name of the University nor the names of its contributors
+ Copyright (c) 1985, 1986 The Regents of the University of California.
+ All rights reserved.
+
+ This code is derived from software contributed to Berkeley by
+ James A. Woods, derived from original work by Spencer Thomas
+ and Joseph Orost.
+
+------------------------------------------------
+
+ Copyright (c) 1989, 1993, 1994
+ The Regents of the University of California. All rights reserved.
+
+ This code is derived from software contributed to Berkeley by
+ Guido van Rossum.
+
+ Copyright (c) 1990 The Regents of the University of California.
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ 3. All advertising materials mentioning features or use of this software
+ must display the following acknowledgement:
+ This product includes software developed by the University of
+ California, Berkeley and its contributors.
+ 4. Neither the name of the University nor the names of its contributors
+ may be used to endorse or promote products derived from this software
+ without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ SUCH DAMAGE.
+
+------------------------------------------------------
+
+ Project ___| | | | _ \| |
+ / __| | | | |_) | |
+ | (__| |_| | _ <| |___
+ \___|\___/|_| \_\_____|
+
+ Copyright (C) 1998 - 2004, Daniel Stenberg, , et al.
+
+ Copyright (C) 2004, Daniel Stenberg, , et al.
+
+ This software is licensed as described in the file COPYING, which
+ you should have received as part of this distribution. The terms
+ are also available at http://curl.haxx.se/docs/copyright.html.
+
+ You may opt to use, copy, modify, merge, publish, distribute and/or sell
+ copies of the Software, and permit persons to whom the Software is
+ furnished to do so, under the terms of the COPYING file.
+
+ This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
+ KIND, either express or implied.
+
+------------------------------------------------------------
+
+***************************************************************************
+ Copyright (c) 1998 Free Software Foundation, Inc.
+ Copyright (c) 1998,2000 Free Software Foundation, Inc.
+
+ Permission is hereby granted, free of charge, to any person obtaining a
+ copy of this software and associated documentation files (the
+ "Software"), to deal in the Software without restriction, including
+ without limitation the rights to use, copy, modify, merge, publish,
+ distribute, distribute with modifications, sublicense, and/or sell copies
+ of the Software, and to permit persons to whom the Software is furnished
+ to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
+ NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
+ USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+ Except as contained in this notice, the name(s) of the above copyright
+ holders shall not be used in advertising or otherwise to promote the sale,
+ use or other dealings in this Software without prior written
+ authorization.
+***************************************************************************
+
+------------------------------------------------------
+
+ Copyright (c) 1997 Todd C. Miller
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ 3. The name of the author may not be used to endorse or promote products
+ derived from this software without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+ AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
+ THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY
+ EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ SUCH DAMAGE.
+
+***************************************************************************
+
+
+
+***************************************************************************
+%%The following software may be included in this product:
+Fred Fish's Dbug Library
+
+Use of any of this software is governed by the terms of the license below:
+
+ *
+ * N O T I C E *
+ * *
+ * Copyright Abandoned, 1987, Fred Fish *
+ * *
+ * *
+ * This previously copyrighted work has been placed into the public *
+ * domain by the author and may be freely used for any purpose, *
+ * private or commercial. *
+ * *
+ * Because of the number of inquiries I was receiving about the use *
+ * of this product in commercially developed works I have decided to *
+ * simply make it public domain to further its unrestricted use. I *
+ * specifically would be most happy to see this material become a *
+ * part of the standard Unix distributions by AT&T and the Berkeley *
+ * Computer Science Research Group, and a standard part of the GNU *
+ * system from the Free Software Foundation. *
+ * *
+ * I would appreciate it, as a courtesy, if this notice is left in *
+ * all copies and derivative works. Thank you. *
+ * *
+ * The author makes no warranty of any kind with respect to this *
+ * product and explicitly disclaims any implied warranties of mer- *
+ * chantability or fitness for any particular purpose. *
+ *
+
+***************************************************************************
+
+%%The following software may be included in this product:
+dbug_analyze.c (part of Fred Fish's Dbug Library)
+
+Use of any of this software is governed by the terms of the license below:
+
+* Copyright Abandoned, 1987, Fred Fish *
+* *
+* *
+* This previously copyrighted work has been placed into the public *
+* domain by the author and may be freely used for any purpose, *
+* private or commercial. *
+* *
+* Because of the number of inquiries I was receiving about the use *
+* of this product in commercially developed works I have decided to *
+* simply make it public domain to further its unrestricted use. I *
+* specifically would be most happy to see this material become a *
+* part of the standard Unix distributions by AT&T and the Berkeley *
+* Computer Science Research Group, and a standard part of the GNU *
+* system from the Free Software Foundation. *
+* *
+* I would appreciate it, as a courtesy, if this notice is left in *
+* all copies and derivative works. Thank you. *
+* *
+* The author makes no warranty of any kind with respect to this *
+* product and explicitly disclaims any implied warranties of mer- *
+* chantability or fitness for any particular purpose. *
+
+***************************************************************************
+
+%%The following software may be included in this product:
+innochecksum.c
+
+Use of any of this software is governed by the terms of the license below:
+
+GNU GENERAL PUBLIC LICENSE
+
+Version 2, June 1991
+
+Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 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 Lesser 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.
+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 an idea of what it does.
+Copyright (C) yyyy 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 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) year 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 Lesser General Public License instead
+of this License.
+
+Additional Documentation License(s)
+
+innochecksum.c is documented in the MySQL Reference
+Manual at http://dev.mysql.com/doc/refman/5.1/en/innochecksum.html
+The Reference Manual is not licensed under the GPL; rather, it
+is offered under normal copyright, but with permission to
+copy/redistribute electronically.
+
+***************************************************************************
+
+%%The following software may be included in this product:
+lib_sql.cc
+
+Use of any of this software is governed by the terms of the license below:
+
+/*
+ * Copyright (c) 2000
+ * SWsoft company
+ *
+ * This material is provided "as is", with absolutely no warranty expressed
+ * or implied. Any use is at your own risk.
+ *
+ * Permission to use or copy this software for any purpose is hereby granted
+ * without fee, provided the above notices are retained on all copies.
+ * Permission to modify the code and to distribute modified code is granted,
+ * provided the above notices are retained, and a notice that the code was
+ * modified is included with the above copyright notice.
+ *
+
+ This code was modified by the MySQL team
+*/
+
+***************************************************************************
+
+%%The following software may be included in this product:
+Richard A. O'Keefe strings package
+
+Use of any of this software is governed by the terms of the license below:
+
+These files are in the public domain. This includes getopt.c, which
+is the work of Henry Spencer, University of Toronto Zoology, who says of
+it "None of this software is derived from Bell software. I had no access
+to the source for Bell's versions at the time I wrote it. This software
+is hereby explicitly placed in the public domain. It may be used for
+any purpose on any machine by anyone." I would greatly prefer it if *my*
+material received no military use.
+
+***************************************************************************
+
+%%The following software may be included in this product:
+t_ctype.h
+
+Use of any of this software is governed by the terms of the license below:
+
+http://bioinfo.mbb.yale.edu/genome/yeast/cluster/database/mysql/include/t_ctype.h
+
+/*
+ Copyright (C) 1998, 1999 by Pruet Boonma, all rights reserved.
+ Copyright (C) 1998 by Theppitak Karoonboonyanan, all rights reserved.
+ Permission to use, copy, modify, distribute and sell this software
+ and its documentation for any purpose is hereby granted without fee,
+ provided that the above copyright notice appear in all copies.
+ Smaphan Raruenrom and Pruet Boonma makes no representations about
+ the suitability of this software for any purpose. It is provided
+ "as is" without express or implied warranty.
+*/
+
+***************************************************************************
+
+%%The following software may be included in this product:
+SHA-1 in C
+
+Use of any of this software is governed by the terms of the license below:
+
+ SHA-1 in C
+ By Steve Reid
+ 100% Public Domain
+
+Additional License(s)
+
+100% Public Domain
+
+***************************************************************************
+
+%%The following software may be included in this product:
+The tz database
+
+Use of any of this software is governed by the terms of the license below:
+
+Sources for Time Zone and Daylight Saving Time Data
+@(#)tz-link.htm 7.54
+
+Please send corrections to this web page to the time zone mailing list.
+The tz database
+
+The public-domain time zone database contains code and data that represent the
+history of local time for many representative locations around the globe. It is
+updated periodically to reflect changes made by political bodies to time zone
+boundaries, UTC offsets, and daylight-saving rules. This database (often called
+tz or zoneinfo) is used by several implementations, including the GNU C Library
+used in GNU/Linux, FreeBSD, NetBSD, OpenBSD, Cygwin, DJGPP, HP-UX, IRIX, Mac OS
+X, OpenVMS, Solaris, Tru64, and UnixWare.
+
+Each location in the database represents a national region where all clocks
+keeping local time have agreed since 1970. Locations are identified by continent
+or ocean and then by the name of the location, which is typically the largest
+city within the region. For example, America/New_York represents most of the US
+eastern time zone; America/Phoenix represents most of Arizona, which uses
+mountain time without daylight saving time (DST); America/Detroit represents
+most of Michigan, which uses eastern time but with different DST rules in 1975;
+and other entries represent smaller regions like Starke County, Indiana, which
+switched from central to eastern time in 1991 and switched back in 2006. To use
+the database on an extended POSIX implementation set the TZ environment variable
+to the location's full name, e.g., TZ="America/New_York".
+
+In the tz database's FTP distribution the code is in the file tzcodeC.tar.gz,
+where C is the code's version; similarly, the data are in tzdataD.tar.gz, where
+D is the data's version. The following shell commands download these files to a
+GNU/Linux or similar host; see the downloaded README file for what to do next.
+
+wget 'ftp://elsie.nci.nih.gov/pub/tz*.tar.gz'
+gzip -dc tzcode*.tar.gz | tar -xf -
+gzip -dc tzdata*.tar.gz | tar -xf -
+
+The code lets you compile the tz source files into machine-readable binary
+files, one for each location. It also lets you read a tz binary file and
+interpret time stamps for that location.
+
+The data are by no means authoritative. If you find errors, please send changes
+to the time zone mailing list. You can also subscribe to the mailing list,
+retrieve the archive of old messages (in gzip compressed format), or retrieve
+archived older versions of code and data; there is also a smaller HTTP mirror.
+
+***************************************************************************
+
+%%The following software may be included in this product:
+UnicodeData.txt
+
+Use of any of this software is governed by the terms of the license below:
+
+Unicode Terms of Use
+
+ For the general privacy policy governing access to this site, see the
+ Unicode Privacy Policy. For trademark usage, see the Unicode
+ Consortium (R) Trademarks and Logo Policy.
+ Notice to End User: Terms of Use
+ Carefully read the following legal agreement ("Agreement"). Use or
+ copying of the software and/or codes provided with this agreement (The
+ "Software") constitutes your acceptance of these terms
+
+ 1. Unicode Copyright.
+ 1. Copyright (c) 1991-2008 Unicode, Inc. All rights reserved.
+ 2. Certain documents and files on this website contain a
+ legend indicating that "Modification is permitted." Any person
+ is hereby authorized, without fee, to modify such documents
+ and files to create derivative works conforming to the
+ Unicode (R) Standard, subject to Terms and Conditions herein.
+ 3. Any person is hereby authorized, without fee, to view, use,
+ reproduce, and distribute all documents and files solely for
+ informational purposes in the creation of products supporting
+ the Unicode Standard, subject to the Terms and Conditions
+ herein.
+ 4. Further specifications of rights and restrictions
+ pertaining to the use of the particular set of data files
+ known as the "Unicode Character Database" can be found in
+ Exhibit 1.
+ 5. Each version of the Unicode Standard has further
+ specifications of rights and restrictions of use. For the book
+ editions, these are found on the back of the title page. For
+ the online edition, certain files (such as the PDF files for
+ book chapters and code charts) carry specific restrictions.
+ All other files are covered under these general Terms of Use.
+ To request a permission to reproduce any part of the Unicode
+ Standard, please contact the Unicode Consortium.
+ 6. No license is granted to "mirror" the Unicode website where
+ a fee is charged for access to the "mirror" site.
+ 7. Modification is not permitted with respect to this
+ document. All copies of this document must be verbatim.
+ 2. Restricted Rights Legend. Any technical data or software which is
+ licensed to the United States of America, its agencies and/or
+ instrumentalities under this Agreement is commercial technical data
+ or commercial computer software developed exclusively at private
+ expense as defined in FAR 2.101, or DFARS 252.227-7014 (June 1995),
+ as applicable. For technical data, use, duplication, or disclosure
+ by the Government is subject to restrictions as set forth in DFARS
+ 202.227-7015 Technical Data, Commercial and Items (Nov 1995) and
+ this Agreement. For Software, in accordance with FAR 12-212 or DFARS
+ 227-7202, as applicable, use, duplication or disclosure by the
+ Government is subject to the restrictions set forth in this
+ Agreement.
+ 3. Warranties and Disclaimers.
+ 1. This publication and/or website may include technical or
+ typographical errors or other inaccuracies . Changes are
+ periodically added to the information herein; these changes
+ will be incorporated in new editions of the publication and/or
+ website. Unicode may make improvements and/or changes in the
+ product(s) and/or program(s) described in this publication
+ and/or website at any time.
+ 2. If this file has been purchased on magnetic or optical
+ media from Unicode, Inc. the sole and exclusive remedy for any
+ claim will be exchange of the defective media within ninety
+ (90) days of original purchase.
+ 3. EXCEPT AS PROVIDED IN SECTION C.2, THIS PUBLICATION AND/OR
+ SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND
+ EITHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT
+ LIMITED TO, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
+ PARTICULAR PURPOSE, OR NON-INFRINGEMENT. UNICODE AND ITS
+ LICENSORS ASSUME NO RESPONSIBILITY FOR ERRORS OR OMISSIONS IN
+ THIS PUBLICATION AND/OR SOFTWARE OR OTHER DOCUMENTS WHICH ARE
+ REFERENCED BY OR LINKED TO THIS PUBLICATION OR THE UNICODE
+ WEBSITE.
+ 4. Waiver of Damages. In no event shall Unicode or its licensors be
+ liable for any special, incidental, indirect or consequential
+ damages of any kind, or any damages whatsoever, whether or not
+ Unicode was advised of the possibility of the damage, including,
+ without limitation, those resulting from the following: loss of use,
+ data or profits, in connection with the use, modification or
+ distribution of this information or its derivatives.
+ 5. Trademarks.
+ 1. Unicode and the Unicode logo are registered trademarks of
+ Unicode, Inc.
+ 2. This site contains product names and corporate names of
+ other companies. All product names and company names and logos
+ mentioned herein are the trademarks or registered trademarks
+ of their respective owners. Other products and corporate names
+ mentioned herein which are trademarks of a third party are
+ used only for explanation and for the owners' benefit and with
+ no intent to infringe.
+ 3. Use of third party products or information referred to
+ herein is at the user's risk.
+ 6. Miscellaneous.
+ 1. Jurisdiction and Venue. This server is operated from a
+ location in the State of California, United States of America.
+ Unicode makes no representation that the materials are
+ appropriate for use in other locations. If you access this
+ server from other locations, you are responsible for
+ compliance with local laws. This Agreement, all use of this
+ site and any claims and damages resulting from use of this
+ site are governed solely by the laws of the State of
+ California without regard to any principles which would apply
+ the laws of a different jurisdiction. The user agrees that any
+ disputes regarding this site shall be resolved solely in the
+ courts located in Santa Clara County, California. The user
+ agrees said courts have personal jurisdiction and agree to
+ waive any right to transfer the dispute to any other forum.
+ 2. Modification by Unicode Unicode shall have the right to
+ modify this Agreement at any time by posting it to this site.
+ The user may not assign any part of this Agreement without
+ Unicode's prior written consent.
+ 3. Taxes. The user agrees to pay any taxes arising from access
+ to this website or use of the information herein, except for
+ those based on Unicode's net income.
+ 4. Severability. If any provision of this Agreement is
+ declared invalid or unenforceable, the remaining provisions of
+ this Agreement shall remain in effect.
+ 5. Entire Agreement. This Agreement constitutes the entire
+ agreement between the parties.
+
+EXHIBIT 1
+UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE
+
+ Unicode Data Files include all data files under the directories
+http://www.unicode.org/Public/, http://www.unicode.org/reports/, and
+http://www.unicode.org/cldr/data/ . Unicode Software includes any source code
+published in the Unicode Standard or under the directories
+http://www.unicode.org/Public/, http://www.unicode.org/reports/, and
+http://www.unicode.org/cldr/data/.
+
+ NOTICE TO USER: Carefully read the following legal agreement. BY
+DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA FILES
+("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU UNEQUIVOCALLY ACCEPT, AND
+AGREE TO BE BOUND BY, ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU
+DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES
+OR SOFTWARE.
+
+ COPYRIGHT AND PERMISSION NOTICE
+
+ Copyright (c) 1991-2008 Unicode, Inc. All rights reserved. Distributed under
+the Terms of Use in http://www.unicode.org/copyright.html.
+
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+of the Unicode data files and any associated documentation (the "Data Files") or
+Unicode software and any associated documentation (the "Software") to deal in
+the Data Files or Software without restriction, including without limitation the
+rights to use, copy, modify, merge, publish, distribute, and/or sell copies of
+the Data Files or Software, and to permit persons to whom the Data Files or
+Software are furnished to do so, provided that (a) the above copyright notice(s)
+and this permission notice appear with all copies of the Data Files or Software,
+(b) both the above copyright notice(s) and this permission notice appear in
+associated documentation, and (c) there is clear notice in each modified Data
+File or in the Software as well as in the documentation associated with the Data
+File(s) or Software that the data or software has been modified.
+
+ THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
+KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD
+PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
+NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
+DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
+WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
+OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR SOFTWARE.
+
+ Except as contained in this notice, the name of a copyright holder shall not
+be used in advertising or otherwise to promote the sale, use or other dealings
+in these Data Files or Software without prior written authorization of the
+copyright holder.
+
+ Unicode and the Unicode logo are trademarks of Unicode, Inc., and may be
+registered in some jurisdictions. All other trademarks and registered trademarks
+mentioned herein are the property of their respective owners.
+
+***************************************************************************
+
+%%The following software may be included in this product:
+zlib
+
+Use of any of this software is governed by the terms of the license below:
+
+/* zlib.h -- interface of the 'zlib' general purpose compression library
+ version 1.2.3, July 18th, 2005
+
+ Copyright (C) 1995-2005 Jean-loup Gailly and Mark Adler
+
+ This software is provided 'as-is', without any express or implied
+ warranty. In no event will the authors be held liable for any damages
+ arising from the use of this software.
+
+ Permission is granted to anyone to use this software for any purpose,
+ including commercial applications, and to alter it and redistribute it
+ freely, subject to the following restrictions:
+
+ 1. The origin of this software must not be misrepresented; you must not
+ claim that you wrote the original software. If you use this software
+ in a product, an acknowledgment in the product documentation would be
+ appreciated but is not required.
+ 2. Altered source versions must be plainly marked as such, and must not be
+ misrepresented as being the original software.
+ 3. This notice may not be removed or altered from any source distribution.
+
+ Jean-loup Gailly jloup@gzip.org
+ Mark Adler madler@alumni.caltech.edu
+
+*/
+
+***************************************************************************
+
+%%The following software may be included in this product:
+dtoa.c
+
+Use of any of this software is governed by the terms of the license below:
+
+/****************************************************************
+
+ This file incorporates work covered by the following copyright and
+ permission notice:
+
+ The author of this software is David M. Gay.
+
+ Copyright (c) 1991, 2000, 2001 by Lucent Technologies.
+
+ Permission to use, copy, modify, and distribute this software for any
+ purpose without fee is hereby granted, provided that this entire
+ notice is included in all copies of any software which is or includes a copy
+ or modification of this software and in all copies of the supporting
+ documentation for such software.
+
+ THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED
+ WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR LUCENT MAKES ANY
+ REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY
+ OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.
+
+ ***************************************************************/
+
+***************************************************************************
+
+%%The following software may be included in this product:
+getarg.{c,h}
+
+Use of any of this software is governed by the terms of the license below:
+
+/* Copyright (C) 2003 MySQL AB
+
+ 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; version 2 of the License.
+
+ 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 */
+
+/*
+ * Copyright (c) 1997, 1999 Kungliga Tekniska H366gskolan
+ * (Royal Institute of Technology, Stockholm, Sweden).
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * 3. Neither the name of the Institute nor the names of its contributors
+ * may be used to endorse or promote products derived from this software
+ * without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ */
+
+***************************************************************************
+
+%%The following software may be included in this product:
+MD5 message-digest algorithm (md5_hash.cpp)
+
+Use of any of this software is governed by the terms of the license below:
+
+/*
+ * This code implements the MD5 message-digest algorithm.
+ * The algorithm is due to Ron Rivest. This code was
+ * written by Colin Plumb in 1993, no copyright is claimed.
+ * This code is in the public domain; do with it what you wish.
+ *
+ * Equivalent code is available from RSA Data Security, Inc.
+ * This code has been tested against that, and is equivalent,
+ * except that you don't need to include two pages of legalese
+ * with every copy.
+ *
+ * The code has been modified by Mikael Ronstroem to handle
+ * calculating a hash value of a key that is always a multiple
+ * of 4 bytes long. Word 0 of the calculated 4-word hash value
+ * is returned as the hash value.
+ */
+
+***************************************************************************
+
+%%The following software may be included in this product:
+nt_servc.{cc,h}
+
+Use of any of this software is governed by the terms of the license below:
+
+/**
+ @file
+
+ @brief
+ Windows NT Service class library.
+
+ Copyright Abandoned 1998 Irena Pancirov - Irnet Snc
+ This file is public domain and comes with NO WARRANTY of any kind
+*/
+
+***************************************************************************
+
+%%The following software may be included in this product:
+GNU Readline
+
+Use of any of this software is governed by the terms of the license below:
+
+GNU GENERAL PUBLIC LICENSE
+ Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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 Lesser 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.
+
+
+ Copyright (C)
+
+ 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.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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) year 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.
+
+ , 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 Lesser General
+Public License instead of this License.
+
+***************************************************************************
+
+%%The following software may be included in this product:
+HandlerSocket plugin for MySQL
+
+Copyright (c) 2010 DeNA Co.,Ltd.
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ * Neither the name of DeNA Co.,Ltd. nor the names of its contributors
+ may be used to endorse or promote products derived from this software
+ without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY DeNA Co.,Ltd. "AS IS" AND ANY EXPRESS OR
+IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
+EVENT SHALL DeNA Co.,Ltd. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
+OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+***************************************************************************
+
+%%The following software may be included in this product:
+PCRE (Perl-compatible regular expression library)
+
+THE BASIC LIBRARY FUNCTIONS
+---------------------------
+
+Written by: Philip Hazel
+Email local part: ph10
+Email domain: cam.ac.uk
+
+University of Cambridge Computing Service,
+Cambridge, England.
+
+Copyright (c) 1997-2013 University of Cambridge
+All rights reserved.
+
+THE "BSD" LICENCE
+-----------------
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+ * Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ * Neither the name of the University of Cambridge nor the name of Google
+ Inc. nor the names of their contributors may be used to endorse or
+ promote products derived from this software without specific prior
+ written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGE.
+
+***************************************************************************
diff --git a/macOSpkg/resources/MariaDB_Background.png b/macOSpkg/resources/MariaDB_Background.png
new file mode 100644
index 0000000000000000000000000000000000000000..c2048a948f724ae885f8d96c94089cc4221bd639
GIT binary patch
literal 12477
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
literal 0
HcmV?d00001
diff --git a/macOSpkg/resources/conclusion.html b/macOSpkg/resources/conclusion.html
new file mode 100644
index 00000000..5eafde6b
--- /dev/null
+++ b/macOSpkg/resources/conclusion.html
@@ -0,0 +1,16 @@
+
+
+ Thank you for installing MariaDB Server, the fastest growing relational database!
+ If you chose to install launchd support (selected by default), MariaDB Server has already been started and you can connect like this:
+
/usr/local/mariadb/server/bin/mariadb
+ If you had an existing MariaDB data directory at /usr/local/mariadb/data
, you will need to use your existing credentials to connect.
+ Additional Resources:
+
+
+
+
+
diff --git a/macOSpkg/resources/example.png b/macOSpkg/resources/example.png
new file mode 100644
index 0000000000000000000000000000000000000000..62dd3a7668cf6fb56a94950ba23269647456d21b
GIT binary patch
literal 170709
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