From: Carl Worth Date: Thu, 11 Mar 2010 00:22:54 +0000 (-0800) Subject: lib/getdate: Add a very simple config.h file. X-Git-Url: https://git.cworth.org/git?p=obsolete%2Fnotmuch-old;a=commitdiff_plain;h=fc3b51f799ba5da9deafbbc4f75cf72b897a6ac8 lib/getdate: Add a very simple config.h file. Here we are merely enabling the _GL_UNUSED macro for versions of gcc that support it. The getdate source code doesn't require anything else. --- diff --git a/lib/getdate/config.h b/lib/getdate/config.h new file mode 100644 index 00000000..7e119d18 --- /dev/null +++ b/lib/getdate/config.h @@ -0,0 +1,15 @@ +/* Everything in this config.h is currently hard-coded. If you'd like + * something more sophisticated here, we could do that in the notmuch + * configure script. Let us know at notmuch@notmuchmail.org + */ + +#ifndef GETDATE_CONFIG_H +#define GETDATE_CONFIG_H + +#if __GNUC__ > 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7) +# define _GL_UNUSED __attribute__((unused)) +#else +# define _GL_UNUSED +#endif + +#endif