about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2008-09-24 09:10:15 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2008-09-24 09:10:15 +0000
commit602cc2abe0397a0ad9309fc3306c3dc2b9300c91 (patch)
treeb8a6989d939ed735b3ebfed9e2744564cf0a9010
parent7ff2b823a9906bec36479335a2170e70d27c4029 (diff)
downloadzsh-602cc2abe0397a0ad9309fc3306c3dc2b9300c91.tar.gz
zsh-602cc2abe0397a0ad9309fc3306c3dc2b9300c91.tar.xz
zsh-602cc2abe0397a0ad9309fc3306c3dc2b9300c91.zip
Rocky: 25734: typo
25739: warn about GPL in binary if libgdm is linked
-rw-r--r--ChangeLog7
-rw-r--r--Test/B06fc.ztst2
-rw-r--r--configure.ac8
3 files changed, 15 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9a4a12b58..6acf6b46c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-09-24  Peter Stephenson  <pws@csr.com>
+
+	* 25739: configure.ac: warn about GPL in binary if libgdm
+	is linked.
+
+	* Rocky Bernstein: 25734: Test/B06fc.ztst: typo.
+
 2008-09-23  Clint Adams  <clint@zsh.org>
 
 	* 25737: Src/Zle/computil.c: remove dead code in ca_parse_line.
diff --git a/Test/B06fc.ztst b/Test/B06fc.ztst
index 6195fd6ab..5ac41ebd2 100644
--- a/Test/B06fc.ztst
+++ b/Test/B06fc.ztst
@@ -7,5 +7,5 @@
  
 %test
   $ZTST_testdir/../Src/zsh ./fcl
-1:Checking that fc -l foo doesn't core dump history is empty
+1:Checking that fc -l foo doesn't core dump when history is empty
 ?./fcl:fc:1: event not found: foo
diff --git a/configure.ac b/configure.ac
index 36f42d31c..d2efbb1d8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2934,4 +2934,10 @@ fi
 echo "See config.modules for installed modules and functions.
 "
 
-
+case x$LIBS in
+  (*-lgdbm*)
+  echo "WARNING: zsh has been linked against libgdbm.
+This means the binary is covered by the GNU General Public License.
+This does not affect the source code."
+  ;;
+esac