jqlang / jq

Command-line JSON processor
https://jqlang.github.io/jq/
Other
29.59k stars 1.54k forks source link

Add `strptime` fallback not only for Windows #3094

Closed fdellwing closed 2 months ago

fdellwing commented 2 months ago

SerenityOS is missing strptime and currently uses a patch to enable the fallback in 1.7.1. #3008 removed the WIN32 check in util.c but not in util.h.

This changes the check in util.h as well. With this SerenityOS can drop its patch in the next jq release.

wader commented 2 months ago

@fdellwing Thanks!