You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.6 KiB
48 lines
1.6 KiB
Index: configure |
|
--- configure.orig 2009-10-19 16:12:16 +0200 |
|
+++ configure 2009-10-19 22:07:07 +0200 |
|
@@ -3041,13 +3041,6 @@ |
|
$as_echo "$as_me: failed program was:" >&5 |
|
sed 's/^/| /' conftest.$ac_ext >&5 |
|
|
|
-{ { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 |
|
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} |
|
-{ { $as_echo "$as_me:$LINENO: error: C compiler cannot create executables |
|
-See \`config.log' for more details." >&5 |
|
-$as_echo "$as_me: error: C compiler cannot create executables |
|
-See \`config.log' for more details." >&2;} |
|
- { (exit 77); exit 77; }; }; } |
|
fi |
|
|
|
ac_exeext=$ac_cv_exeext |
|
@@ -7604,13 +7597,7 @@ |
|
if $ac_preproc_ok; then |
|
: |
|
else |
|
- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 |
|
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} |
|
-{ { $as_echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check |
|
-See \`config.log' for more details." >&5 |
|
-$as_echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check |
|
-See \`config.log' for more details." >&2;} |
|
- { (exit 1); exit 1; }; }; } |
|
+ : |
|
fi |
|
|
|
ac_ext=c |
|
Index: pcreposix.h |
|
--- pcreposix.h.orig 2009-09-02 17:33:39 +0200 |
|
+++ pcreposix.h 2009-10-19 22:06:19 +0200 |
|
@@ -132,6 +132,12 @@ |
|
|
|
/* The functions */ |
|
|
|
+/* link-time symbol namespace conflict prevention */ |
|
+#define regcomp pcreposix_regcomp |
|
+#define regexec pcreposix_regexec |
|
+#define regerror pcreposix_regerror |
|
+#define regfree pcreposix_regfree |
|
+ |
|
PCREPOSIX_EXP_DECL int regcomp(regex_t *, const char *, int); |
|
PCREPOSIX_EXP_DECL int regexec(const regex_t *, const char *, size_t, |
|
regmatch_t *, int);
|
|
|