From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7661 invoked by alias); 29 Nov 2001 07:31:07 -0000 Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner@sources.redhat.com Received: (qmail 7638 invoked from network); 29 Nov 2001 07:31:06 -0000 Received: from unknown (HELO mailout02.sul.t-online.de) (194.25.134.17) by hostedprojects.ges.redhat.com with SMTP; 29 Nov 2001 07:31:06 -0000 Received: from fwd05.sul.t-online.de by mailout02.sul.t-online.de with smtp id 169Lex-0007iC-0B; Thu, 29 Nov 2001 08:31:03 +0100 Received: from loreley.haase.dynu.com (320081107336-0001@[193.159.7.50]) by fmrl05.sul.t-online.com with esmtp id 169Lep-1Ke1L6C; Thu, 29 Nov 2001 08:30:55 +0100 Received: from haase.dynu.com ([192.168.1.1] helo=LORELEY) by loreley.haase.dynu.com with esmtp (Exim 3.33 #4) id 169Lah-0000Bz-00; Thu, 29 Nov 2001 08:26:39 +0100 Date: Mon, 19 Nov 2001 12:02:00 -0000 From: "Gerrit P. Haase" X-Mailer: The Bat! (v1.53t) Business Reply-To: "Gerrit P. Haase" Organization: Esse keine toten Tiere X-Priority: 3 (Normal) Message-ID: <39384249060.20011129082607@familiehaase.de> To: "Pierre A. Humblet" CC: cygwin@cygwin.com Subject: Re: can not install libwww-perl-5.61 In-Reply-To: <3.0.5.32.20011128233313.0082ccd0@pop.ne.mediaone.net> References: <3.0.5.32.20011128233313.0082ccd0@pop.ne.mediaone.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Sender: 320081107336-0001@t-dialin.net X-SW-Source: 2001-11/txt/msg01208.txt.bz2 Hallo Pierre, Am 2001-11-29 um 05:33 schriebst du: > Is it a dbm problem or is the following coincidental? > main() > { > DBM *dbp; > dbp = dbm_open("xxx", O_RDWR|O_CREAT, 0644); > if (dbp == NULL) perror("dbm_open"); > } > yields: > dbm_open: Permission denied > http://sources.redhat.com/ml/cygwin/2001-11/msg01391.html reported >> robot/rules-dbm.....Can't open test-436657: Permission denied at > robot/rules-dbm.t line 9 Where does this error come from, is it also from gdbm? Eventually there is a check for a special set of permissions like 644 and at Win98 is always 700 so an error is raised, maybe the 'wrong' error text in gdbm? What if you change the above snippet to: main() { DBM *dbp; dbp = dbm_open("xxx", O_RDWR|O_CREAT, 0700); if (dbp == NULL) perror("dbm_open"); } The original poster has failures probably because he doesn't use 'ntsec' in his CYGWIN= settings. > Cygnus Win95/NT Configuration Diagnostics > Windows 98 SE Ver 4.10 build 67766446 A > Cygwin DLL version info: > DLL version: 1.3.5 > DLL epoch: 19 Ciao, Gerrit P. Haase mailto:gp@familiehaase.de -- =^..^= -- 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/ From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Gerrit P. Haase" To: "Pierre A. Humblet" Cc: cygwin@cygwin.com Subject: Re: can not install libwww-perl-5.61 Date: Wed, 28 Nov 2001 23:31:00 -0000 Message-ID: <39384249060.20011129082607@familiehaase.de> References: <3.0.5.32.20011128233313.0082ccd0@pop.ne.mediaone.net> X-SW-Source: 2001-11/msg01796.html Message-ID: <20011128233100.xwvpBkizfogY_wCHF-NKYg9y3SqxVKSgaJMSsh1zclA@z> Hallo Pierre, Am 2001-11-29 um 05:33 schriebst du: > Is it a dbm problem or is the following coincidental? > main() > { > DBM *dbp; > dbp = dbm_open("xxx", O_RDWR|O_CREAT, 0644); > if (dbp == NULL) perror("dbm_open"); > } > yields: > dbm_open: Permission denied > http://sources.redhat.com/ml/cygwin/2001-11/msg01391.html reported >> robot/rules-dbm.....Can't open test-436657: Permission denied at > robot/rules-dbm.t line 9 Where does this error come from, is it also from gdbm? Eventually there is a check for a special set of permissions like 644 and at Win98 is always 700 so an error is raised, maybe the 'wrong' error text in gdbm? What if you change the above snippet to: main() { DBM *dbp; dbp = dbm_open("xxx", O_RDWR|O_CREAT, 0700); if (dbp == NULL) perror("dbm_open"); } The original poster has failures probably because he doesn't use 'ntsec' in his CYGWIN= settings. > Cygnus Win95/NT Configuration Diagnostics > Windows 98 SE Ver 4.10 build 67766446 A > Cygwin DLL version info: > DLL version: 1.3.5 > DLL epoch: 19 Ciao, Gerrit P. Haase mailto:gp@familiehaase.de -- =^..^= -- 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/