asn1: Undefine TIME_UTC, which is used by C11

When building with C11 support, TIME_UTC is used for timespec_get() and
defined in <time.h>. Undefine TIME_UTC for our own internal use in asn1.c.
This commit is contained in:
Martin Willi
2015-04-08 08:47:31 +02:00
parent ff96400d13
commit 12def59617
+4
View File
@@ -913,6 +913,10 @@ static const asn1Object_t timeObjects[] = {
{ 0, "end opt", ASN1_EOC, ASN1_END }, /* 3 */
{ 0, "exit", ASN1_EOC, ASN1_EXIT }
};
#ifdef TIME_UTC
/* used by C11 timespec_get(), <time.h> */
# undef TIME_UTC
#endif
#define TIME_UTC 0
#define TIME_GENERALIZED 2