diffutils-exp.xml 585 B

12345678910111213141516
  1. <sect2>
  2. <title>Command explanations</title>
  3. <para>
  4. <userinput>CPPFLAGS=-Dre_max_failures=re_max_failures2:</userinput> The
  5. CPPFLAGS variable is a variable that's read by the cpp program (C
  6. PreProcessor). The value of this variable tells the preprocessor to
  7. replace every instance of re_max_failures it finds by re_max_failures2
  8. before handing the source file to the compiler itself for compilation. This
  9. package has problems linking statically on certain platforms (depending
  10. on the Glibc version used on that system) and this construction fixes
  11. that problem.
  12. </para>
  13. </sect2>