diff options
| author | Peter Stephenson <pws@users.sourceforge.net> | 2008-09-24 09:10:15 +0000 |
|---|---|---|
| committer | Peter Stephenson <pws@users.sourceforge.net> | 2008-09-24 09:10:15 +0000 |
| commit | 602cc2abe0397a0ad9309fc3306c3dc2b9300c91 (patch) | |
| tree | b8a6989d939ed735b3ebfed9e2744564cf0a9010 | |
| parent | 25737: remove dead code in ca_parse_line. (diff) | |
| download | zsh-602cc2abe0397a0ad9309fc3306c3dc2b9300c91.tar zsh-602cc2abe0397a0ad9309fc3306c3dc2b9300c91.tar.gz zsh-602cc2abe0397a0ad9309fc3306c3dc2b9300c91.tar.bz2 zsh-602cc2abe0397a0ad9309fc3306c3dc2b9300c91.tar.lz zsh-602cc2abe0397a0ad9309fc3306c3dc2b9300c91.tar.xz zsh-602cc2abe0397a0ad9309fc3306c3dc2b9300c91.tar.zst zsh-602cc2abe0397a0ad9309fc3306c3dc2b9300c91.zip | |
Rocky: 25734: typo
25739: warn about GPL in binary if libgdm is linked
| -rw-r--r-- | ChangeLog | 7 | ||||
| -rw-r--r-- | Test/B06fc.ztst | 2 | ||||
| -rw-r--r-- | configure.ac | 8 |
3 files changed, 15 insertions, 2 deletions
@@ -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 |
