Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Message-ID: <005501c341aa$1d82e830$6902a8c0@markonius> From: "Mark Priest" To: Subject: new Info on File Permission Problems on Windows XP, cygwin 1.3.22 Date: Thu, 3 Jul 2003 17:28:58 -0400 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_004E_01C34188.95C80FE0" X-Priority: 3 X-MSMail-Priority: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 ------=_NextPart_000_004E_01C34188.95C80FE0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Hello, I was able to fix the problem with file permissions by adding the cvs users into the Administrators group. This should not be necessary from my understanding of Cygwin and the ntsec patch. This is a bit of a security hole since these users have no reason to be Administrators on my Windows XP Professional server. I think that the permission problem I am experiencing in the cvs repository is some kind of bug in the ntsec patch. ----- Original Message ----- From: "Mark Priest" To: Sent: Thursday, July 03, 2003 3:33 AM Subject: File Permission Problems on Windows XP, cygwin 1.3.22 > Hello, > > I am serving a cvs repository from a Windows XP Professional machine under > Cygwin 1.3.22 and I believe that I am having a file permissions problem in > the cvs repository. My repository is located at /cvs and all cvs users > belong to the "cvs" group as their primary group. All directories in the > repository have rwx permissions for this group as well as for the owner. > Therefore, I should be able to replace the ,v files with a new version as > part of a commit for any users in the cvs group. However, only the owner of > each ,v file (i.e. the developer that added or last modified the file) can > successfully commit. The CYGWIN environment variable is set to 'ntsec'. > > When I commit files from a user that is not the owner of the file the commit > fails as follows: > > cvs -t commit -m "try commit" readme.txt (in directory C:\dev\bar) > cvs commit: notice: main loop with CVSROOT=:ext:markp AT 192 DOT 168 DOT 2 DOT 105:/cvs > -> Starting server: plink.exe 192.168.2.105 -i > C:\keys\mpriest_private.PPK -l markp cvs server > -> Sending file `readme.txt' to server > S-> write_lock(/cvs/bar) > S-> checkout (/cvs/bar/readme.txt,v, 1.1.1.1, , (function)) > S-> Parse_Info (/cvs/CVSROOT/commitinfo, bar, ALL) > Checking in readme.txt; > /cvs/bar/readme.txt,v <-- readme.txt > S-> Parse_Info (/cvs/CVSROOT/verifymsg, bar, not ALL) > S-> checkout (/cvs/bar/readme.txt,v, 1.1, -ko, /tmp/cvs003472) > new revision: 1.2; previous revision: 1.1 > S-> rename(/cvs/bar/,readme.txt,,/cvs/bar/readme.txt,v) > cvs [server aborted]: cannot rename file /cvs/bar/,readme.txt, to > /cvs/bar/readme.txt,v: Permission denied > S-> unlink_file(/cvs/bar/,readme.txt,) > S-> Lock_Cleanup() > > I have seen this error message discussed on the cvs mailing list archives > but those discussion were only relevant for cases where people hosted the > repository on a network share. My /cvs repository is in a local hard disk > directory. > > When I try to emulate a file move as this same user, markp, directly in the > repository at the cygwin command prompt I experience the same permission > error as follows: > > markp AT markonius /cvs/bar > $ id > uid=1019(markp) gid=1015(cvs) groups=513(None),545(Users),1015(cvs) > > markp AT markonius /cvs/bar > $ pwd > /cvs/bar > > markp AT markonius /cvs/bar > $ ls -alF > total 3 > drwxrwxr-x+ 2 cvs cvs 0 Jul 3 02:48 ./ > drwxrwxr-x+ 7 cvs cvs 0 Jun 30 17:16 ../ > -r--r--r-- 1 markp cvs 542 Jun 30 17:27 bar.c,v > -r--r--r-- 1 markp cvs 406 Jun 30 17:16 bar.h,v > -r--r--r-- 1 cvsuser cvs 423 Jun 30 17:33 readme.txt,v > > markp AT markonius /cvs/bar > $ cp readme.txt,v tmp > > markp AT markonius /cvs/bar > $ ls -alF > total 4 > drwxrwxr-x+ 2 cvs cvs 0 Jul 3 02:50 ./ > drwxrwxr-x+ 7 cvs cvs 0 Jun 30 17:16 ../ > -r--r--r-- 1 markp cvs 542 Jun 30 17:27 bar.c,v > -r--r--r-- 1 markp cvs 406 Jun 30 17:16 bar.h,v > -r--r--r-- 1 cvsuser cvs 423 Jun 30 17:33 readme.txt,v > -r--r--r-- 1 markp cvs 423 Jul 3 02:50 tmp > > markp AT markonius /cvs/bar > $ mv tmp readme.txt,v > mv: cannot move `tmp' to `readme.txt,v': Permission denied > > markp AT markonius /cvs/bar > $ echo $CYGWIN > ntsec > > markp AT markonius /cvs/bar > > > When I perform this same operation as the file owner the attempt succeeds > (and so does a regular CVS commit operation) as follows: > > cvsuser AT markonius /cvs/bar > $ id > uid=1016(cvsuser) gid=1015(cvs) groups=513(None),545(Users),1015(cvs) > > cvsuser AT markonius /cvs/bar > $ echo $CYGWIN > ntsec > > cvsuser AT markonius /cvs/bar > $ pwd > /cvs/bar > > cvsuser AT markonius /cvs/bar > $ ls -alF > total 3 > drwxrwxr-x+ 2 cvs cvs 0 Jul 3 02:53 ./ > drwxrwxr-x+ 7 cvs cvs 0 Jun 30 17:16 ../ > -r--r--r-- 1 markp cvs 542 Jun 30 17:27 bar.c,v > -r--r--r-- 1 markp cvs 406 Jun 30 17:16 bar.h,v > -r--r--r-- 1 cvsuser cvs 423 Jun 30 17:33 readme.txt,v > > cvsuser AT markonius /cvs/bar > $ cp readme.txt,v tmp > > cvsuser AT markonius /cvs/bar > $ ls -alF > total 4 > drwxrwxr-x+ 2 cvs cvs 0 Jul 3 02:53 ./ > drwxrwxr-x+ 7 cvs cvs 0 Jun 30 17:16 ../ > -r--r--r-- 1 markp cvs 542 Jun 30 17:27 bar.c,v > -r--r--r-- 1 markp cvs 406 Jun 30 17:16 bar.h,v > -r--r--r-- 1 cvsuser cvs 423 Jun 30 17:33 readme.txt,v > -r--r--r-- 1 cvsuser cvs 423 Jul 3 02:53 tmp > > cvsuser AT markonius /cvs/bar > $ mv tmp readme.txt,v > > cvsuser AT markonius /cvs/bar > $ ls -alF > total 3 > drwxrwxr-x+ 2 cvs cvs 0 Jul 3 02:53 ./ > drwxrwxr-x+ 7 cvs cvs 0 Jun 30 17:16 ../ > -r--r--r-- 1 markp cvs 542 Jun 30 17:27 bar.c,v > -r--r--r-- 1 markp cvs 406 Jun 30 17:16 bar.h,v > -r--r--r-- 1 cvsuser cvs 423 Jul 3 02:53 readme.txt,v > > I have attached the results of cygcheck to this email and I have the CYGWIN > environment variable set to 'ntsec'. > > Please help me understand what is wrong with my repository file permissions. > > Thanks, > Mark > ---------------------------------------------------------------------------- ---- > -- > Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple > Problem reports: http://cygwin.com/problems.html > Documentation: http://cygwin.com/docs.html > FAQ: http://cygwin.com/faq/ ------=_NextPart_000_004E_01C34188.95C80FE0 Content-Type: text/plain; name="cygcheck_out.txt" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="cygcheck_out.txt" Cygwin Win95/NT Configuration Diagnostics Current System Time: Thu Jul 03 02:56:12 2003 Windows XP Professional Ver 5.1 Build 2600 Service Pack 1 Path: C:\cygwin\usr\local\bin C:\cygwin\bin C:\cygwin\bin c:\WINDOWS\system32 c:\WINDOWS c:\WINDOWS\System32\Wbem c:\Program Files\Microsoft SQL Server\80\Tools\Binn\ c:\PROGRA~1\ULTRAE~1 c:\downloads\putty C:\cygwin\usr\sbin C:\cygwin\bin\id.exe output (nontsec) UID: 1016(cvsuser) GID: 1015(cvs) 513(None) 545(Users) =20 1015(cvs) C:\cygwin\bin\id.exe output (ntsec) UID: 1016(cvsuser) GID: 1015(cvs) 513(None) 545(Users) =20 1015(cvs) SysDir: C:\WINDOWS\System32 WinDir: C:\WINDOWS Here's some environment variables that may affect cygwin: CYGWIN =3D `ntsec' HOME =3D `C:\cygwin\home\cvsuser' MAKE_MODE =3D `unix' PWD =3D `/home/cvsuser' USER =3D `cvsuser' Here's the rest of your environment variables: ALLUSERSPROFILE =3D `C:\Documents and Settings\All Users' APPDATA =3D `C:\Documents and Settings\cvsuser\Application Data' COMMONPROGRAMFILES =3D `C:\Program Files\Common Files' COMPUTERNAME =3D `MARKONIUS' COMSPEC =3D `C:\WINDOWS\system32\cmd.exe' CVSROOT =3D `:ext:cvssession:/cvs' CVS_RSH =3D `/usr/bin/ssh' HOMEDRIVE =3D `C:' HOMEPATH =3D `\Documents and Settings\cvsuser' HOSTNAME =3D `markonius' INCLUDE =3D `C:\Program Files\Microsoft Visual Studio .NET = 2003\SDK\v1.1\include\' LIB =3D `C:\Program Files\Microsoft Visual Studio .NET = 2003\SDK\v1.1\Lib\' LOGONSERVER =3D `\\MARKONIUS' MANPATH =3D `:/usr/ssl/man' NUMBER_OF_PROCESSORS =3D `2' OLDPWD =3D `/cvs/bar' OS =3D `Windows_NT' PATHEXT =3D `.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH' PROCESSOR_ARCHITECTURE =3D `x86' PROCESSOR_IDENTIFIER =3D `x86 Family 6 Model 11 Stepping 1, = GenuineIntel' PROCESSOR_LEVEL =3D `6' PROCESSOR_REVISION =3D `0b01' PROGRAMFILES =3D `C:\Program Files' PROMPT =3D `$P$G' PS1 =3D `\[\033]0;\w\007 \033[32m\]\u@\h \[\033[33m\w\033[0m\] $ ' SESSIONNAME =3D `Console' SHLVL =3D `1' SYSTEMDRIVE =3D `C:' SYSTEMROOT =3D `C:\WINDOWS' TEMP =3D `c:\DOCUME~1\cvsuser\LOCALS~1\Temp' TERM =3D `cygwin' TMP =3D `c:\DOCUME~1\cvsuser\LOCALS~1\Temp' USERDOMAIN =3D `MARKONIUS' USERNAME =3D `cvsuser' USERPROFILE =3D `C:\Documents and Settings\cvsuser' VS71COMNTOOLS =3D `C:\Program Files\Microsoft Visual Studio .NET = 2003\Common7\Tools\' WINDIR =3D `C:\WINDOWS' _ =3D `/usr/bin/cygcheck' Scanning registry for keys with `Cygnus' in them... HKEY_CURRENT_USER\Software\Cygnus Solutions HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2 HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\Program Options HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2 (default) =3D `/cygdrive' cygdrive flags =3D 0x00000022 HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/ (default) =3D `C:\cygwin' flags =3D 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/bin (default) =3D `C:\cygwin/bin' flags =3D 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/lib (default) =3D `C:\cygwin/lib' flags =3D 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Program Options Listing available drives... Drv Type Size Free Flags Name a: fd N/A N/A =20 c: hd NTFS 19085Mb 65% CP CS UN PA FC =20 d: cd N/A N/A =20 fd=3Dfloppy, hd=3Dhard drive, cd=3DCD-ROM, net=3DNetwork Share CP=3DCase Preserving, CS=3DCase Sensitive, UN=3DUnicode PA=3DPersistent ACLS, FC=3DFile Compression, VC=3DVolume Compression Mount entries: these map POSIX directories to your NT drives. -NT- -POSIX- -Type- -Flags- C:\cygwin / system binmode C:\cygwin/bin /usr/bin system binmode C:\cygwin/lib /usr/lib system binmode . /cygdrive system binmode,cygdrive Looking to see where common programs can be found, if at all... Found: C:\cygwin\bin\awk.exe Found: C:\cygwin\bin\bash.exe Found: C:\cygwin\bin\cat.exe Found: C:\cygwin\bin\cp.exe Found: C:\cygwin\bin\cpp.exe Found: C:\cygwin\bin\find.exe Found: C:\cygwin\bin\gcc.exe Not Found: gdb Found: C:\cygwin\bin\grep.exe Found: C:\cygwin\bin\ld.exe Found: C:\cygwin\bin\ls.exe Found: C:\cygwin\bin\make.exe Found: C:\cygwin\bin\mv.exe Found: C:\cygwin\bin\rm.exe Found: C:\cygwin\bin\sed.exe Found: C:\cygwin\bin\sh.exe Found: C:\cygwin\bin\tar.exe Looking for various Cygnus DLLs... (-v gives version info) 58k 2002/05/07 C:\cygwin\bin\cygbz2-1.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygbz2-1.dll" v0.0 ts=3D2002/5/7 2:33 848k 2003/04/11 C:\cygwin\bin\cygcrypto-0.9.7.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygcrypto-0.9.7.dll" v0.0 ts=3D2003/4/11 6:33 645k 2003/04/11 C:\cygwin\bin\cygcrypto.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygcrypto.dll" v0.0 ts=3D2003/4/11 6:37 380k 2002/07/24 C:\cygwin\bin\cygdb-3.1.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygdb-3.1.dll" v0.0 ts=3D2002/7/24 12:24 487k 2002/07/24 C:\cygwin\bin\cygdb_cxx-3.1.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygdb_cxx-3.1.dll" v0.0 ts=3D2002/7/24 12:25 136k 2002/10/17 C:\cygwin\bin\cygexpat-0.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygexpat-0.dll" v0.0 ts=3D2002/10/17 11:21 45k 2001/04/25 C:\cygwin\bin\cygform5.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygform5.dll" v0.0 ts=3D2001/4/25 1:28 35k 2002/01/09 C:\cygwin\bin\cygform6.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygform6.dll" v0.0 ts=3D2002/1/9 1:03 76k 2003/03/09 C:\cygwin\bin\cygform7.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygform7.dll" v0.0 ts=3D2003/3/9 15:51 28k 2003/03/22 C:\cygwin\bin\cyggdbm-3.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cyggdbm-3.dll" v0.0 ts=3D2003/3/22 17:19 19k 2003/03/22 C:\cygwin\bin\cyggdbm.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cyggdbm.dll" v0.0 ts=3D2002/2/19 22:05 15k 2003/03/22 C:\cygwin\bin\cyggdbm_compat-3.dll - os=3D4.0 = img=3D1.0 sys=3D4.0 "cyggdbm_compat-3.dll" v0.0 ts=3D2003/3/22 17:22 17k 2001/06/28 C:\cygwin\bin\cyghistory4.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cyghistory4.dll" v0.0 ts=3D2001/1/6 23:34 20k 2002/10/10 C:\cygwin\bin\cyghistory5.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cyghistory5.dll" v0.0 ts=3D2002/10/10 13:28 306k 2002/04/27 C:\cygwin\bin\cyghttpd.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cyghttpd.dll" v0.0 ts=3D2002/4/27 9:23 929k 2002/06/24 C:\cygwin\bin\cygiconv-2.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygiconv-2.dll" v0.0 ts=3D2002/6/24 14:24 22k 2001/12/13 C:\cygwin\bin\cygintl-1.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygintl-1.dll" v0.0 ts=3D2001/12/13 4:28 28k 2002/09/20 C:\cygwin\bin\cygintl-2.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygintl-2.dll" v0.0 ts=3D2002/9/19 23:13 26k 2001/04/25 C:\cygwin\bin\cygmenu5.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygmenu5.dll" v0.0 ts=3D2001/4/25 1:27 20k 2002/01/09 C:\cygwin\bin\cygmenu6.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygmenu6.dll" v0.0 ts=3D2002/1/9 1:03 48k 2003/03/09 C:\cygwin\bin\cygmenu7.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygmenu7.dll" v0.0 ts=3D2003/3/9 15:51 156k 2001/04/25 C:\cygwin\bin\cygncurses++5.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygncurses++5.dll" v0.0 ts=3D2001/4/25 1:29 175k 2002/01/09 C:\cygwin\bin\cygncurses++6.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygncurses++6.dll" v0.0 ts=3D2002/1/9 1:03 226k 2001/04/25 C:\cygwin\bin\cygncurses5.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygncurses5.dll" v0.0 ts=3D2001/4/25 1:17 202k 2002/01/09 C:\cygwin\bin\cygncurses6.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygncurses6.dll" v0.0 ts=3D2002/1/9 1:03 284k 2003/03/09 C:\cygwin\bin\cygncurses7.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygncurses7.dll" v0.0 ts=3D2003/3/9 15:50 15k 2001/04/25 C:\cygwin\bin\cygpanel5.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygpanel5.dll" v0.0 ts=3D2001/4/25 1:27 12k 2002/01/09 C:\cygwin\bin\cygpanel6.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygpanel6.dll" v0.0 ts=3D2002/1/9 1:03 31k 2003/03/09 C:\cygwin\bin\cygpanel7.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygpanel7.dll" v0.0 ts=3D2003/3/9 15:50 63k 2003/04/11 C:\cygwin\bin\cygpcre.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygpcre.dll" v0.0 ts=3D2003/4/11 4:31 61k 2003/04/11 C:\cygwin\bin\cygpcreposix.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygpcreposix.dll" v0.0 ts=3D2003/4/11 4:31 1069k 2003/06/02 C:\cygwin\bin\cygperl5_8_0.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygperl5_8_0.dll" v0.0 ts=3D2003/6/2 8:01 22k 2002/06/09 C:\cygwin\bin\cygpopt-0.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygpopt-0.dll" v0.0 ts=3D2002/6/9 1:45 108k 2001/06/28 C:\cygwin\bin\cygreadline4.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygreadline4.dll" v0.0 ts=3D2001/1/6 23:34 127k 2002/10/10 C:\cygwin\bin\cygreadline5.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygreadline5.dll" v0.0 ts=3D2002/10/10 13:28 176k 2003/04/11 C:\cygwin\bin\cygssl-0.9.7.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygssl-0.9.7.dll" v0.0 ts=3D2003/4/11 6:33 165k 2003/04/11 C:\cygwin\bin\cygssl.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygssl.dll" v0.0 ts=3D2003/4/11 6:37 50k 2002/03/12 C:\cygwin\bin\cygz.dll - os=3D4.0 img=3D1.0 sys=3D4.0 "cygz.dll" v0.0 ts=3D2002/3/11 23:38 948k 2003/03/18 C:\cygwin\bin\cygwin1.dll - os=3D4.0 img=3D1.0 = sys=3D4.0 "cygwin1.dll" v0.0 ts=3D2003/3/18 9:20 Cygwin DLL version info: DLL version: 1.3.22 DLL epoch: 19 DLL bad signal mask: 19005 DLL old termios: 5 DLL malloc env: 28 API major: 0 API minor: 78 Shared data: 3 DLL identifier: cygwin1 Mount registry: 2 Cygnus registry name: Cygnus Solutions Cygwin registry name: Cygwin Program options name: Program Options Cygwin mount registry name: mounts v2 Cygdrive flags: cygdrive flags Cygdrive prefix: cygdrive prefix Cygdrive default prefix:=20 Build date: Tue Mar 18 09:20:11 EST 2003 CVS tag: dontuse-21 Shared id: cygwin1S3 Cygwin Package Information Last downloaded files to: C:\downloads\cygwin Last downloaded files from: = ftp://linux.sarang.net/mirror/development/compiler/cygwin Package Version _update-info-dir 00170-1 apache 1.3.24-5 ash 20020731-1 base-files 1.3-1 base-passwd 1.1-1 bash 2.05b-9 binutils 20030307-1 bzip2 1.0.2-2 crypt 1.0-1 cvs 1.11.5-1 cygrunsrv 0.96-1 cygutils 1.1.4-2 cygwin 1.3.22-1 cygwin-doc 1.3-4 diffutils 2.8.1-1 expat 1.95.5-1 fileutils 4.1-1 findutils 4.1.7-4 gawk 3.1.2-3 gcc 3.2-3 gcc-mingw 20020817-5 gdbm 1.8.3-1 grep 2.5-1 groff 1.18.1-2 gzip 1.3.3-4 less 378-1 libbz2_1 1.0.2-2 libdb3.1 3.1.17-2 libgdbm 1.8.0-5 libgdbm-devel 1.8.3-1 libgdbm3 1.8.3-1 libiconv2 1.8-2 libintl1 0.10.40-1 libintl2 0.11.5-1 libncurses5 5.2-1 libncurses6 5.2-8 libncurses7 5.3-1 libpcre 4.1-1 libpopt0 1.6.4-4 libreadline4 4.1-2 libreadline5 4.3-2 login 1.9-5 make 3.79.1-7 man 1.5j-2 mingw-runtime 3.0-1 mktemp 1.4-1 mod_ssl 2.8.8-1.3.24-1 ncurses 5.3-1 newlib-man 20020801 openssh 3.6.1p1-2 openssl 0.9.7b-1 openssl-devel 0.9.7b-1 openssl096 0.9.6j-1 perl 5.8.0-3 postgresql 7.3.3-1 python 2.2.3-1 readline 4.3-2 sed 4.0.7-1 sh-utils 2.0.15-3 tar 1.13.25-1 tcltk 20030214-1 tcp_wrappers 7.6-1 termcap 20020930-1 terminfo 5.3-2 texinfo 4.2-4 textutils 2.0.21-1 vim 6.2-1 w32api 2.3-1 which 1.5-1 zlib 1.1.4-1 ------=_NextPart_000_004E_01C34188.95C80FE0 Content-Type: text/plain; charset=us-ascii -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/ ------=_NextPart_000_004E_01C34188.95C80FE0--