On Wed, 13 Dec 2006 20:32, [EMAIL PROTECTED] said:
> bajor:~# gpg --recv-keys 7EF7FFF4276981F4
> gpg: directory `/root/.gnupg' created
> gpg: can't open `/gnupg/options.skel': No such file or directory
That is known. I thought Debian had a workaround ;-). The way I
solved it is by a larger change to the configuration system which is
unlikely what you want to use that after the freeze. I guess locale
won't work either.
I have not investigated it but I guess it is a regression due to the
use of autoconf 2.60 instead of 2.59. The culprit is the way the
g10defs.h file is and has always been created.
I would call a non-working locale RC. However I have not tested the
Debian version (I use Sid but obviously use vanilla builds of gpg).
BTW, there is also another bug related to keyservers and proxies. I have
attached a fix for that problem against 1.4.6
Shalom-Salam,
Werner
2006-12-14 Werner Koch <[EMAIL PROTECTED]>
* http.c (http_wait_response): No more shutdown. Fixes bug#739.
--- util/http.c (revision 4377)
+++ util/http.c (working copy)
@@ -212,8 +212,12 @@
iobuf_ioctl (hd->fp_write, 1, 1, NULL); /* keep the socket open */
iobuf_close (hd->fp_write);
hd->fp_write = NULL;
- if ( !(hd->flags & HTTP_FLAG_NO_SHUTDOWN) )
- shutdown( hd->sock, 1 );
+ /* We do not want the shutdown code anymore. It used to be there
+ to support old versions of pksd. These versions are anyway
+ unusable and the latest releases haven been fixed to properly
+ handle HTTP 1.0. */
+ /* if ( !(hd->flags & HTTP_FLAG_NO_SHUTDOWN) ) */
+ /* shutdown( hd->sock, 1 ); */
hd->in_data = 0;
hd->fp_read = iobuf_sockopen( hd->sock , "r" );