parrot.patch 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. Index: config/gen/icu.pl
  2. --- config/gen/icu.pl.orig 2005-05-13 22:49:11 +0200
  3. +++ config/gen/icu.pl 2005-07-03 20:13:35 +0200
  4. @@ -67,7 +67,7 @@
  5. if (defined $icuheaders) {
  6. chomp $icuheaders;
  7. $without = 1 unless -d $icuheaders;
  8. - $icuheaders .= "${slash}include";
  9. + $icuheaders .= "${slash}include/icu";
  10. $without = 1 unless -d $icuheaders;
  11. }
  12. Index: config/gen/makefiles/CFLAGS.in
  13. --- config/gen/makefiles/CFLAGS.in.orig 2005-06-15 10:00:09 +0200
  14. +++ config/gen/makefiles/CFLAGS.in 2005-07-03 20:13:35 +0200
  15. @@ -5,6 +5,8 @@
  16. #
  17. # Note, empty regex/options are just ignored.
  18. #
  19. +ops/core_ops_switch.c -{-O2} # workaround GCC 3.4.3 optimizer problems
  20. +ops/core_ops_cgp.c -{-O2} # workaround GCC 3.4.3 optimizer problems
  21. src/spf_render.c -{-Wformat-nonliteral} # noisy
  22. src/tsq.c -{${optimize}} # never optimize tsq.c!
  23. ops/core_ops_cg.c -{${optimize}} # takes too long
  24. Index: imcc/imcc.l
  25. --- imcc/imcc.l.orig 2005-06-15 21:43:08 +0200
  26. +++ imcc/imcc.l 2005-07-03 20:16:46 +0200
  27. @@ -80,6 +80,7 @@
  28. %option never-interactive
  29. %option stack
  30. +%option array
  31. LETTER [a-zA-Z_@]
  32. DIGIT [0-9]