Commit 9d965629 authored by Rusty Russell's avatar Rusty Russell

ccanlint: don't remove HAVE_STRUCT_TIMESPEC when testing without features.

If we do have it, and we redefine it, compilation breaks.
parent 1ca32ce6
...@@ -121,6 +121,9 @@ static struct htable_option *get_config_options(struct manifest *m) ...@@ -121,6 +121,9 @@ static struct htable_option *get_config_options(struct manifest *m)
/* Don't override endian... */ /* Don't override endian... */
if (strends(sym, "_ENDIAN")) if (strends(sym, "_ENDIAN"))
continue; continue;
/* Don't override HAVE_STRUCT_TIMESPEC. */
if (streq(sym, "HAVE_STRUCT_TIMESPEC"))
continue;
if (!get_token(&lines[i], "1")) if (!get_token(&lines[i], "1"))
continue; continue;
htable_option_add(opts, sym); htable_option_add(opts, sym);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment