From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5051 invoked by alias); 31 May 2002 19:40:47 -0000 Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner@cygwin.com Mail-Followup-To: cygwin@cygwin.com Received: (qmail 5015 invoked from network); 31 May 2002 19:40:45 -0000 Received: from unknown (HELO moutng1.kundenserver.de) (212.227.126.171) by sources.redhat.com with SMTP; 31 May 2002 19:40:45 -0000 Received: from [212.227.126.162] (helo=mrelayng1.schlund.de) by moutng1.kundenserver.de with esmtp (Exim 3.22 #2) id 17DsGN-0006Qe-00; Fri, 31 May 2002 21:40:39 +0200 Received: from pd9e35b6d.dip.t-dialin.net ([217.227.91.109] helo=scytek.de) by mrelayng1.schlund.de with asmtp (Exim 3.35 #1) id 17DsGM-0007LY-00; Fri, 31 May 2002 21:40:39 +0200 Message-ID: <3CF7D1B5.2020901@scytek.de> Date: Fri, 31 May 2002 19:56:00 -0000 From: Volker Quetschke User-Agent: Mozilla/5.0 (Windows; U; Win98; de-DE; rv:0.9.4) Gecko/20011019 Netscape6/6.2 X-Accept-Language: de-DE MIME-Version: 1.0 To: Olaf Foellinger CC: cygwin@cygwin.com Subject: Re: mutt and gpg 1.07 References: <20020503132941.GC588@NBOF> <20020517091459.GC1620@NBOF> <20020528105452.GG1504@NBOF> Content-Type: multipart/mixed; boundary="------------010100050209060807050100" X-SW-Source: 2002-05/txt/msg01967.txt.bz2 --------------010100050209060807050100 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Content-length: 1714 Hi! >>>now where gnupg 1.07 is out and builds cleanly under cygwin I'll repeat >>>my question whether it is possible to get mutt working with gpg. All my >>>tries failed so far with the error that gpg cannot find the file mutt >>>reports to him. I'm not a developer so I cannot resolve the problem >>>myself but this is the biggest problem for me. >>> >>here's a more detailed error description. I'm using the cygwin mutt >>together with a gpg 1.07 which builds cleanly under cygwin. Now it builds OOB, at least when you use the attached patch. >>When I try to encrypt a message and press y to send mutt presents me a >>list of possible keys. I choose one and I get the error >> >>gpg: /tmp/mutt-NBOF-1728-4: encryption failed: file open error >>Bitte drücken Sie eine Taste... Yes, the gnupg 1.0.7 version uses the "windows file system", and I think you don't have a c:\tmp\ directory. Even if you have, this is not the same directory ( \tmp ) for mutt. (mutt is a real cygwin application) >>and indeed there isn't such a file >> >>$ ls /tmp >>mutt-NBOF-1620-143 mutt-NBOF-1728-1 mutt-NBOF-1728-2 >> >>It seems to me that mutt doesn't create the right file or does report >>the wrong filename to gpg. Mutt does, but gpg looks elseware. As I had a look into this problem I realized that it was easy to fix configure.ac to make gnupg compile OOB. Then I removed the special cases with __CYGWIN__ for the file handling and it still build without a problem. This patch might fix your problem, feel free to test the patched gpg. I only looked at the parts of the source with special __CYGWIN__ cases therefore if might be that I missed someting. (Please report if it works ;-) ) Bye Volker --------------010100050209060807050100 Content-Type: text/plain; name="gnupg.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="gnupg.diff" Content-length: 4674 ? gnupg.diff Index: configure.ac =================================================================== RCS file: /cvs/gnupg/gnupg/Attic/configure.ac,v retrieving revision 1.1.2.29 diff -u -r1.1.2.29 configure.ac --- configure.ac 29 Apr 2002 14:56:08 -0000 1.1.2.29 +++ configure.ac 31 May 2002 16:29:14 -0000 @@ -199,7 +199,7 @@ try_gettext=yes case "${target}" in - *-*-mingw32*|*-*-cygwin*) + *-*-mingw32*) # special stuff for Windoze NT ac_cv_have_dev_random=no AC_DEFINE(USE_ONLY_8DOT3,1, @@ -215,6 +215,10 @@ MingW32 systems and these systems lack Posix functions, we use a simplified version of gettext]) try_gettext="no" + ;; + *-*-cygwin*) + # special stuff for cygwin + ac_cv_have_dev_random=no ;; i?86-emx-os2 | i?86-*-os2*emx ) # OS/2 with the EMX environment Index: g10/exec.c =================================================================== RCS file: /cvs/gnupg/gnupg/g10/Attic/exec.c,v retrieving revision 1.1.2.12 diff -u -r1.1.2.12 exec.c --- g10/exec.c 29 Apr 2002 14:42:33 -0000 1.1.2.12 +++ g10/exec.c 31 May 2002 16:29:15 -0000 @@ -62,7 +62,7 @@ #ifdef __riscos__ tmp=".GnuPG"; mkdir(tmp,0700); /* Error checks occur later on */ -#elif defined (__MINGW32__) || defined (__CYGWIN32__) +#elif defined (__MINGW32__) tmp=m_alloc(256); if(GetTempPath(256,tmp)==0) strcpy(tmp,"c:\\temp"); @@ -88,7 +88,7 @@ sprintf(info->tempdir,"%s" DIRSEP_S "gpg-XXXXXX",tmp); -#if defined (__MINGW32__) || defined (__CYGWIN32__) +#if defined (__MINGW32__) m_free(tmp); #endif Index: g10/g10.c =================================================================== RCS file: /cvs/gnupg/gnupg/g10/Attic/g10.c,v retrieving revision 1.129.2.103 diff -u -r1.129.2.103 g10.c --- g10/g10.c 25 Apr 2002 08:30:35 -0000 1.129.2.103 +++ g10/g10.c 31 May 2002 16:29:20 -0000 @@ -807,7 +807,7 @@ opt.pgp2_workarounds = 1; opt.force_v3_sigs = 1; opt.escape_from = 1; -#if defined (__MINGW32__) || defined (__CYGWIN32__) +#if defined (__MINGW32__) opt.homedir = read_w32_registry_string( NULL, "Software\\GNU\\GnuPG", "HomeDir" ); #else opt.homedir = getenv("GNUPGHOME"); Index: g10/gpgv.c =================================================================== RCS file: /cvs/gnupg/gnupg/g10/Attic/gpgv.c,v retrieving revision 1.1.2.17 diff -u -r1.1.2.17 gpgv.c --- g10/gpgv.c 29 Apr 2002 14:42:34 -0000 1.1.2.17 +++ g10/gpgv.c 31 May 2002 16:29:20 -0000 @@ -151,7 +151,7 @@ opt.always_trust = 1; opt.batch = 1; - #if defined (__MINGW32__) || defined (__CYGWIN32__) + #if defined (__MINGW32__) opt.homedir = read_w32_registry_string( NULL, "Software\\GNU\\GnuPG", "HomeDir" ); #else opt.homedir = getenv("GNUPGHOME"); Index: g10/passphrase.c =================================================================== RCS file: /cvs/gnupg/gnupg/g10/passphrase.c,v retrieving revision 1.33.2.24 diff -u -r1.33.2.24 passphrase.c --- g10/passphrase.c 29 Apr 2002 14:42:34 -0000 1.33.2.24 +++ g10/passphrase.c 31 May 2002 16:29:22 -0000 @@ -97,7 +97,7 @@ static char *next_pw = NULL; static char *last_pw = NULL; -#if defined (__MINGW32__) || defined (__CYGWIN32__) +#if defined (__MINGW32__) static int read_fd = 0; static int write_fd = 0; #endif @@ -176,7 +176,7 @@ static int writen ( int fd, const void *buf, size_t nbytes ) { -#if defined (__MINGW32__) || defined (__CYGWIN32__) +#if defined (__MINGW32__) DWORD nwritten, nleft = nbytes; while (nleft > 0) { @@ -219,7 +219,7 @@ static int readn ( int fd, void *buf, size_t buflen, size_t *ret_nread ) { -#if defined (__MINGW32__) || defined (__CYGWIN32__) +#if defined (__MINGW32__) DWORD nread, nleft = buflen; while (nleft > 0) { @@ -313,7 +313,7 @@ #if !defined (__riscos__) -#if !defined (__MINGW32__) && !defined (__CYGWIN32__) +#if !defined (__MINGW32__) /* For the new Assuan protocol we may have to send options */ static int agent_send_option (int fd, const char *name, const char *value) @@ -418,7 +418,7 @@ #endif return rc; } -#endif /*!__MINGW32__ && !__CYGWIN32__*/ +#endif /*!__MINGW32__ */ /* @@ -429,7 +429,7 @@ static int agent_open (int *ret_prot) { -#if defined (__MINGW32__) || defined (__CYGWIN32__) +#if defined (__MINGW32__) int fd; char *infostr, *p; HANDLE h; @@ -574,7 +574,7 @@ static void agent_close ( int fd ) { -#if defined (__MINGW32__) || defined (__CYGWIN32__) +#if defined (__MINGW32__) HANDLE h = OpenEvent(EVENT_ALL_ACCESS, FALSE, "gpg_agent"); ResetEvent(h); #else --------------010100050209060807050100 Content-Type: text/plain; charset=us-ascii Content-length: 214 -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/ --------------010100050209060807050100--