| 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,
[AC_DEFINE(HAVE_GETTEXT)],
[AC_CHECK_LIB(intl, gettext,
[LIBS="$LIBS -lintl"
AC_DEFINE(HAVE_GETTEXT)],
[INTLIBS=""])])
- err... this is odd Mirar
- Re: err... this is odd Akim Demaille
- Re: err... this is odd Akim Demaille
- Re: err... this is odd Mirar
- Re: err... this is odd Akim Demaille
