summaryrefslogtreecommitdiff
path: root/homebrew/tinyfugue/patches.sh
diff options
context:
space:
mode:
Diffstat (limited to 'homebrew/tinyfugue/patches.sh')
-rwxr-xr-xhomebrew/tinyfugue/patches.sh47
1 files changed, 47 insertions, 0 deletions
diff --git a/homebrew/tinyfugue/patches.sh b/homebrew/tinyfugue/patches.sh
new file mode 100755
index 000000000..355dccbdc
--- /dev/null
+++ b/homebrew/tinyfugue/patches.sh
@@ -0,0 +1,47 @@
+echo 'Creating brew-patch.diff'
+cat << EOF >> brew-patch.diff
+--- a/src/malloc.c 2007-01-13 15:12:39.000000000 -0800
++++ b/src/malloc.c 2012-10-26 08:23:30.000000000 -0700
+@@ -7,6 +7,7 @@
+ ************************************************************************/
+ static const char RCSid[] = "$Id: malloc.c,v 35004.22 2007/01/13 23:12:39 kkeys Exp $";
+
++#include "sys/types.h"
+ #include "tfconfig.h"
+ #include "port.h"
+ #include "signals.h"
+--- a/src/macro.c 2007-01-13 15:12:39.000000000 -0800
++++ b/src/macro.c 2012-10-26 08:15:31.000000000 -0700
+@@ -893,7 +893,8 @@
+ }
+ spec->attr &= ~F_NONE;
+ if (spec->nsubattr) {
+- int n = pcre_info(spec->trig.ri->re, NULL, NULL);
++ int n;
++ pcre_fullinfo(spec->trig.ri->re, NULL, PCRE_INFO_CAPTURECOUNT, &n);
+ for (i = 0; i < spec->nsubattr; i++) {
+ spec->subattr[i].attr &= ~F_NONE;
+ if (spec->subattr[i].subexp > n) {
+--- a/src/pattern.c 2007-01-13 15:12:39.000000000 -0800
++++ b/src/pattern.c 2012-10-26 08:16:19.000000000 -0700
+@@ -151,7 +151,7 @@
+ emsg ? emsg : "unknown error");
+ goto tf_reg_compile_error;
+ }
+- n = pcre_info(ri->re, NULL, NULL);
++ pcre_fullinfo(ri->re, NULL, PCRE_INFO_CAPTURECOUNT, &n);
+ if (n < 0) goto tf_reg_compile_error;
+ ri->ovecsize = 3 * (n + 1);
+ ri->ovector = dmalloc(NULL, sizeof(int) * ri->ovecsize, file, line);
+--- a/src/pattern.h 2007-01-13 15:12:39.000000000 -0800
++++ b/src/pattern.h 2012-10-26 08:17:54.000000000 -0700
+@@ -10,7 +10,7 @@
+ #ifndef PATTERN_H
+ #define PATTERN_H
+
+-#include "pcre-2.08/pcre.h"
++#include <pcre.h>
+
+ typedef struct RegInfo {
+ pcre *re;
+EOF