Newer
Older

Stephan Bosch
committed
AC_INIT([Pigeonhole], [0.2.UNSTABLE], [dovecot@dovecot.org], [dovecot-2.0-pigeonhole])
# Autoheader is not needed and does more harm than good for this package. However, it is
# tightly integrated in autoconf/automake and therefore it is difficult not to use it. As
# a workaround we give autoheader a dummy config header to chew on and we handle the
# real config header ourselves.
AC_CONFIG_HEADERS([dummy-config.h pigeonhole-config.h])
AC_DEFINE_UNQUOTED(PIGEONHOLE_NAME, "$PACKAGE_NAME",
[Define to the full name of Pigeonhole for Dovecot.])
AC_DEFINE_UNQUOTED(PIGEONHOLE_VERSION, "$PACKAGE_VERSION",
[Define to the version of Pigeonhole for Dovecot.])
AM_INIT_AUTOMAKE([no-define foreign])
AM_MAINTAINER_MODE
AC_PROG_CC
AC_PROG_CPP
[AC_HELP_STRING([--with-dovecot=DIR], [Dovecot base directory [../dovecot]])],

Stephan Bosch
committed
dovecotdir="$withval"
# Extensions under development
#
AC_ARG_WITH(unfinished-features,
[AC_HELP_STRING([--with-unfinished-features],
[Build unfinished new features/extensions [default=no]])],
if test x$withval = xno || test x$withval = xauto; then
want_unfinished_features=$withval
want_unfinished_features=yes

Stephan Bosch
committed
want_unfinished_features=no)
AM_CONDITIONAL(BUILD_UNFINISHED, test "$want_unfinished_features" = "yes")
if test "$want_unfinished_features" = "yes"; then
AC_DEFINE(HAVE_SIEVE_UNFINISHED,,
[Define to build unfinished features/extensions.])
AC_ARG_ENABLE(header-install,
[ --enable-header-install Install development headers],
if test x$enableval = xno; then
want_headers=no
else
want_headers=yes
fi,
want_headers=no)
AM_CONDITIONAL(INSTALL_HEADERS, test "$want_headers" = "yes")
AC_ARG_ENABLE(valgrind,
[AC_HELP_STRING([--enable-valgrind], [Enable Valgrind memory leak checks in testsuite [default=no]])],
if test x$enableval = xno || test x$enableval = xauto; then
want_valgrind=$enableval
else
want_valgrind=yes
fi,
want_valgrind=no)
AM_CONDITIONAL(TESTSUITE_VALGRIND, test "$want_valgrind" = "yes")
AC_ARG_WITH(managesieve,
[AC_HELP_STRING([--with-managesieve],
[Build ManageSieve service [default=yes]])],
if test x$withval = xno || test x$withval = xauto; then
want_managesieve=$withval
else
want_managesieve=yes
fi,
want_managesieve=yes)
AM_CONDITIONAL(BUILD_MANAGESIEVE, test "$want_managesieve" = "yes")

Stephan Bosch
committed
if test "$dovecotdir" = ""; then
test "x$prefix" = xNONE && prefix=$ac_default_prefix
dovecotdir=$prefix/lib/dovecot
fi
if ! test -f "$dovecotdir/dovecot-config"; then
echo
echo "dovecot-config not found from $dovecotdir, use --with-dovecot=PATH"
echo "to give path to compiled Dovecot sources or to a directory with the"
echo "installed dovecot-config file."
AC_MSG_ERROR([dovecot-config not found])
fi

Stephan Bosch
committed
eval `cat $dovecotdir/dovecot-config`
AC_SUBST(dovecot_moduledir)
AC_SUBST(dovecot_pkglibexecdir)
AC_SUBST(dovecot_pkglibdir)
AC_SUBST(LIBDOVECOT)
AC_SUBST(LIBDOVECOT_STORAGE)
AC_SUBST(LIBDOVECOT_LOGIN)

Stephan Bosch
committed
AC_SUBST(LIBDOVECOT_DEPS)
AC_SUBST(LIBDOVECOT_STORAGE_DEPS)
AC_SUBST(LIBDOVECOT_LOGIN_DEPS)
LIBDOVECOT_INCLUDE="$LIBDOVECOT_INCLUDE $LIBDOVECOT_STORAGE_INCLUDE"
AC_SUBST(LIBDOVECOT_INCLUDE)
AC_SUBST(LIBDOVECOT_LDA_INCLUDE)
AC_SUBST(LIBDOVECOT_SERVICE_INCLUDE)
AC_SUBST(LIBDOVECOT_LOGIN_INCLUDE)
doc/Makefile
doc/man/Makefile
doc/example-config/Makefile
doc/example-config/conf.d/Makefile
src/Makefile
src/lib-sieve/Makefile
src/lib-sieve/plugins/Makefile
src/lib-sieve/plugins/vacation/Makefile

Stephan Bosch
committed
src/lib-sieve/plugins/subaddress/Makefile

Stephan Bosch
committed
src/lib-sieve/plugins/comparator-i-ascii-numeric/Makefile
src/lib-sieve/plugins/relational/Makefile
src/lib-sieve/plugins/regex/Makefile
src/lib-sieve/plugins/imap4flags/Makefile
src/lib-sieve/plugins/copy/Makefile
src/lib-sieve/plugins/include/Makefile
src/lib-sieve/plugins/body/Makefile
src/lib-sieve/plugins/variables/Makefile
src/lib-sieve/plugins/enotify/Makefile

Stephan Bosch
committed
src/lib-sieve/plugins/enotify/mailto/Makefile

Stephan Bosch
committed
src/lib-sieve/plugins/notify/Makefile
src/lib-sieve/plugins/environment/Makefile
src/lib-sieve/plugins/mailbox/Makefile
src/lib-sieve/plugins/date/Makefile

Stephan Bosch
committed
src/lib-sieve/plugins/spamvirustest/Makefile
src/lib-sieve-tool/Makefile
src/lib-sievestorage/Makefile
src/lib-managesieve/Makefile
src/plugins/Makefile
src/plugins/lda-sieve/Makefile
src/sieve-tools/Makefile
src/sieve-tools/debug/Makefile
src/managesieve/Makefile
src/managesieve-login/Makefile
echo "NOTE: This is the UNSTABLE development branch."