Author: ken Date: 2006-01-10 15:08:36 -0700 (Tue, 10 Jan 2006) New Revision: 7263
Modified: trunk/BOOK/chapter01/changelog.xml trunk/BOOK/chapter06/bison.xml Log: Make bison build repeatably. Modified: trunk/BOOK/chapter01/changelog.xml =================================================================== --- trunk/BOOK/chapter01/changelog.xml 2006-01-10 20:39:53 UTC (rev 7262) +++ trunk/BOOK/chapter01/changelog.xml 2006-01-10 22:08:36 UTC (rev 7263) @@ -124,6 +124,11 @@ </itemizedlist> </listitem> +<listitem><para>January 10, 2006 [ken]: define YYENABLE_NLS in bison, to +resolve a code difference shown up by Iterative Comparison Analysis. +Thanks to Greg Schafer.</para> +</listitem> + <listitem><para>January 10, 2006 [ken]: Revert my move of mktemp and add a sed to correct gccbug.</para> </listitem> Modified: trunk/BOOK/chapter06/bison.xml =================================================================== --- trunk/BOOK/chapter06/bison.xml 2006-01-10 20:39:53 UTC (rev 7262) +++ trunk/BOOK/chapter06/bison.xml 2006-01-10 22:08:36 UTC (rev 7263) @@ -32,6 +32,13 @@ <screen><userinput>./configure --prefix=/usr</userinput></screen> +<para>The configure system causes bison to be built without support for +internationalization of error messages if a <command>bison</command> +program is not already in $PATH. The following addition will correct +this.</para> + +<screen>echo '#define YYENABLE_NLS 1' >> config.h</screen> + <para>Compile the package:</para> <screen><userinput>make</userinput></screen> -- http://linuxfromscratch.org/mailman/listinfo/lfs-book FAQ: http://www.linuxfromscratch.org/lfs/faq.html Unsubscribe: See the above information page
