unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Windows changes not in NEWS
@ 2011-04-28 18:57 Juanma Barranquero
  2011-05-02 18:03 ` Ted Zlatanov
  0 siblings, 1 reply; 9+ messages in thread
From: Juanma Barranquero @ 2011-04-28 18:57 UTC (permalink / raw)
  To: Emacs developers; +Cc: Teodor Zlatanov, Ben Key

These changes

2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>

        * configure.bat: New options --without-gnutls and --lib, new build
        variable USER_LIBS, automatically detect GnuTLS.  Copies the PNG
        library setup with trivial modifications. [...]

2011-04-15  Ben Key  <bkey76@gmail.com>

        * configure.bat: Modified the code that parses the --cflags and
        --ldflags options to support parameters that include the =
        character as long as they are enclosed in quotes. [....]

should be documented in the "* Changes in Emacs 24.1 on non-free
operating systems" section of etc/NEWS.

    Juanma



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Windows changes not in NEWS
  2011-04-28 18:57 Windows changes not in NEWS Juanma Barranquero
@ 2011-05-02 18:03 ` Ted Zlatanov
  2011-05-03  0:52   ` Ted Zlatanov
  0 siblings, 1 reply; 9+ messages in thread
From: Ted Zlatanov @ 2011-05-02 18:03 UTC (permalink / raw)
  To: emacs-devel

On Thu, 28 Apr 2011 20:57:19 +0200 Juanma Barranquero <lekktu@gmail.com> wrote: 

JB> These changes
JB> 2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>

JB>         * configure.bat: New options --without-gnutls and --lib, new build
JB>         variable USER_LIBS, automatically detect GnuTLS.  Copies the PNG
JB>         library setup with trivial modifications. [...]
...
JB> should be documented in the "* Changes in Emacs 24.1 on non-free
JB> operating systems" section of etc/NEWS.

I will write that plus the general GnuTLS NEWS.

Ted




^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Windows changes not in NEWS
  2011-05-02 18:03 ` Ted Zlatanov
@ 2011-05-03  0:52   ` Ted Zlatanov
  2011-05-03  1:14     ` Ted Zlatanov
  0 siblings, 1 reply; 9+ messages in thread
From: Ted Zlatanov @ 2011-05-03  0:52 UTC (permalink / raw)
  To: emacs-devel

[-- Attachment #1: Type: text/plain, Size: 726 bytes --]

On Mon, 02 May 2011 13:03:17 -0500 Ted Zlatanov <tzz@lifelogs.com> wrote: 

TZ> On Thu, 28 Apr 2011 20:57:19 +0200 Juanma Barranquero <lekktu@gmail.com> wrote: 
JB> These changes
JB> 2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>

JB> * configure.bat: New options --without-gnutls and --lib, new build
JB> variable USER_LIBS, automatically detect GnuTLS.  Copies the PNG
JB> library setup with trivial modifications. [...]
TZ> ...
JB> should be documented in the "* Changes in Emacs 24.1 on non-free
JB> operating systems" section of etc/NEWS.

TZ> I will write that plus the general GnuTLS NEWS.

Hm, I'm getting Bazaar lock errors so I'll just post my NEWS patch
here.  Please review and commit if you think it's OK.

Ted


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: gnutls-news.patch --]
[-- Type: text/x-diff, Size: 1752 bytes --]

=== modified file 'etc/ChangeLog'
--- etc/ChangeLog	2011-05-02 22:53:34 +0000
+++ etc/ChangeLog	2011-05-03 00:45:58 +0000
@@ -1,3 +1,9 @@
+2011-05-03  Teodor Zlatanov  <tzz@lifelogs.com>
+
+	* NEWS: Mention new library gnutls.el and explain GnuTLS
+	functionality.  Mention new configure.bat options --without-gnutls
+	and --lib for W32.
+
 2011-05-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
 	* NEWS: Mention `url-retrieve-queue', (:file "file") and

=== modified file 'etc/NEWS'
--- etc/NEWS	2011-05-02 22:53:34 +0000
+++ etc/NEWS	2011-05-03 00:43:31 +0000
@@ -903,7 +903,21 @@
 
 FIXME: These should be front-ended by xml.el.
 
-** FIXME GnuTLS
+** GnuTLS
+
+*** Emacs can be compiled with libgnutls support
+This is the default.  You will then be able to use the functionality
+in gnutls.el, namely the `open-gnutls-stream' and `gnutls-negotiate'
+functions.  It's easiest to use these functions through
+`open-network-stream' because it can upgrade connections through
+STARTTLS opportunistically or use plain SSL, depending on your needs.
+
+Only versions 2.8.x and higher or GnuTLS have been tested.
+
+*** gnutls-log-level
+Set `gnutls-log-level' higher than 0 to get debug output.  1 is for
+important messages, 2 is for debug data, and higher numbers are as per
+the GnuTLS logging conventions.  The output is in *Messages*.
 
 ** Isearch
 
@@ -931,6 +945,12 @@
 ** New configure.bat option --distfiles to specify files to be
 included in binary distribution.
 
