From fc3b51f799ba5da9deafbbc4f75cf72b897a6ac8 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Wed, 10 Mar 2010 16:22:54 -0800 Subject: [PATCH] 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. --- lib/getdate/config.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 lib/getdate/config.h 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 -- git format-patch -1 --stdout -C fc3b51f799ba5da9deafbbc4f75cf72b897a6ac8