Commit 3521def0 3521def033d76a41fcfc994fdd28a0287c6ba0ef by uid65697

Updated

1 parent 0dba79dd
2003-12-26 Sergey Poznyakoff
* COPYING: New file
* COPYING.LIB: Renamed to
* COPYING.LESSER: this
* Makefile.am: Updated
* README: Updated
* autogen.sh: Updated
* configure.ac: Fixes to work with automake 1.8/autoconf 2.59
* m4/db2.m4: Likewise
* m4/debug.m4: Likewise
* m4/getopt.m4: Likewise
* m4/gsasl.m4: Likewise
* m4/gssapi.m4: Likewise
* m4/guile.m4: Likewise
* m4/lib.m4: Likewise
* m4/mu_libobj.m4: Likewise
* m4/tls.m4: Likewise
* doc/texinfo/body.texi: Minor fixes.
* doc/texinfo/libsieve.texi: Likewise
2003-12-26 Sergey Poznyakoff
* examples/list.c: New sieve extension test.
* examples/spamd.c: Modified.
* examples/Makefile.am: Added list.c
......
......@@ -25,7 +25,7 @@ SUBDIRS = headers include m4 intl po lib testsuite mailbox libsieve doc \
mail sieve scripts libmu_scm guimb messages comsat readmsg \
mail.local mail.remote dotlock mh
EXTRA_DIST = COPYING.LIB
EXTRA_DIST = COPYING.LESSER
release:
$(MAKE) dist distdir=$(PACKAGE)-`date +"%Y%m%d"`
......
......@@ -16,7 +16,7 @@ the examples subdirectory or these other applications. All libraries
are licensed using the GNU LGPL. The documentation is licensed under
the GNU FDL, and everything else is licensed using the GNU GPL. The
complete texts of the corresponding licences are included in the files
COPYING.LIB, COPYING and doc/texinfo/COPYING.DOC.
COPYING.LESSER, COPYING and doc/texinfo/COPYING.DOC.
This software is part of the GNU Project and belongs to the Free Software
Foundation.
......
#!/bin/sh
# This trick forces automake to install COPYING
trap "mv $$.COPYING.LIB COPYING.LIB" 1 2 3 15
mv COPYING.LIB $$.COPYING.LIB
autoreconf -f -i -s
mv $$.COPYING.LIB COPYING.LIB
\ No newline at end of file
......