+** New configure.bat option --without-gnutls to disable automatic
+GnuTLS detection.
+
+** New configure.bat option --lib for general library linkage, works
+with the USER_LIBS build variable.
+
 ** New make target `dist' to create binary distribution for MS Windows.
 
 \f


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Windows changes not in NEWS
  2011-05-03  0:52   ` Ted Zlatanov
@ 2011-05-03  1:14     ` Ted Zlatanov
  2011-05-03  1:28       ` Juanma Barranquero
  0 siblings, 1 reply; 9+ messages in thread
From: Ted Zlatanov @ 2011-05-03  1:14 UTC (permalink / raw)
  To: emacs-devel

On Mon, 02 May 2011 19:52:47 -0500 Ted Zlatanov <tzz@lifelogs.com> wrote: 

TZ> Hm, I'm getting Bazaar lock errors so I'll just post my NEWS patch
TZ> here.  Please review and commit if you think it's OK.

Now it worked.  OK, just take a look at revision 104084.  Sorry for the
noise.

Ted




^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Windows changes not in NEWS
  2011-05-03  1:14     ` Ted Zlatanov
@ 2011-05-03  1:28       ` Juanma Barranquero
  2011-05-03  1:35         ` Ted Zlatanov
  0 siblings, 1 reply; 9+ messages in thread
From: Juanma Barranquero @ 2011-05-03  1:28 UTC (permalink / raw)
  To: Ted Zlatanov; +Cc: emacs-devel

2011/5/3 Ted Zlatanov <tzz@lifelogs.com>:

> Now it worked.  OK, just take a look at revision 104084.

I'm a bad judge of docs, but it seems fine.

    Juanma



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Windows changes not in NEWS
  2011-05-03  1:28       ` Juanma Barranquero
@ 2011-05-03  1:35         ` Ted Zlatanov
  2011-05-03  1:40           ` Juanma Barranquero
  0 siblings, 1 reply; 9+ messages in thread
From: Ted Zlatanov @ 2011-05-03  1:35 UTC (permalink / raw)
  To: emacs-devel

On Tue, 3 May 2011 03:28:03 +0200 Juanma Barranquero <lekktu@gmail.com> wrote: 

JB> 2011/5/3 Ted Zlatanov <tzz@lifelogs.com>:
>> Now it worked.  OK, just take a look at revision 104084.

JB> I'm a bad judge of docs, but it seems fine.

I'm not sure if it should mention where to get the GnuTLS DLLs, or if
that's for the binary packager to figure out.

Ted




^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Windows changes not in NEWS
  2011-05-03  1:35         ` Ted Zlatanov
@ 2011-05-03  1:40           ` Juanma Barranquero
  2011-05-03 18:48             ` Sean Sieger
  2011-05-04  1:47             ` Ted Zlatanov
  0 siblings, 2 replies; 9+ messages in thread
From: Juanma Barranquero @ 2011-05-03  1:40 UTC (permalink / raw)
  To: Ted Zlatanov; +Cc: emacs-devel

2011/5/3 Ted Zlatanov <tzz@lifelogs.com>:

> I'm not sure if it should mention where to get the GnuTLS DLLs, or if
> that's for the binary packager to figure out.

We're not going to distribute the GnuTLS DLLs, so it's something to
mention in nt/INSTALL.

    Juanma



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Windows changes not in NEWS
  2011-05-03  1:40           ` Juanma Barranquero
@ 2011-05-03 18:48             ` Sean Sieger
  2011-05-04  1:47             ` Ted Zlatanov
  1 sibling, 0 replies; 9+ messages in thread
From: Sean Sieger @ 2011-05-03 18:48 UTC (permalink / raw)
  To: emacs-devel

Juanma Barranquero <lekktu@gmail.com> writes:

    We're not going to distribute the GnuTLS DLLs, so it's something to
    mention in nt/INSTALL.

Thank you, answers a question that I'd just formulated.




^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Windows changes not in NEWS
  2011-05-03  1:40           ` Juanma Barranquero
  2011-05-03 18:48             ` Sean Sieger
@ 2011-05-04  1:47             ` Ted Zlatanov
  1 sibling, 0 replies; 9+ messages in thread
From: Ted Zlatanov @ 2011-05-04  1:47 UTC (permalink / raw)
  To: emacs-devel

On Tue, 3 May 2011 03:40:12 +0200 Juanma Barranquero <lekktu@gmail.com> wrote: 

JB> 2011/5/3 Ted Zlatanov <tzz@lifelogs.com>:
>> I'm not sure if it should mention where to get the GnuTLS DLLs, or if
>> that's for the binary packager to figure out.

JB> We're not going to distribute the GnuTLS DLLs, so it's something to
JB> mention in nt/INSTALL.

...which is already the case :)

Thanks
Ted




^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2011-05-04  1:47 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-04-28 18:57 Windows changes not in NEWS Juanma Barranquero
2011-05-02 18:03 ` Ted Zlatanov
2011-05-03  0:52   ` Ted Zlatanov
2011-05-03  1:14     ` Ted Zlatanov
2011-05-03  1:28       ` Juanma Barranquero
2011-05-03  1:35         ` Ted Zlatanov
2011-05-03  1:40           ` Juanma Barranquero
2011-05-03 18:48             ` Sean Sieger
2011-05-04  1:47             ` Ted Zlatanov

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).