You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Daniel Rall <dl...@finemaltcoding.com> on 2005/04/15 20:01:33 UTC

Re: Configure questions on Intel/Solaris 9

On Fri, 2005-04-15 at 13:41 -0700, Chiiwen Liou wrote:
>Hi,
>I downloaded subversion to Solaris 9/Intel.
>I got 2 problems during running configure (I ran autogen.sh first)
>1.checking if we are using GNU gettext... ./configure: GNU: command not
>found
>no
>
> But I have gettext installed.

From configure.in:

# Check if we are using GNU gettext.
GNU_GETTEXT=no
MSGFMTFLAGS=''
if test $USE_NLS = "yes"; then
   AC_MSG_CHECKING(if we are using GNU gettext)
   if $MSGFMT --version 2>&1 | $EGREP GNU > /dev/null; then
      GNU_GETTEXT=yes
      MSGFMTFLAGS='-c'
   fi
   AC_MSG_RESULT($GNU_GETTEXT)
fi
AC_SUBST(MSGFMTFLAGS)

It rather looks like $EGREP isn't getting set.



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org