]> git.cworth.org Git - obsolete/notmuch-old/blob - lib/getdate/config.h
lib/getdate: Add a very simple config.h file.
[obsolete/notmuch-old] / lib / getdate / config.h
1 /* Everything in this config.h is currently hard-coded. If you'd like
2  * something more sophisticated here, we could do that in the notmuch
3  * configure script. Let us know at notmuch@notmuchmail.org
4  */
5
6 #ifndef GETDATE_CONFIG_H
7 #define GETDATE_CONFIG_H
8
9 #if __GNUC__ > 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)
10 # define _GL_UNUSED __attribute__((unused))
11 #else
12 # define _GL_UNUSED
13 #endif
14
15 #endif