add configure option to use system getopt_long() #49
Loading…
Reference in New Issue
There is no content yet.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may exist for a short time before cleaning up, in most cases it CANNOT be undone. Continue?
Instead of always using the in-tree copy of it.
We ship our own getopt_long because dalias refuses to add permutation support in musl. You can force it to use the system getopt_long by using
--enable-strict
. That will disable all compatibility code.That seems to just disable the GNU behavior of the shipped getopt_long.c. I would prefer to not use at all the shipped getopt_long.c, but have it use system libc provided getopt_long(). This is not currently possible.
It's actually not possible at all, we modified the getopt_long() to logical OR all values on the option.flag structure member.