diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2013-07-02 18:32:11 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-07-02 18:32:11 +0200 |
commit | 5ec5bc2080bbc41e025fb98e6571a2c281b775cb (patch) | |
tree | a73cf2c57d306e6ce092996f70b29b8fbc0a006b /configure.in.in | |
download | kbiff-5ec5bc2080bbc41e025fb98e6571a2c281b775cb.tar.gz kbiff-5ec5bc2080bbc41e025fb98e6571a2c281b775cb.zip |
Initial import
Diffstat (limited to 'configure.in.in')
-rw-r--r-- | configure.in.in | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/configure.in.in b/configure.in.in new file mode 100644 index 0000000..251889d --- /dev/null +++ b/configure.in.in @@ -0,0 +1,32 @@ +#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 |