Changeset 46a2e9c for chapter05/gawk.xml


Ignore:
Timestamp:
01/06/2006 02:59:05 AM (19 years ago)
Author:
Jeremy Huntwork <jhuntwork@…>
Children:
e1ca33a
Parents:
1714f1a
Message:

Merged recent changes from trunk to lfs-alpha. Fixed typo.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/alphabetical/BOOK@7248 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter05/gawk.xml

    r1714f1a r46a2e9c  
    3232<screen><userinput>./configure --prefix=/tools</userinput></screen>
    3333
    34 <para>The configure script doesn't detect some functionality correctly.  The
    35 following commands correct this problem:</para>
    36 
    37 <screen><userinput>echo "#define HAVE_LANGINFO_CODESET 1" >> config.h
    38 echo "#define HAVE_LC_MESSAGES 1" >> config.h</userinput></screen>
     34<para>Due to a bug in the <command>configure</command> script, Gawk fails
     35to detect certain aspects of locale support in Glibc. This
     36bug leads to, e.g., Gettext testsuite failures. Work around this issue
     37by appending the missing macro definitions to <filename>config.h</filename>:</para>
     38<screen><userinput>cat &gt;&gt;config.h &lt;&lt;"EOF"
     39<literal>#define HAVE_LANGINFO_CODESET 1
     40#define HAVE_LC_MESSAGES 1</literal>
     41EOF</userinput></screen>
    3942
    4043<para>Compile the package:</para>
Note: See TracChangeset for help on using the changeset viewer.