This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: [glibc x gettext] Bad po files ?


Andreas Jaeger writes:

> > > Here's a patch.  Will this work with gettext 0.10.35 or do we require
> > > 0.10.36 now?

0.10.36 is required. Btw, I recommend the just-released 0.10.37, which
fixes the bugs that have been reported for 0.10.36.

> ============================================================
> Index: configure.in
> --- configure.in	2001/04/17 14:37:40	1.313
> +++ configure.in	2001/04/19 19:14:37
> @@ -574,7 +574,7 @@
>  
>  AC_CHECK_PROG_VER(MSGFMT, gnumsgfmt gmsgfmt msgfmt, --version,
>    [GNU gettext.* \([0-9]*\.[0-9.]*\)],
> -  [0.[1-9][0-9].* | [1-9].*], MSGFMT=: aux_missing=t)
> +  [0.10.3[6-9]*| 0.1[4-9].* |0.[2-9][0-9].* | [1-9].*], MSGFMT=: aux_missing=t)

This is not ok, it excludes the version 0.10.40 to 0.10.99 and 0.11 to
0.13. Better use

  [0.10.3[6-9]* | 0.10.[4-9][0-9]* | 0.1[1-9]* | 0.[2-9][0-9]* | [1-9].*], MSGFMT=: aux_missing=t)

Bruno


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]