070f9184ca
Release 8.13 16-Aug-2011 ------------------------ This is mainly a bug-fix release. There has been a lot of internal refactoring. The Unicode tables have been updated. The only new feature in the library is the passing of *MARK information to callouts. Some additions have been made to pcretest to make testing easier and more comprehensive. There is a new option for pcregrep to adjust its internal buffer size.
29 lines
1.1 KiB
Text
29 lines
1.1 KiB
Text
$NetBSD: patch-ab,v 1.6 2011/08/22 12:58:08 wiz Exp $
|
|
|
|
Remove a feeble attempt at providing ABI compatibility for the C++ portion
|
|
of the PCRE library. Relying on the C++ compiler to crunch symbols in a
|
|
particular way is platform dependent at best, and the comments indicate
|
|
that this was done for OSX.
|
|
Also, the test misfired on SunOS leading to breakage (PR pkg/38768).
|
|
|
|
--- configure.orig 2008-05-07 18:22:58.000000000 +0200
|
|
+++ configure
|
|
@@ -20901,6 +20901,8 @@ ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS
|
|
ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|
ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
|
|
|
|
+# XXX pkgsrc
|
|
+if false; then
|
|
|
|
# Older versions of pcre defined pcrecpp::no_arg, but in new versions
|
|
# it's called pcrecpp::RE::no_arg. For backwards ABI compatibility,
|
|
@@ -20968,6 +20970,9 @@ rm -f core conftest.err conftest.$ac_obj
|
|
done
|
|
LDFLAGS="$OLD_LDFLAGS"
|
|
|
|
+# XXX pkgsrc
|
|
+fi
|
|
+
|
|
# We could be more clever here, given we're doing AC_SUBST with this
|
|
# (eg set a var to be the name of the include file we want). But we're not
|
|
# so it's easy to change back to 'regular' autoconf vars if we needed to.
|