Commit 47a5ab6b 47a5ab6b6717268111d098234be652fb1f63b131 by Sergey Poznyakoff

Conditionally include gnu/argp.h

1 parent de63e9ff
......@@ -20,7 +20,11 @@
#include <mailutils/types.h>
#include <argp.h>
#ifdef HAVE_ARGP_H
# include <argp.h>
#else
# include <mailutils/gnu/argp.h>
#endif
#define MODE_INTERACTIVE 0
#define MODE_DAEMON 1
......