source:
pkg/raul/main/pcre3/trunk/debian/patches/fix_soname.patch
@
7357
| Revision 7357, 5.1 KB checked in by alanbach-guest, 2 years ago (diff) |
|---|
-
configure
diff -urN pcre-8.12//configure pcre-8.12.new//configure
old new 15819 15819 # (Note: The libpcre*_version bits are m4 variables, assigned above) 15820 15820 15821 15821 EXTRA_LIBPCRE_LDFLAGS="$EXTRA_LIBPCRE_LDFLAGS \ 15822 $NO_UNDEFINED -version-info 0:1:0"15822 $NO_UNDEFINED -version-info 15:1:12" 15823 15823 15824 15824 EXTRA_LIBPCREPOSIX_LDFLAGS="$EXTRA_LIBPCREPOSIX_LDFLAGS \ 15825 $NO_UNDEFINED -version-info 0:0:0"15825 $NO_UNDEFINED -version-info 15:1:12" 15826 15826 15827 15827 EXTRA_LIBPCRECPP_LDFLAGS="$EXTRA_LIBPCRECPP_LDFLAGS \ 15828 15828 $NO_UNDEFINED -version-info 0:0:0 \ -
doc/pcreapi.3
diff -urN pcre-8.12//doc/pcreapi.3 pcre-8.12.new//doc/pcreapi.3
old new 96 96 .PP 97 97 .B int pcre_config(int \fIwhat\fP, void *\fIwhere\fP); 98 98 .PP 99 .B c har *pcre_version(void);99 .B const char *pcre_version(void); 100 100 .PP 101 101 .B void *(*pcre_malloc)(size_t); 102 102 .PP -
doc/pcregrep.1
diff -urN pcre-8.12//doc/pcregrep.1 pcre-8.12.new//doc/pcregrep.1
old new 3 3 pcregrep - a grep with Perl-compatible regular expressions. 4 4 .SH SYNOPSIS 5 5 .B pcregrep [options] [long options] [pattern] [path1 path2 ...] 6 .B zpcregrep [options] [long options] [pattern] [file1 file2 ...] 6 7 . 7 8 .SH DESCRIPTION 8 9 .rs … … 75 76 If the \fBLC_ALL\fP or \fBLC_CTYPE\fP environment variable is set, 76 77 \fBpcregrep\fP uses the value to set a locale when calling the PCRE library. 77 78 The \fB--locale\fP option can be used to override this. 79 .P 80 \fBzpcregrep\fR is a wrapper script that allows pcregrep to work on 81 gzip compressed files. 78 82 . 79 83 .SH "SUPPORT FOR COMPRESSED FILES" 80 84 .rs … … 530 534 .rs 531 535 .sp 532 536 Exit status is 0 if any matches were found, 1 if no matches were found, and 2 533 for syntax errors and non-existent or inac essible files (even if matches were537 for syntax errors and non-existent or inaccessible files (even if matches were 534 538 found in other files) or too many matching errors. Using the \fB-s\fP option to 535 539 suppress error messages about inaccessble files does not affect the return 536 540 code. -
doc/pcre_version.3
diff -urN pcre-8.12//doc/pcre_version.3 pcre-8.12.new//doc/pcre_version.3
old new 7 7 .B #include <pcre.h> 8 8 .PP 9 9 .SM 10 .B c har *pcre_version(void);10 .B const char *pcre_version(void); 11 11 . 12 12 .SH DESCRIPTION 13 13 .rs -
pcrecpp.cc
diff -urN pcre-8.12//pcrecpp.cc pcre-8.12.new//pcrecpp.cc
old new 79 79 // If the user doesn't ask for any options, we just use this one 80 80 static RE_Options default_options; 81 81 82 // PCRE6.x compatible API 83 void RE::Init(const char *c_pat, const RE_Options* options) { 84 const string cxx_pat(c_pat); 85 Init(cxx_pat, options); 86 } 87 82 88 void RE::Init(const string& pat, const RE_Options* options) { 83 89 pattern_ = pat; 84 90 if (options == NULL) { -
pcrecpp.h
diff -urN pcre-8.12//pcrecpp.h pcre-8.12.new//pcrecpp.h
old new 658 658 private: 659 659 660 660 void Init(const string& pattern, const RE_Options* options); 661 // Old version from PCRE 6.x, for compatibility 662 void Init(const char *pattern, const RE_Options* options); 661 663 void Cleanup(); 662 664 663 665 // Match against "text", filling in "vec" (up to "vecsize" * 2/3) with -
pcreposix.h
diff -urN pcre-8.12//pcreposix.h pcre-8.12.new//pcreposix.h
old new 133 133 134 134 /* The functions */ 135 135 136 PCREPOSIX_EXP_DECL int regcomp(regex_t *, const char *, int);137 PCREPOSIX_EXP_DECL int regexec(const regex_t *, const char *, size_t,136 PCREPOSIX_EXP_DECL int pcreposix_regcomp(regex_t *, const char *, int); 137 PCREPOSIX_EXP_DECL int pcreposix_regexec(const regex_t *, const char *, size_t, 138 138 regmatch_t *, int); 139 PCREPOSIX_EXP_DECL size_t regerror(int, const regex_t *, char *, size_t);140 PCREPOSIX_EXP_DECL void regfree(regex_t *);139 PCREPOSIX_EXP_DECL size_t pcreposix_regerror(int, const regex_t *, char *, size_t); 140 PCREPOSIX_EXP_DECL void pcreposix_regfree(regex_t *); 141 141 142 142 #ifdef __cplusplus 143 143 } /* extern "C" */ 144 144 #endif 145 145 146 #define regcomp pcreposix_regcomp 147 #define regexec pcreposix_regexec 148 #define regerror pcreposix_regerror 149 #define regfree pcreposix_regfree 150 146 151 #endif /* End of pcreposix.h */ -
pcretest.c
diff -urN pcre-8.12//pcretest.c pcre-8.12.new//pcretest.c
old new 1175 1175 int main(int argc, char **argv) 1176 1176 { 1177 1177 FILE *infile = stdin; 1178 int options = 0;1178 long int options = 0; 1179 1179 int study_options = 0; 1180 1180 int default_find_match_limit = FALSE; 1181 1181 int op = 1;
Note: See TracBrowser
for help on using the repository browser.


