1
0
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:
Sandu Liviu Catalin
2021-08-22 18:07:06 +03:00
parent 151077c799
commit 7a3d92d1d1
450 changed files with 25219 additions and 6528 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -11,3 +11,5 @@ PageCompiler
PageCompiler/File2Page
MongoDB
Redis
ActiveRecord
ActiveRecord/Compiler