view autogen.sh @ 8378:fe0e6550585c HEAD tip

*-login: SSL connections didn't get closed when the client got destroyed.
author Timo Sirainen <tss@iki.fi>
date Thu, 08 May 2014 16:52:29 +0300
parents d9f9ca8c7fe2
children
line wrap: on
line source

#!/bin/sh

# If you've non-standard directories, set these
#ACLOCAL_DIR=
#GETTEXT_DIR=

if test "$ACLOCAL_DIR" != ""; then
  ACLOCAL="aclocal -I $ACLOCAL_DIR"
  export ACLOCAL
fi

for dir in $GETTEXT_DIR /usr/share/gettext; do
  if test -f $dir/config.rpath; then
    /bin/cp -f $dir/config.rpath .
    break
  fi
done

if test ! -f doc/wiki/Authentication.txt; then
  cd doc
  wget http://www.dovecot.org/tmp/wiki1-export.tar.gz
  tar xzf wiki1-export.tar.gz
  mv wiki1-export/*.txt wiki/
  rm -rf wiki1-export wiki1-export.tar.gz
  cd ..
fi

cd doc/wiki
cp -f Makefile.am.in Makefile.am
echo *.txt | sed 's, , \\/	,g' | tr '/' '\n' >> Makefile.am
cd ../..

if test ! -f ChangeLog; then
  # automake dies unless this exists. It's generated in Makefile
  touch -t `date +%m%d`0000 ChangeLog
fi

autoreconf -i