about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBart Schaefer <barts@users.sourceforge.net>2001-07-06 08:32:14 +0000
committerBart Schaefer <barts@users.sourceforge.net>2001-07-06 08:32:14 +0000
commita45ff6cdb7bd3e9d9f690892a80f30d50367d051 (patch)
tree0a952a1239981fc3651265c14d859d183115ad91
parent55d4ee8c6dbe1e459c973cca32c1a2add1ebd41e (diff)
downloadzsh-a45ff6cdb7bd3e9d9f690892a80f30d50367d051.tar.gz
zsh-a45ff6cdb7bd3e9d9f690892a80f30d50367d051.tar.xz
zsh-a45ff6cdb7bd3e9d9f690892a80f30d50367d051.zip
Avoid static link of pcre module.
-rw-r--r--ChangeLog28
-rw-r--r--Src/Modules/pcre.mdd2
2 files changed, 16 insertions, 14 deletions
diff --git a/ChangeLog b/ChangeLog
index 39a4ae592..4c0b9d0ee 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-07-06  Bart Schaefer  <schaefer@zsh.org>
+
+	* 15271: Src/Modules/pcre.mdd: Default to dynamic linkage only, as
+	the pcre library is unlikely to be available.
+
 2001-07-06  Peter Stephenson  <pws@pwstephenson.fsnet.co.uk>
 
 	* 15266: Src/glob.c, Doc/Zsh/expn.yo: ${(S)...%%...} matches
@@ -22,18 +27,16 @@
 
 2001-07-03  Clint Adams  <clint@zsh.org>
 
-	* 15242: Doc/Zsh/mod_pcre.yo,
-	Src/Modules/pcre.c: set $match
-	instead of pparams.  pcre_match -a
-	sets specified array instead of $match.
+	* 15242: Doc/Zsh/mod_pcre.yo, Src/Modules/pcre.c: set $match
+	instead of pparams.  pcre_match -a sets specified array instead of
+	$match.
 
-	* 15234: Doc/Zsh/mod_pcre.yo: describe
-	behavior introduced by 15228.
+	* 15234: Doc/Zsh/mod_pcre.yo: describe behavior introduced by
+	15228.
 
-	* 15228: zshconfig.ac, Src/Modules/pcre.c:
-	switch AC_CHECK_LIB to AC_SEARCH_LIBS for pcre.
-	Have pcre_match set positional parameters
-	with the contents of capture buffers.
+	* 15228: zshconfig.ac, Src/Modules/pcre.c: switch AC_CHECK_LIB to
+	AC_SEARCH_LIBS for pcre.  Have pcre_match set positional
+	parameters with the contents of capture buffers.
 
 2001-07-03  Clint Adams  <clint@zsh.org>
 
@@ -46,9 +49,8 @@
 
 2001-07-03  Clint Adams  <clint@zsh.org>
 
-	* unposted: Doc/Zsh/.distfiles,
-	Functions/Example/.distfiles, Src/Modules/.distfiles:
-	update distfiles for 15211.
+	* unposted: Doc/Zsh/.distfiles, Functions/Example/.distfiles,
+	Src/Modules/.distfiles: update distfiles for 15211.
 
 2001-07-02  Bart Schaefer  <schaefer@zsh.org>
 
diff --git a/Src/Modules/pcre.mdd b/Src/Modules/pcre.mdd
index d6290dd1b..b32e2c67a 100644
--- a/Src/Modules/pcre.mdd
+++ b/Src/Modules/pcre.mdd
@@ -1,5 +1,5 @@
 name=zsh/pcre
-link=either
+link=dynamic
 load=no
 
 autobins="pcre_compile pcre_study pcre_match"