Commit e13501a1 e13501a191709a9495839db365ee25444ef4cd5e by Sergey Poznyakoff

Minor changes.

* libmu_argp/mailutils.c: Include argp-namefrob.h
* libproto/mailer/smtp_auth.c (get_ticket)
 (_mu_smtp_fixup_params): Protect with WITH_GSASL
1 parent c9e42006
......@@ -21,6 +21,8 @@
#include "cmdline.h"
#include <unistd.h>
#include <stdlib.h>
/* Provide declaration of __argp_base_name: */
#include <argp-namefrob.h>
/* ************************************************************************* */
......
......@@ -29,6 +29,7 @@
#include <mailutils/auth.h>
#include <mailutils/url.h>
#if defined(WITH_GSASL)
static int
get_ticket (mu_ticket_t *pticket)
{
......@@ -99,6 +100,7 @@ _mu_smtp_fixup_params (mu_smtp_t smtp)
return 0;
}
#endif
int
mu_smtp_auth (mu_smtp_t smtp)
......