Commit e2dd4cd1 e2dd4cd178ffe099f2741a36b6791b5345b81b82 by Sergey Poznyakoff

(lib_descr): Add mailer.

1 parent 4f597ff0
...@@ -33,7 +33,7 @@ static struct argp_option options[] = { ...@@ -33,7 +33,7 @@ static struct argp_option options[] = {
33 N_("Print C compiler flags to compile with"), 0}, 33 N_("Print C compiler flags to compile with"), 0},
34 {"link", 'l', NULL, 0, 34 {"link", 'l', NULL, 0,
35 N_("Print libraries to link with. Possible arguments are: auth, guile, " 35 N_("Print libraries to link with. Possible arguments are: auth, guile, "
36 "mbox, mh, maildir, imap, pop, sieve and all"), 0}, 36 "mbox, mh, maildir, mailer, imap, pop, sieve and all"), 0},
37 {"info", 'i', NULL, 0, 37 {"info", 'i', NULL, 0,
38 N_("Print a list of configuration options used to build mailutils. If arguments " 38 N_("Print a list of configuration options used to build mailutils. If arguments "
39 "are given, they are interpreted as a list of configuration options to check " 39 "are given, they are interpreted as a list of configuration options to check "
...@@ -108,6 +108,7 @@ struct lib_descr { ...@@ -108,6 +108,7 @@ struct lib_descr {
108 { "imap", "mu_imap", NEEDAUTH }, 108 { "imap", "mu_imap", NEEDAUTH },
109 { "pop", "mu_pop", NEEDAUTH }, 109 { "pop", "mu_pop", NEEDAUTH },
110 { "nntp", "mu_nntp", 0 }, 110 { "nntp", "mu_nntp", 0 },
111 { "mailer", "mu_mailer", 0 },
111 { "sieve", "sieve", NOTALL }, 112 { "sieve", "sieve", NOTALL },
112 { NULL } 113 { NULL }
113 }; 114 };
......