Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: adapt link to fixed issues

...

An overview of fixed issues and the related commits can be found under fixed issues (since AOO 4.1.0).

Anchor
AOOSnapshotSource
AOOSnapshotSource

...

Code Block
xml
xml
#! /bin/bash

echo "### checking for unowinreg.dll ... "
if [ ! -e  ./external/unowinreg/unowinreg.dll ]; then
    wget -O external/unowinreg/unowinreg.dll http://tools.openoffice.org/unowinreg_prebuild/680/unowinreg.dll
else
    echo "  unowinreg.dll found"
fi

echo "### autoconf ..."
if [ ! -e  ./configure ]; then
    autoconf
else
    rm ./configure
    autoconf
fi

echo "### Configure"
./configure --with-build-version="$(date +"%Y-%m-%d %H:%M")" --enable-verbose --enable-category-b --enable-wiki-publisher --enable-bundled-dictionaries --without-stlport \
--with-dmake-path=/Users/jsc/dev/tools/bin/dmake --with-epm=/Users/jsc/dev/tools/bin/epm/epm --with-openldap --with-junit=/Users/jsc/dev/tools/junit/junit-4.11.jar \
--with-packager-list=/Users/jsc/dev/svn/aoo-build-pack.lst --with-jdk-home=/Library/Java/JavaVirtualMachines/jdk1.7.0_51.jdk/Contents/Home --with-ant-home=/Users/jsc/dev/tools/apache-ant-1.9.3/dist \
--with-lang="ast bg ca ca-XV cs de da de el en-GB en-US es eu fi fr gd gl he hi hu it ja km ko lt nb nl pl pt pt-BR ru sk sl sr sv ta th tr vi zh-CN zh-TW"

./bootstrap

cd instsetoo_native/util

build --all -P4 -- -P4

...

Code Block
./configure   \
--with-build-version="$(date +"%Y-%m-%d %H:%M") - `uname -sm`" \
--enable-verbose \
--enable-category-b \
--enable-crashdump=yes  \
--enable-wiki-publisher  \
--enable-opengl  \
--enable-dbus  \
--enable-gstreamer \
--with-package-format="rpm deb" \
--with-dmake-url=http://dmake.apache-extras.org.codespot.com/files/dmake-4.12.tar.bz2 \
--with-epm-url=http://www.msweet.org/files/project2/epm-3.7-source.tar.gz \
--enable-bundled-dictionaries \
--without-junit \
--with-perl-home=$HOME/perl \
--with-ant-home=$HOME/src/apache-ant-1.8.3 \
--without-stlport \
--with-system-stdlibs \
--with-lang="ast bg ca ca-XV cs de da de el en-GB en-US es eu fi fr gd gl he hi hu it ja km ko lt nb nl pl pt pt-BR ru sk sl sr sv ta th tr vi zh-CN zh-TW"

...