Commit bf1d8d33 bf1d8d335e6630cf0e505ae9a4720d7393a1c4d8 by Sergey Poznyakoff

Updated to reflect the set of ENABLE_ defines.

1 parent b0533c64
...@@ -286,6 +286,21 @@ static char *mu_conf_option[] = { ...@@ -286,6 +286,21 @@ static char *mu_conf_option[] = {
286 #ifdef HAVE_MYSQL 286 #ifdef HAVE_MYSQL
287 "HAVE_MYSQL", 287 "HAVE_MYSQL",
288 #endif 288 #endif
289 #ifdef ENABLE_IMAP
290 "ENABLE_IMAP",
291 #endif
292 #ifdef ENABLE_POP
293 "ENABLE_POP",
294 #endif
295 #ifdef ENABLE_MH
296 "ENABLE_MH",
297 #endif
298 #ifdef ENABLE_SMTP
299 "ENABLE_SMTP",
300 #endif
301 #ifdef ENABLE_SENDMAIL
302 "ENABLE_SENDMAIL",
303 #endif
289 NULL 304 NULL
290 }; 305 };
291 306
......