can not install libwww-perl-5.61

Gerrit P. Haase gp@familiehaase.de
Wed Nov 28 23:31:00 GMT 2001


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/



More information about the Cygwin mailing list