diff options
| author | Ted Zlatanov | 2011-05-02 19:48:07 -0500 |
|---|---|---|
| committer | Ted Zlatanov | 2011-05-02 19:48:07 -0500 |
| commit | e2574f2c8e9e080f5f9d834c417cc1318df4e865 (patch) | |
| tree | 5bfbfd62b23f0e1f1a9a3994a1c68eaacee101c1 | |
| parent | 7deebf1b716bd7124e33f81d2782acac8d9a6164 (diff) | |
| download | emacs-e2574f2c8e9e080f5f9d834c417cc1318df4e865.tar.gz emacs-e2574f2c8e9e080f5f9d834c417cc1318df4e865.zip | |
Document new GnuTLS additions for general and W32 use.
* NEWS: Mention new library gnutls.el and explain GnuTLS
functionality. Mention new configure.bat options --without-gnutls
and --lib for W32.
| -rw-r--r-- | etc/ChangeLog | 6 | ||||
| -rw-r--r-- | etc/NEWS | 22 |
2 files changed, 27 insertions, 1 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog index 7502bf71e91..f7e40aa2c67 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2011-05-03 Teodor Zlatanov <tzz@lifelogs.com> | ||
| 2 | |||
| 3 | * NEWS: Mention new library gnutls.el and explain GnuTLS | ||
| 4 | functionality. Mention new configure.bat options --without-gnutls | ||
| 5 | and --lib for W32. | ||
| 6 | |||
| 1 | 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org> | 7 | 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 2 | 8 | ||
| 3 | * NEWS: Mention `url-retrieve-queue', (:file "file") and | 9 | * NEWS: Mention `url-retrieve-queue', (:file "file") and |
| @@ -903,7 +903,21 @@ Emacs Lisp parse tree. | |||
| 903 | 903 | ||
| 904 | FIXME: These should be front-ended by xml.el. | 904 | FIXME: These should be front-ended by xml.el. |
| 905 | 905 | ||
| 906 | ** FIXME GnuTLS | 906 | ** GnuTLS |
| 907 | |||
| 908 | *** Emacs can be compiled with libgnutls support | ||
| 909 | This is the default. You will then be able to use the functionality | ||
| 910 | in gnutls.el, namely the `open-gnutls-stream' and `gnutls-negotiate' | ||
| 911 | functions. It's easiest to use these functions through | ||
| 912 | `open-network-stream' because it can upgrade connections through | ||
| 913 | STARTTLS opportunistically or use plain SSL, depending on your needs. | ||
| 914 | |||
| 915 | Only versions 2.8.x and higher or GnuTLS have been tested. | ||
| 916 | |||
| 917 | *** gnutls-log-level | ||
| 918 | Set `gnutls-log-level' higher than 0 to get debug output. 1 is for | ||
| 919 | important messages, 2 is for debug data, and higher numbers are as per | ||
| 920 | the GnuTLS logging conventions. The output is in *Messages*. | ||
| 907 | 921 | ||
| 908 | ** Isearch | 922 | ** Isearch |
| 909 | 923 | ||
| @@ -931,6 +945,12 @@ runtime checks. | |||
| 931 | ** New configure.bat option --distfiles to specify files to be | 945 | ** New configure.bat option --distfiles to specify files to be |
| 932 | included in binary distribution. | 946 | included in binary distribution. |
| 933 | 947 | ||
| 948 | ** New configure.bat option --without-gnutls to disable automatic | ||
| 949 | GnuTLS detection. | ||
| 950 | |||
| 951 | ** New configure.bat option --lib for general library linkage, works | ||
| 952 | with the USER_LIBS build variable. | ||
| 953 | |||
| 934 | ** New make target `dist' to create binary distribution for MS Windows. | 954 | ** New make target `dist' to create binary distribution for MS Windows. |
| 935 | 955 | ||
| 936 | 956 | ||