mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-16 23:12:57 +02:00
make PocoDoc work again
This commit is contained in:
parent
b16786fb54
commit
6f2224d729
@ -34,7 +34,19 @@
|
|||||||
-I/usr/local/mysql/include,
|
-I/usr/local/mysql/include,
|
||||||
-D_DEBUG,
|
-D_DEBUG,
|
||||||
-E,
|
-E,
|
||||||
-C
|
-C,
|
||||||
|
-DFoundation_API=,
|
||||||
|
-DXML_API=,
|
||||||
|
-DJSON_API=,
|
||||||
|
-DUtil_API=,
|
||||||
|
-DNet_API=,
|
||||||
|
-DCrypto_API=,
|
||||||
|
-DNetSSL_API=,
|
||||||
|
-DZip_API=,
|
||||||
|
-DData_API=,
|
||||||
|
-DSQLite_API=,
|
||||||
|
-DMySQL_API=,
|
||||||
|
-DODBC_API=
|
||||||
</options>
|
</options>
|
||||||
<path></path>
|
<path></path>
|
||||||
<usePipe>true</usePipe>
|
<usePipe>true</usePipe>
|
||||||
|
@ -36,7 +36,19 @@
|
|||||||
-I/usr/local/mysql/include,
|
-I/usr/local/mysql/include,
|
||||||
-D_DEBUG,
|
-D_DEBUG,
|
||||||
-E,
|
-E,
|
||||||
-C
|
-C,
|
||||||
|
-DFoundation_API=,
|
||||||
|
-DXML_API=,
|
||||||
|
-DJSON_API=,
|
||||||
|
-DUtil_API=,
|
||||||
|
-DNet_API=,
|
||||||
|
-DCrypto_API=,
|
||||||
|
-DNetSSL_API=,
|
||||||
|
-DZip_API=,
|
||||||
|
-DData_API=,
|
||||||
|
-DSQLite_API=,
|
||||||
|
-DMySQL_API=,
|
||||||
|
-DODBC_API=
|
||||||
</options>
|
</options>
|
||||||
<path></path>
|
<path></path>
|
||||||
<usePipe>true</usePipe>
|
<usePipe>true</usePipe>
|
||||||
|
@ -64,13 +64,6 @@ release=$version$tag
|
|||||||
#
|
#
|
||||||
|
|
||||||
echo "Building tools"
|
echo "Building tools"
|
||||||
osname=`uname -s | tr ' ' '_'`
|
|
||||||
osarch=`uname -m | tr ' ' '_'`
|
|
||||||
|
|
||||||
if [ $osname = "Darwin" ] ; then
|
|
||||||
archpath=`dirname stage/tools/PocoDoc/bin/Darwin/*/PocoDoc`
|
|
||||||
osarch=`basename $archpath`
|
|
||||||
fi
|
|
||||||
|
|
||||||
tools=$POCO_BASE/stage/tools
|
tools=$POCO_BASE/stage/tools
|
||||||
rm -rf $tools
|
rm -rf $tools
|
||||||
@ -80,8 +73,19 @@ mkrelease -o $tools $version CppParser PocoDoc
|
|||||||
cd $tools
|
cd $tools
|
||||||
./configure --no-tests --no-samples
|
./configure --no-tests --no-samples
|
||||||
make -s -j8
|
make -s -j8
|
||||||
export PATH=$tools/PocoDoc/bin/$osname/$osarch:$PATH
|
|
||||||
cd $POCO_BASE
|
cd $POCO_BASE
|
||||||
|
|
||||||
|
osname=`uname -s | tr ' ' '_'`
|
||||||
|
osarch=`uname -m | tr ' ' '_'`
|
||||||
|
|
||||||
|
if [ $osname = "Darwin" ] ; then
|
||||||
|
archpath=`dirname stage/tools/PocoDoc/bin/Darwin/*/PocoDoc`
|
||||||
|
osarch=`basename $archpath`
|
||||||
|
fi
|
||||||
|
|
||||||
|
export PATH=$tools/PocoDoc/bin/$osname/$osarch:$PATH
|
||||||
|
echo PATH=$PATH
|
||||||
|
|
||||||
echo "Building documentation $release (using $docConfig)"
|
echo "Building documentation $release (using $docConfig)"
|
||||||
mkdocumentation $reltag $relspec -C $docConfig -v $version
|
mkdocumentation $reltag $relspec -C $docConfig -v $version
|
||||||
|
Loading…
x
Reference in New Issue
Block a user