/home/lnzliplg/public_html/ea-libxml2.tar
share/licenses/ea-libxml2/Copyright 0000644 00000002442 15173151040 0013301 0 ustar 00 Except where otherwise noted in the source code (e.g. the files dict.c and
list.c, which are covered by a similar licence but with different Copyright
notices) all the files are:
Copyright (C) 1998-2012 Daniel Veillard. All Rights Reserved.
Copyright (C) The Libxml2 Contributors.
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, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is fur-
nished 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, FIT-
NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR 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.
bin/xml2-config 0000755 00000003500 15173151042 0007364 0 ustar 00 #! /bin/sh
prefix=/opt/cpanel/ea-libxml2
exec_prefix=/opt/cpanel/ea-libxml2
includedir=/opt/cpanel/ea-libxml2/include
libdir=/opt/cpanel/ea-libxml2/lib64
cflags=
libs=
usage()
{
cat <<EOF
Usage: xml2-config [OPTION]
Known values for OPTION are:
--prefix=DIR change libxml prefix [default $prefix]
--exec-prefix=DIR change libxml exec prefix [default $exec_prefix]
--libs print library linking information
add --dynamic to print only shared libraries
--cflags print pre-processor and compiler flags
--modules module support enabled
--help display this help and exit
--version output version information
EOF
exit $1
}
if test $# -eq 0; then
usage 1
fi
while test $# -gt 0; do
case "$1" in
-*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
*) optarg= ;;
esac
case "$1" in
--prefix=*)
prefix=$optarg
includedir=$prefix/include
libdir=$prefix/lib
;;
--prefix)
echo $prefix
;;
--exec-prefix=*)
exec_prefix=$optarg
libdir=$exec_prefix/lib
;;
--exec-prefix)
echo $exec_prefix
;;
--version)
echo 2.15.1
exit 0
;;
--help)
usage 0
;;
--cflags)
cflags="-I${includedir}/libxml2 "
;;
--libtool-libs)
if [ -r ${libdir}/libxml2.la ]
then
echo ${libdir}/libxml2.la
fi
;;
--modules)
echo 1
;;
--libs)
if [ "$2" = "--dynamic" ]; then
shift
libs="-lxml2 "
else
libs="-lxml2 -ldl -lpthread -lm "
fi
if [ "/opt/cpanel/ea-libxml2/lib64" != "/usr/lib" -a "/opt/cpanel/ea-libxml2/lib64" != "/usr/lib64" ]; then
libs="-L${libdir} $libs"
fi
;;
*)
usage 1
;;
esac
shift
done
if test -n "$cflags$libs"; then
echo $cflags $libs
fi
exit 0
bin/xmlcatalog 0000755 00000051370 15173151043 0007403 0 ustar 00 ELF >