Eric Blake <[EMAIL PROTECTED]> wrote:
> The filenamecat-tests module needs an LDADD line to pull in -lintl on
> cygwin. Committing:
Why does it need -lintl?
> 2007-10-18 Eric Blake <[EMAIL PROTECTED]>
>
> * modules/filenamecat-tests (Makefile.am): Link against -lintl.
...
> +test_filenamecat_LDADD = $(LDADD) @LIBINTL@
BTW, does anyone know why all modules that add LIBINTL add
it with the anachronistic @LIBINTL@, rather than $(LIBINTL)?
Similarly, there are many uses of @EXEEXT@ that should be $(EXEEXT)
these days. But three already use $(EXEEXT).
Here's the full list:
33 @EXEEXT@
22 @LIBINTL@
6 @MKDIR_P@
5 @LIBICONV@
2 @TRUNC_LIBM@
2 @TRUNCF_LIBM@
2 @LIBMULTITHREAD@
2 @INTL_MACOSX_LIBS@
2 @FLOORF_LIBM@
2 @CEILF_LIBM@
1 @TRUNCL_LIBM@
1 @TEST_TSEARCH_LIBM@
1 @ISNANL_LIBM@
1 @FREXP_LIBM@
1 @FLOORL_LIBM@
1 @CEILL_LIBM@
Barring objections, I'll switch them all.