How do I determine what to import using gnulib-tool

309 Views Asked by At

autoscan produced a series of function checks (AC_FUNC_* and AC_CHECK_FUNCS), and AC_CHECK_HEADERS. Now I need to pull in gnulib code. Do I just try to import every function and header that autoscan identified? Half of them don't show up in the gnulib-tool --list output. Or do I wait until ./configure fails on some platform?

2

There are 2 best solutions below

0
On BEST ANSWER

My suggestion would be to ignore autoscan entirely and instead try to figure out which platform you're targeting.

In particular autoscan will try to add tests for functions that are available in every single platform since 1990, but might be missing on a non-SysV OS for instance.

Start with a base platform target (such as C99 and the latest POSIX), and then figure out which other OSes you want to target and what they are missing.

Don't try to cover bases for OSes you have no access to, it's likely you won't actually know what is needed for them to build, let alone run.

Full disclosure: I have changed my opinion on gnulib over the years and not suggest it to be used anymore, if at all possible.

0
On

There are two ways to determine which list of gnulib modules you might need:

  • You can scan your source code or your object files (with nm) by hand.
  • You can import all the POSIX header file modules via gnulib-tool, then add -DGNULIB_POSIXCHECK to the CFLAGS, compile your package, and analyze the resulting warnings.

Also, some gnulib overrides exist for the sake of old platforms only. You can read the list of what each override fixes, and apply your own judgement.