mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-06-18 16:17:14 +02:00
Update POCO to 1.11.0
This commit is contained in:
5
vendor/POCO/release/script/cpproj
vendored
5
vendor/POCO/release/script/cpproj
vendored
@ -55,6 +55,11 @@ if [ -d ${src}/testsuite ] ; then
|
||||
mkdir -p ${dst}/testsuite
|
||||
mkdir -p ${dst}/testsuite/src
|
||||
|
||||
if [ -d ${src}/testsuite/include ] ; then
|
||||
mkdir -p ${dst}/testsuite/include
|
||||
cp -R ${src}/testsuite/include/* ${dst}/testsuite/include >/dev/null 2>&1
|
||||
fi
|
||||
|
||||
if [ -d ${src}/testsuite/data ] ; then
|
||||
mkdir -p ${dst}/testsuite/data
|
||||
cp -R ${src}/testsuite/data/* ${dst}/testsuite/data >/dev/null 2>&1
|
||||
|
10
vendor/POCO/release/script/mkdoc
vendored
10
vendor/POCO/release/script/mkdoc
vendored
@ -26,12 +26,12 @@ case `uname` in
|
||||
esac
|
||||
|
||||
spec=""
|
||||
docConfig=$POCO_BASE/PocoDoc/cfg/mkdoc-poco.xml
|
||||
docConfig=""
|
||||
while [ "$1" != "" ] ;
|
||||
do
|
||||
if [ "$1" = "-C" ] ; then
|
||||
shift
|
||||
docConfig=$1
|
||||
docConfig="$docConfig -C $1"
|
||||
shift
|
||||
elif [ "$1" = "-v" ] ; then
|
||||
shift
|
||||
@ -43,6 +43,10 @@ do
|
||||
fi
|
||||
done
|
||||
|
||||
if [ -z "$docConfig" ] ; then
|
||||
docConfig="-C $POCO_BASE/PocoDoc/cfg/mkdoc-poco.xml"
|
||||
fi
|
||||
|
||||
if [ "$spec" != "" ] ; then
|
||||
relspec="-f release/spec/${spec}.release"
|
||||
tag="-$spec"
|
||||
@ -105,4 +109,4 @@ export PATH=$tools/PocoDoc/bin/$osname/$osarch:$PATH
|
||||
echo PATH=$PATH
|
||||
|
||||
echo "Building documentation $release (using $docConfig)"
|
||||
mkdocumentation $reltag $relspec -C $docConfig -v $version
|
||||
mkdocumentation $reltag $relspec $docConfig -v $version
|
||||
|
11
vendor/POCO/release/script/mkdocumentation
vendored
11
vendor/POCO/release/script/mkdocumentation
vendored
@ -30,7 +30,7 @@ make=make
|
||||
include=`dirname $0`
|
||||
build=$POCO_BASE/stage/docbuild
|
||||
dist=$POCO_BASE/releases
|
||||
docConfig=$POCO_BASE/PocoDoc/cfg/mkdocumentation.xml
|
||||
docConfig=""
|
||||
read version <$POCO_BASE/VERSION
|
||||
|
||||
osname=`uname -s | tr ' ' '_'`
|
||||
@ -57,7 +57,7 @@ do
|
||||
shift
|
||||
elif [ "$1" = "-C" ] ; then
|
||||
shift
|
||||
docConfig=$1
|
||||
docConfig="$docConfig --config=$1"
|
||||
shift
|
||||
elif [ "$1" = "-v" ] ; then
|
||||
shift
|
||||
@ -69,6 +69,10 @@ do
|
||||
fi
|
||||
done
|
||||
|
||||
if [ -z "$docConfig" ] ; then
|
||||
docConfig=$POCO_BASE/PocoDoc/cfg/mkdocumentation.xml
|
||||
fi
|
||||
|
||||
if [ "$specfile" != "" ] ; then
|
||||
while read c
|
||||
do
|
||||
@ -130,8 +134,7 @@ echo "PocoDoc.output=$docPath" >>$build/PocoDoc.ini
|
||||
echo "PocoDoc.version=$docVersion" >> $build/PocoDoc.ini
|
||||
echo "Includes=$includes" >> $build/PocoDoc.ini
|
||||
|
||||
echo "PocoDoc --config=$docConfig --config=$build/PocoDoc.ini"
|
||||
PocoDoc --config=$docConfig --config=$build/PocoDoc.ini
|
||||
PocoDoc $docConfig --config=$build/PocoDoc.ini
|
||||
|
||||
cd $dist
|
||||
|
||||
|
2
vendor/POCO/release/spec/all.release
vendored
2
vendor/POCO/release/spec/all.release
vendored
@ -11,3 +11,5 @@ PageCompiler
|
||||
PageCompiler/File2Page
|
||||
MongoDB
|
||||
Redis
|
||||
ActiveRecord
|
||||
ActiveRecord/Compiler
|
||||
|
Reference in New Issue
Block a user