| But I got this warning:
|
| | configure.in:32: warning: AC_CONFIG_SUBDIRS: you should use literals
|
| But the code actually scans the subdirs:
|
| | for a in `(cd $srcdir ; echo *)`
| | do
| | if test "$a" != "CVS" -a "$a" != "RCS" ; then
| | if test -d "$srcdir/$a" ; then
| |
Akim Demaille <[EMAIL PROTECTED]> writes:
> | The following autoconf code:
> | AC_CHECK_FUNC(gettext, [AC_DEFINE(HAVE_GETTEXT)],
> | AC_CHECK_LIB(intl, gettext, [LIBS="$LIBS -lintl"
> | AC_DEFINE(HAVE_GETTEXT)],
> | INTLI
| The following autoconf code:
| AC_CHECK_FUNC(gettext, [AC_DEFINE(HAVE_GETTEXT)],
| AC_CHECK_LIB(intl, gettext, [LIBS="$LIBS -lintl"
| AC_DEFINE(HAVE_GETTEXT)],
| INTLIBS="" ))
Improperly quoted.
AC_CHECK_FUNC(gettext,
> "Mirar" == Mirar <[EMAIL PROTECTED]> writes:
Mirar> autoconf (or autoheader?) also complains on the use of AF_UNIX
Mirar> and AF_INET inside tested C code in configure.in, but it's kind
Mirar> of hard to test socket code without using those #define's.
This will be solved very soon. Sorry