summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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