monotone.patch 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. Index: configure
  2. --- configure.orig 2007-10-26 00:41:00 +0200
  3. +++ configure 2007-10-26 11:18:21 +0200
  4. @@ -12100,7 +12100,7 @@
  5. # automatically.
  6. PCRE_LIBS="`pcre-config --libs | \
  7. sed -e 's:-L */usr/lib/*::' -e 's:-R */usr/lib/*::' \
  8. - -e 's:-L */lib/*:: -e 's:-R */lib/*::'`"
  9. + -e 's:-L */lib/*::' -e 's:-R */lib/*::'`"
  10. found_libpcre=yes
  11. { echo "$as_me:$LINENO: result: yes" >&5
  12. echo "${ECHO_T}yes" >&6; }
  13. Index: pcrewrap.cc
  14. --- pcrewrap.cc.orig 2007-10-26 00:40:22 +0200
  15. +++ pcrewrap.cc 2007-10-26 15:19:23 +0200
  16. @@ -15,7 +15,6 @@
  17. // This dirty trick is necessary to prevent the 'pcre' typedef defined by
  18. // pcre.h from colliding with namespace pcre.
  19. #define pcre pcre_t
  20. -#include "pcre_config.h"
  21. #include "pcre.h"
  22. #undef pcre
  23. Index: std_hooks.lua
  24. --- std_hooks.lua f6f5c8d503faca26fdc2e06a1a9285f8d4b3700f
  25. +++ std_hooks.lua 149fd794ce4f182372cde6b3f12c8877256a58b3
  26. @@ -765,7 +765,7 @@ function get_preferred_merge3_command (t
  27. -- If there wasn't any user-given merger, take the first that's available
  28. -- and wanted.
  29. for _,mkey in ipairs(default_order) do
  30. - c = trymerger(mkey) ; if c then return c,nil end
  31. + c = trymerger(mkey) ; if c then return c,mkey end
  32. end
  33. end