bug-gnu-utils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Problem compiling gettext 0.14.4


From: Bruno Haible
Subject: Re: Problem compiling gettext 0.14.4
Date: Mon, 2 May 2005 13:16:36 +0200
User-agent: KMail/1.5

Pierre wrote:
> >>/bin/sh ../lib/csharpcomp.sh -O -g -o GNU.Gettext.dll ./intl.cs
> >>mscorlib: No such library
> >>make[3]: *** [GNU.Gettext.dll] Error 1
> > 
> > 
> > This is an installation/configuration problem of your pnet installation.
> > Maybe you installed 'treecc' and 'pnet', but not 'pnetlib'?
> 
> Thanks for the advice, I'm gonna look into this.
> But couldn't this be detected by the configure script ?

Now that you have confirmed that it was indeed a problem on your pnet+pnetlib
installation, and not a problem in gettext, I can safely put in a check into
the configure script. So, gettext 0.15 will not attempt to use incomplete
pnet installations.

Thanks for the report.

Bruno

diff -r -c3 --exclude='*.po*' --exclude='*.info*' --exclude='*_*.html' 
--exclude='*.*.html' --exclude='*.[13]' --exclude='*.1.in' 
--exclude=Makefile.in --exclude=aclocal.m4 --exclude=configure 
--exclude=version.texi --exclude=stamp-vti --exclude='po-*-gen*.[ch]' 
--exclude='*.o' --exclude='*.lo' --exclude='*.gmo' --exclude=ABOUT-NLS 
--exclude='javadoc[12]' --exclude=CVS 
gettext-cvs/gettext-tools/m4/csharpcomp.m4 
gettext-6/gettext-tools/m4/csharpcomp.m4
*** gettext-cvs/gettext-tools/m4/csharpcomp.m4  Wed Jan 19 15:20:59 2005
--- gettext-6/gettext-tools/m4/csharpcomp.m4    Sun May  1 18:32:07 2005
***************
*** 1,4 ****
! # csharpcomp.m4 serial 4 (gettext-0.14.2)
  dnl Copyright (C) 2003-2005 Free Software Foundation, Inc.
  dnl This file is free software; the Free Software Foundation
  dnl gives unlimited permission to copy and/or distribute it,
--- 1,4 ----
! # csharpcomp.m4 serial 5 (gettext-0.15)
  dnl Copyright (C) 2003-2005 Free Software Foundation, Inc.
  dnl This file is free software; the Free Software Foundation
  dnl gives unlimited permission to copy and/or distribute it,
***************
*** 25,31 ****
      case "$impl" in
        pnet)
          if test -n "$HAVE_CSCC_IN_PATH" \
!            && cscc --version >/dev/null 2>/dev/null; then
            HAVE_CSCC=1
            ac_result="cscc"
            break
--- 25,39 ----
      case "$impl" in
        pnet)
          if test -n "$HAVE_CSCC_IN_PATH" \
!            && cscc --version >/dev/null 2>/dev/null \
!            && (
!              # See if pnetlib is well installed.
!              echo 'class ConfTest { static void Main() { } }' > conftest.cs
!              cscc -o conftest.exe conftest.cs 2>/dev/null
!              error=$?
!              rm -f conftest.cs conftest.exe
!              exit $error
!             ); then
            HAVE_CSCC=1
            ac_result="cscc"
            break





reply via email to

[Prev in Thread] Current Thread [Next in Thread]