You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
842 B
33 lines
842 B
#MIN_CONFIG(3.0)
|
|
AM_INIT_AUTOMAKE(kbiff, "3.9")
|
|
|
|
AC_ARG_ENABLE(
|
|
ssl,
|
|
[ --disable-ssl build without SSL (imap4s and pop3s) protocol support],
|
|
[use_ssl=$enableval],
|
|
[use_ssl=yes])
|
|
|
|
if test "$use_ssl" == "yes"; then
|
|
AC_DEFINE([USE_SSL],[],[Compile with SSL support])
|
|
fi
|
|
|
|
|
|
AC_ARG_ENABLE(
|
|
ssl,
|
|
[ --disable-ssl build without SSL (imap4s and pop3s) protocol support],
|
|
[use_ssl=$enableval],
|
|
[use_ssl=yes])
|
|
|
|
if test "$use_ssl" == "yes"; then
|
|
AC_DEFINE([USE_SSL],[],[Compile with SSL support])
|
|
fi
|
|
|
|
|
|
AC_MSG_CHECKING(for ASUS notebook mail LED support)
|
|
if test -f "/proc/acpi/asus/mled"; then
|
|
AC_MSG_RESULT(yes)
|
|
AC_DEFINE([HAVE_MLED],[],[Compile with support for Mail LED on ASUS notebooks: needs ACPI and Asus Laptop Extras (http://sourceforge.net/projects/acpi4asus/)])
|
|
else
|
|
AC_MSG_RESULT(no)
|
|
fi
|