Liece works under following environment at least.
- - Emacs 20.6
- - XEmacs 21.2 with MULE extension
+ - Emacs 20.7
+ - XEmacs 21.4 or later
- This package uses following external libraries.
+ This package uses following libraries.
- APEL 10.2 or later (stands for - "A Portable Emacs Library")
ftp://ftp.m17n.org/pub/mule/apel/
- FLIM 1.12 or later
ftp://ftp.m17n.org/pub/mule/flim/
-
- If you does not have installed copy of above, please try to specify
- `--enable-apel' option at configure time.
- (After configuration, Liece will use local copy of APEL.)
* Quick installation
% ./configure
% make
% su
- Password: ultrasecret
+ Password:
# make install
If you are not able to become super-user, you may specify local
* Optional packages
Following packages are optional. If install script of this package
- found them, it would use various functionality provided in them.
+ found them, it would use various functionality provided by them.
custom
http://www.dina.kvl.dk/~abraham/custom/
AC_PREREQ(2.13)
AM_INIT_AUTOMAKE(liece, 2.0.0)
-AM_PATH_LISPDIR
-
AC_PROG_CC
AC_ISC_POSIX
AC_PROG_INSTALL
DEFS = -I$(srcdir) -I$(top_srcdir) $(CFLAGS) @DEFS@
-LIBS = @LIBOBJS@
-EXTRA_DIST = getopt.c getopt.h getopt1.c
+LIBOBJS = @LIBOBJS@
+EXTRA_DIST = basename.c getopt.c getopt.h getopt1.c
CLEANFILES = ldcc ltcp
bin_PROGRAMS = ldcc ltcp
ltcp_SOURCES = tcp.c
+ltcp_LDADD = $(LIBOBJS)
ldcc_SOURCES = dcc.c
+ldcc_LDADD = $(LIBOBJS)
package: all
install-package: package install
$(TEXI_XML) $*.txml
-recode -df utf8..texi < $@ > tmp
mv tmp $@
+
+2002-02-12 Daiki Ueno <ueno@unixuser.org>
+
+ * liece-modules.el (liece-modules-to-compile): Add `liece-coding'.
+
+ * liece-coding.el (liece-mime-charset-for-write): Use
+ default-mime-charset-for-write as its default.
+ (liece-mime-charset-for-read): Use default-mime-charset as its
+ default.
+
2002-01-28 Daiki Ueno <ueno@unixuser.org>
* liece-dcc.el (liece-dcc-start-process): New function.
-EXTRA_DIST = $(wildcard *.el) Makefile.lisp
+EXTRA_DIST = $(wildcard *.el) Makefile.lisp liece.xpm liece.xbm
DISTCLEANFILES = liece-setup.el
all: elc
:prefix "liece-"
:group 'liece)
-(defcustom liece-mime-charset-for-write 'iso-2022-jp-2
+(defcustom liece-mime-charset-for-write
+ (if (mime-charset-p 'iso-2022-jp-2)
+ 'iso-2022-jp-2
+ default-mime-charset-for-write)
"Charset used in any transferred messages."
:type 'mime-charset
:group 'liece-coding)
-(defcustom liece-mime-charset-for-read 'x-ctext
+(defcustom liece-mime-charset-for-read
+ (if (mime-charset-p 'x-ctext)
+ 'x-ctext
+ default-mime-charset)
"Charset used in any transferred messages."
:type 'mime-charset
:group 'liece-coding)
liece-globals
liece-inlines
liece-filter
+ liece-coding
liece-dcc
liece-menu
liece-000
(if (fboundp 'set-face-stipple)
(push 'bitmap-stipple liece-modules-to-compile))
-(if (featurep 'mule)
- (push 'liece-coding liece-modules-to-compile))
-
(require 'pccl)
-
(unless-broken ccl-usable
(push 'liece-q-ccl liece-modules-to-compile))