File: configure.in.in

package info (click to toggle)
kbiff 3.8-1.1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 5,792 kB
  • ctags: 514
  • sloc: sh: 10,806; cpp: 5,110; perl: 2,037; makefile: 120
file content (31 lines) | stat: -rw-r--r-- 811 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#MIN_CONFIG(3.0)

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