Re: err... this is odd

2000-11-29 Thread Akim Demaille
| 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 | |

Re: err... this is odd

2000-11-27 Thread Mirar
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

Re: err... this is odd

2000-11-17 Thread Akim Demaille
| 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,

Re: err... this is odd

2000-11-17 Thread Akim Demaille
> "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