Apply SSL patch.
[elisp/wanderlust.git] / utils / sasl / README.en
1 README: SASL library for Emacs.
2 =========================================================
3
4 How to compile elisp files:
5
6   cd lisp
7   emacs --batch --no-init-file --no-site-file \
8     --eval '(setq load-path (cons "." load-path))' \
9     --funcall batch-byte-compile *.el
10
11 How to compile DL modules (Emacs 20.3 and later with DL patch):
12
13   cd src
14   gcc -shared -nostdlib -fPIC -I${EMACSSRCDIR}/src -o md5.so md5-dl.c -lcrypto
15   gcc -shared -nostdlib -fPIC -I${EMACSSRCDIR}/src -o sha1.so sha1-dl.c -lcrypto
16
17   Current version of DL modules require libcrypto library from OpenSSL.