all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* gnutls and Emacs on Windows
@ 2011-02-08  9:56 Gary
  2011-02-08 10:32 ` Eli Zaretskii
  2011-02-09 21:09 ` Oleksandr Gavenko
  0 siblings, 2 replies; 4+ messages in thread
From: Gary @ 2011-02-08  9:56 UTC (permalink / raw)
  To: help-gnu-emacs

When using jabberEl in my normal emacs (Cygwin nox build) I see the
following when I (successfully) connect:
,----
| Opening TLS connection to `talk.google.com'...
| Opening TLS connection with `gnutls-cli -p 5223 talk.google.com'...done
| Opening TLS connection to `talk.google.com'...done
`----

but the same config in the Windows build (see sig) produces:
,----
| Opening TLS connection to `talk.google.com'...
| Opening TLS connection with `gnutls-cli -p 5223 talk.google.com'...failed
| Opening TLS connection with `gnutls-cli -p 5223 talk.google.com --protocols ssl3'...failed
| Opening TLS connection with `openssl s_client -connect talk.google.com:5223 -no_ssl2 -ign_eof'...failed
| Opening TLS connection to `talk.google.com'...failed
`----

I suspect I need to install some other gnutls build or something like
that?

Can I use the already installed Cygwin gnutls "stuff"? 

Is there an alternative to gnutls if none of that works (I think I can
use openssl, but haven't even looked at how that might work with the
Windows build yet).

Has anyone come up against gnutls problems using the Windows binary and
can point me in the right direction?

-- 
Gary        Please do NOT send me 'courtesy' replies off-list.
GNU Emacs 23.2.1 (i386-mingw-nt5.1.2600)




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

* Re: gnutls and Emacs on Windows
  2011-02-08  9:56 gnutls and Emacs on Windows Gary
@ 2011-02-08 10:32 ` Eli Zaretskii
  2011-02-09  9:16   ` Gary
  2011-02-09 21:09 ` Oleksandr Gavenko
  1 sibling, 1 reply; 4+ messages in thread
From: Eli Zaretskii @ 2011-02-08 10:32 UTC (permalink / raw)
  To: help-gnu-emacs

> From: Gary <help-gnu-emacs@garydjones.name>
> Date: Tue, 08 Feb 2011 10:56:14 +0100
> 
> Has anyone come up against gnutls problems using the Windows binary and
> can point me in the right direction?

See this bug report:

  http://lists.gnu.org/archive/html/bug-gnu-emacs/2011-01/msg00130.html

(The thread's last message is in February; or look in the bug database
directly via http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7789.)

Bottom line seems to be: it's possible, but tricky.



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

* Re: gnutls and Emacs on Windows
  2011-02-08 10:32 ` Eli Zaretskii
@ 2011-02-09  9:16   ` Gary
  0 siblings, 0 replies; 4+ messages in thread
From: Gary @ 2011-02-09  9:16 UTC (permalink / raw)
  To: help-gnu-emacs

Eli Zaretskii wrote:

>   http://lists.gnu.org/archive/html/bug-gnu-emacs/2011-01/msg00130.html
>
> (The thread's last message is in February; or look in the bug database
> directly via http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7789.)
>
> Bottom line seems to be: it's possible, but tricky.

Ouch. Okay, thanks. I'm not that bothered by it TBH, since I almost
always use the Cygwin version. Still a shame though.




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

* Re: gnutls and Emacs on Windows
  2011-02-08  9:56 gnutls and Emacs on Windows Gary
  2011-02-08 10:32 ` Eli Zaretskii
@ 2011-02-09 21:09 ` Oleksandr Gavenko
  1 sibling, 0 replies; 4+ messages in thread
From: Oleksandr Gavenko @ 2011-02-09 21:09 UTC (permalink / raw)
  To: help-gnu-emacs

On 2011-02-08 11:56, Gary wrote:
> When using jabberEl in my normal emacs (Cygwin nox build) I see the
> following when I (successfully) connect:
> ,----
> | Opening TLS connection to `talk.google.com'...
> | Opening TLS connection with `gnutls-cli -p 5223 talk.google.com'...done
> | Opening TLS connection to `talk.google.com'...done
> `----
>
> but the same config in the Windows build (see sig) produces:
> ,----
> | Opening TLS connection to `talk.google.com'...
> | Opening TLS connection with `gnutls-cli -p 5223 talk.google.com'...failed
> | Opening TLS connection with `gnutls-cli -p 5223 talk.google.com --protocols ssl3'...failed
> | Opening TLS connection with `openssl s_client -connect talk.google.com:5223 -no_ssl2 -ign_eof'...failed
> | Opening TLS connection to `talk.google.com'...failed
> `----
>
> I suspect I need to install some other gnutls build or something like
> that?
>
> Can I use the already installed Cygwin gnutls "stuff"?
>
> Is there an alternative to gnutls if none of that works (I think I can
> use openssl, but haven't even looked at how that might work with the
> Windows build yet).
>
> Has anyone come up against gnutls problems using the Windows binary and
> can point me in the right direction?
>
I spend a lot of time to make work jabber.el with GTalk.

Native/Cygwin 'openssl' have hard resolve problem with Emacs
(for me xD, don't remember what).

So I try 'gnutls'. Before get working setup I try different native
build of 'gnutls' without happiness with a lot of weeks of tries.
Look for data in my ask for help :)

   http://thread.gmane.org/gmane.emacs.jabber.general/923/focus=940

On emacswiki page I read about success with Cygwin 'gnutls'.
And I decide remove all hardly unite in friendship native ports
and install Cygwin. And all work as on Linux!

So I recommend use Cygwin instead of learning GDB!

-- 
Best regards!




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

end of thread, other threads:[~2011-02-09 21:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-08  9:56 gnutls and Emacs on Windows Gary
2011-02-08 10:32 ` Eli Zaretskii
2011-02-09  9:16   ` Gary
2011-02-09 21:09 ` Oleksandr Gavenko

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.