diff options
author | Slávek Banko <[email protected]> | 2018-10-19 02:35:22 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2018-10-19 13:52:49 +0200 |
commit | 77d5afb6c56c05211f79fe1b1656837a854bc650 (patch) | |
tree | 9c61133876f51023c4b7b6a3dafcf618e8c007f3 /config.h.cmake | |
parent | e8e56b0eb136e969c2fec43712d5b76811f48128 (diff) | |
download | kbiff-77d5afb6c56c05211f79fe1b1656837a854bc650.tar.gz kbiff-77d5afb6c56c05211f79fe1b1656837a854bc650.zip |
cmake: Add options WITH_SSL and WITH_MLED
Fix test for SSL => is not needed, because is used KSSL from tdelibs
Fix test for ASUS Mail LED support in ACPI
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 3e2052d2d451a77852c362f6b8812f74f4648739)
Diffstat (limited to 'config.h.cmake')
-rw-r--r-- | config.h.cmake | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/config.h.cmake b/config.h.cmake index f516d04..19a2071 100644 --- a/config.h.cmake +++ b/config.h.cmake @@ -13,14 +13,14 @@ /* Defined to 1 if we have path.h header */ #cmakedefine HAVE_PATHS_H 1 -/* Defined to 1 since we do have c++ stl headers */ -#define HAVE_MLED 1 +/* + * Compile with support for Mail LED on ASUS notebooks: + * needs ACPI and Asus Laptop Extras (http://sourceforge.net/projects/acpi4asus/ + */ +#cmakedefine HAVE_MLED 1 /* Defined to 1 if we have OpenSSL */ -#cmakedefine USE_SSL @USE_SSL@ +#cmakedefine USE_SSL 1 /* Define the path for the mail spool */ -#define _PATH_MAILDIR "/var/spool/mail" - -/* for HP Unix Operating system */ -#undef _HPUX_SOURCE +#cmakedefine _PATH_MAILDIR "@PATH_MAILDIR@" |