summaryrefslogtreecommitdiff
path: root/homebrew/tinyfugue/patches.sh
blob: 355dccbdc14792131bc9f01de9f6e487a5811e6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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