public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* case sensitivity on Windows 7 Enterprise with NTFS drive
@ 2016-11-18 15:15 Matthias Herz
  2016-11-18 15:32 ` cyg Simple
  2016-11-18 15:35 ` Corinna Vinschen
  0 siblings, 2 replies; 6+ messages in thread
From: Matthias Herz @ 2016-11-18 15:15 UTC (permalink / raw)
  To: cygwin

Dear Cygwin Team,

on my cygwin installation I have problems with case sensitivity although I
did everything described here:
https://cygwin.com/cygwin-ug-net/using-specialnames.html#pathnames-casesens=

I really need case sentitivity since I would like to use OpenFOAM (c++ cfd
library) inside cygwin and OpenFOAM has a bunch of files like scalar.H and
Scalar.H.

The minimal example for my problem is:
>mkdir test1
>touch test1/file.txt
>touch test1/File.txt

This gives me
test1
|-- file.txt
|-- File.txt

This means touch is somehow case sensitive but
>cp -r test1 test2
fails with the message:
>cp: cannot create regular file /test2/file.txt: File exists


I also saw the latest thread on this topic:
https://sourceware.org/ml/cygwin/2016-10/msg00231.html

My questions are:
1.a) Is the mentioned patch in the letest thread already contained in
cygwin 2.6.0 (this is the
cygwin.dll version according to cygcheck -s on my computer)?

1.b) If not, where do get this patch from?

2.) Are there any further tricks and tips concerning my problem?


Best regards,


Matthias

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: case sensitivity on Windows 7 Enterprise with NTFS drive
  2016-11-18 15:15 case sensitivity on Windows 7 Enterprise with NTFS drive Matthias Herz
@ 2016-11-18 15:32 ` cyg Simple
  2016-11-18 15:35 ` Corinna Vinschen
  1 sibling, 0 replies; 6+ messages in thread
From: cyg Simple @ 2016-11-18 15:32 UTC (permalink / raw)
  To: cygwin

On 11/18/2016 7:59 AM, Matthias Herz wrote:
> Dear Cygwin Team,
> 
> on my cygwin installation I have problems with case sensitivity although I
> did everything described here:
> https://cygwin.com/cygwin-ug-net/using-specialnames.html#pathnames-casesens=
> 
> I really need case sentitivity since I would like to use OpenFOAM (c++ cfd
> library) inside cygwin and OpenFOAM has a bunch of files like scalar.H and
> Scalar.H.
> 

This is simply not a portable solution.  You cannot have mixed case
filenames be different files on all systems.  You should take this up
with the OpenFOAM development team.

-- 
cyg Simple

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: case sensitivity on Windows 7 Enterprise with NTFS drive
  2016-11-18 15:15 case sensitivity on Windows 7 Enterprise with NTFS drive Matthias Herz
  2016-11-18 15:32 ` cyg Simple
@ 2016-11-18 15:35 ` Corinna Vinschen
  2016-11-18 15:51   ` cyg Simple
  1 sibling, 1 reply; 6+ messages in thread
From: Corinna Vinschen @ 2016-11-18 15:35 UTC (permalink / raw)
  To: cygwin

[-- Attachment #1: Type: text/plain, Size: 1514 bytes --]

On Nov 18 13:59, Matthias Herz wrote:
> Dear Cygwin Team,
> 
> on my cygwin installation I have problems with case sensitivity although I
> did everything described here:
> https://cygwin.com/cygwin-ug-net/using-specialnames.html#pathnames-casesens=
> 
> I really need case sentitivity since I would like to use OpenFOAM (c++ cfd
> library) inside cygwin and OpenFOAM has a bunch of files like scalar.H and
> Scalar.H.
> 
> The minimal example for my problem is:
> >mkdir test1
> >touch test1/file.txt
> >touch test1/File.txt
> 
> This gives me
> test1
> |-- file.txt
> |-- File.txt
> 
> This means touch is somehow case sensitive but
> >cp -r test1 test2
> fails with the message:
> >cp: cannot create regular file /test2/file.txt: File exists

Works for me, I just tested it on a local NTFS.  Is the file tree on
some remote FS by any chance?  If so, what Fs is it?  Some FSes are
known to have (not so) funny bugs when deviating from Windows defaults.
Or, was the CWD set the same way when calling mkdir vs. when calling cp?
If you use Windows path rather than POSIX paths, case sensitivity won't
work since WIndows paths ar handled with Windows default assumptions.

Bottom line is, I *know* it works, and it does so since Cygwin 1.7.1.
There must be some quirk in either your FS or in your path handling.


HTH,
Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Maintainer                 cygwin AT cygwin DOT com
Red Hat

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: case sensitivity on Windows 7 Enterprise with NTFS drive
  2016-11-18 15:35 ` Corinna Vinschen
@ 2016-11-18 15:51   ` cyg Simple
  2016-11-18 16:33     ` Corinna Vinschen
  0 siblings, 1 reply; 6+ messages in thread
From: cyg Simple @ 2016-11-18 15:51 UTC (permalink / raw)
  To: cygwin

On 11/18/2016 10:15 AM, Corinna Vinschen wrote:
> On Nov 18 13:59, Matthias Herz wrote:
>> Dear Cygwin Team,
>>
>> on my cygwin installation I have problems with case sensitivity although I
>> did everything described here:
>> https://cygwin.com/cygwin-ug-net/using-specialnames.html#pathnames-casesens=
>>
>> I really need case sentitivity since I would like to use OpenFOAM (c++ cfd
>> library) inside cygwin and OpenFOAM has a bunch of files like scalar.H and
>> Scalar.H.
>>
>> The minimal example for my problem is:
>>> mkdir test1
>>> touch test1/file.txt
>>> touch test1/File.txt
>>
>> This gives me
>> test1
>> |-- file.txt
>> |-- File.txt
>>
>> This means touch is somehow case sensitive but
>>> cp -r test1 test2
>> fails with the message:
>>> cp: cannot create regular file /test2/file.txt: File exists
> 
> Works for me, I just tested it on a local NTFS.  Is the file tree on
> some remote FS by any chance?  If so, what Fs is it?  Some FSes are
> known to have (not so) funny bugs when deviating from Windows defaults.
> Or, was the CWD set the same way when calling mkdir vs. when calling cp?
> If you use Windows path rather than POSIX paths, case sensitivity won't
> work since WIndows paths ar handled with Windows default assumptions.
> 
> Bottom line is, I *know* it works, and it does so since Cygwin 1.7.1.
> There must be some quirk in either your FS or in your path handling.

As I said already, this simply isn't a portable solution.

$ uname -a
CYGWIN_NT-10.0 xxxxxx 2.6.0(0.304/5/3) 2016-08-31 14:32 x86_64 Cygwin

$ mkdir A

$ mkdir a
mkdir: cannot create directory ‘a’: File exists

$ rmdir A

$ touch A && ls -l A
-rw-r--r-- 1 cygSimple cygSimple 0 Nov 18 10:26 A

$ sleep 60 && touch a && ls -l A
-rw-r--r-- 1 cygSimple cygSimple 0 Nov 18 10:27 A


My installation is on the native C:\ drive that is NTFS.

-- 
cyg Simple

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: case sensitivity on Windows 7 Enterprise with NTFS drive
  2016-11-18 15:51   ` cyg Simple
@ 2016-11-18 16:33     ` Corinna Vinschen
  0 siblings, 0 replies; 6+ messages in thread
From: Corinna Vinschen @ 2016-11-18 16:33 UTC (permalink / raw)
  To: cygwin

[-- Attachment #1: Type: text/plain, Size: 2640 bytes --]

On Nov 18 10:32, cyg Simple wrote:
> On 11/18/2016 10:15 AM, Corinna Vinschen wrote:
> > On Nov 18 13:59, Matthias Herz wrote:
> >> Dear Cygwin Team,
> >>
> >> on my cygwin installation I have problems with case sensitivity although I
> >> did everything described here:
> >> https://cygwin.com/cygwin-ug-net/using-specialnames.html#pathnames-casesens=
> >>
> >> I really need case sentitivity since I would like to use OpenFOAM (c++ cfd
> >> library) inside cygwin and OpenFOAM has a bunch of files like scalar.H and
> >> Scalar.H.
> >>
> >> The minimal example for my problem is:
> >>> mkdir test1
> >>> touch test1/file.txt
> >>> touch test1/File.txt
> >>
> >> This gives me
> >> test1
> >> |-- file.txt
> >> |-- File.txt
> >>
> >> This means touch is somehow case sensitive but
> >>> cp -r test1 test2
> >> fails with the message:
> >>> cp: cannot create regular file /test2/file.txt: File exists
> > 
> > Works for me, I just tested it on a local NTFS.  Is the file tree on
> > some remote FS by any chance?  If so, what Fs is it?  Some FSes are
> > known to have (not so) funny bugs when deviating from Windows defaults.
> > Or, was the CWD set the same way when calling mkdir vs. when calling cp?
> > If you use Windows path rather than POSIX paths, case sensitivity won't
> > work since WIndows paths ar handled with Windows default assumptions.
> > 
> > Bottom line is, I *know* it works, and it does so since Cygwin 1.7.1.
> > There must be some quirk in either your FS or in your path handling.
> 
> As I said already, this simply isn't a portable solution.
> 
> $ uname -a
> CYGWIN_NT-10.0 xxxxxx 2.6.0(0.304/5/3) 2016-08-31 14:32 x86_64 Cygwin
> 
> $ mkdir A
> 
> $ mkdir a
> mkdir: cannot create directory ‘a’: File exists
> 
> $ rmdir A
> 
> $ touch A && ls -l A
> -rw-r--r-- 1 cygSimple cygSimple 0 Nov 18 10:26 A
> 
> $ sleep 60 && touch a && ls -l A
> -rw-r--r-- 1 cygSimple cygSimple 0 Nov 18 10:27 A
> 
> 
> My installation is on the native C:\ drive that is NTFS.

You didn't follow
https://cygwin.com/cygwin-ug-net/using-specialnames.html#pathnames-casesensitive
so it's clear that this doesn't work for you.  And it wouldn't be
accepted into the Cygwin distro because that would require that it
also works with case sensitivity off.  However, as long as it's just
the OPs build environment, it's fine.  After all, that's one scenario
case sensitivity support in Cygwin was added for.


Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Maintainer                 cygwin AT cygwin DOT com
Red Hat

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: case sensitivity on Windows 7 Enterprise with NTFS drive
@ 2016-11-18 18:45 Matthias Herz
  0 siblings, 0 replies; 6+ messages in thread
From: Matthias Herz @ 2016-11-18 18:45 UTC (permalink / raw)
  To: cygwin

Dear All,

Thanks for your replies.

@Corinna: My bad. I inserted the wrong link. Actually I did follow this
link: https://cygwin.com/cygwin-ug-net/using-specialnames.html#pathnames-casesensitive

@Corinna: I installed on my C drive (which is NTFS) and I have Windows 7
enterprise running. Please find below the output of cygwin -s if this
helps to find more details.

@cyg Simple: Redesign might be helpful in the long run:). However, the
funny thing is that my colleagues are able to work with the same OpenFOAM
library inside cygwin using the same windows installer provided by cfd
support (http://www.cfdsupport.com/download-openfoam-for-windows.html). I
also wrote the guys who made the windows installer and they told me that
they got this bug the first time. This means there must be some trouble
with my machine which I did not find up to now.

Thanks for your replies again.

Matthias



-----------------------------------------------------------------------
output of cygcheck -s
-------------------------------------------------------------------------

Cygwin Configuration Diagnostics
Current System Time: Fri Nov 18 14:59:54 2016

Windows 7 Enterprise Ver 6.1 Build 7601 Service Pack 1

Path: C:\Software\OpenFOAM\cygwin64\usr\local\bin
C:\Software\OpenFOAM\cygwin64\bin
C:\Program Files\Microsoft MPI\Bin
C:\ProgramData\Oracle\Java\javapath
C:\Windows\System32
C:\Windows
C:\Windows\System32\wbem
C:\Windows\System32\WindowsPowerShell\v1.0
C:\Software\texlive\2015\bin\win32
C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn
C:\Program Files\Microsoft SQL Server\100\Tools\Binn
C:\Program Files\Microsoft SQL Server\100\DTS\Binn
C:\Program Files (x86)\CMake\bin
C:\Program Files\doxygen\bin
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\amd64
C:\Software\Anaconda2
C:\Software\Anaconda2\Scripts
C:\Software\Anaconda2\Library\bin
C:\Program Files\Microsoft SQL Server\130\Tools\Binn
C:\Users\matthi\.dnx\bin
C:\Program Files\Microsoft DNX\Dnvm
C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit
C:\Program Files (x86)\nodejs
C:\Program Files\Git\cmd
C:\Program Files (x86)\Git\cmd
C:\Program Files (x86)\GitExtensions
C:\Program Files (x86)\gnuplot\bin
C:\Software\OpenFOAM\cygwin64\opt\OpenFOAM\OpenFOAM-3.0.x\platforms\cygwin64mingw-w64DPInt32Opt\bin
C:\Software\OpenFOAM\cygwin64\opt\OpenFOAM\OpenFOAM-3.0.x\platforms\cygwin64mingw-w64DPInt32Opt\lib
C:\Software\bin
C:\Users\matthi\AppData\Roaming\npm
C:\Software\OpenFOAM\cygwin64\lib\lapack

Output from C:\Software\OpenFOAM\cygwin64\bin\id.exe
UID: 1284105(matthi)
GID: 1049089(Domain Users)
1049089(Domain Users)
559(Performance Log Users)
545(Users)
4(INTERACTIVE)
66049(CONSOLE LOGON)
11(Authenticated Users)
15(This Organization)
4095(CurrentSession)
66048(LOCAL)
1305496(GGOU17_ww002)
1305059(GGOU17DE_ww002)
1467263(WW002-AD-G-GPO-SmartStorage-V2)
1303882(GGOU17DEMCH_ww002)
1387541(RA006-G-OU20DE)
1300837(GGOUAGC_ww002)
1303853(GGagcfg000008ve)
1295715(GGCATOPNU_AGC_ww002)
1305111(GGagcfg000008uk)
1603753(RA006-G-OU20DE001)
2216685(SMVS External)
1300797(GGagcfg000008hd)
1387407(RA006-G-OURA006)
1301951(GGagcfg000008pm)
1184101(mmo170tzg)
1183889(mmo170dug)
1186185(RA009_everyone)
1183892(CT all de)
1182208(mmo170ktg)
1050399(RA009_GDD_BLN_Q_Docu_r)
1183481(CT O ST)
1182568(WW002-AD-UA-CATOPNU)
1255938(05083_GDD_BLN_Q_Docu_r)
1182387(mmo170m6g)
1183676(WW002-AD-U-GPO-SmartStorage-V2)
1185315(mmo170fag)
1981189(WW002-AD-G-GPO-SmartStorage-V2)
1544207(GGagcfg000008hd)
1269540(GGCATOPNU_AGC_ww002)
1552171(GGagcfg000008pm)
1291580(GGOU17_ww002)
1291582(GGOU17DE_ww002)
1291584(GGOU17DEMCH_ww002)
1291609(GGOUAGC_ww002)
1564600(GGagcfg000008uk)
1564909(GGagcfg000008ve)
1981190(WW002-AD-U-GPO-SmartStorage-V2)
1551917(mmo170fag)
1550419(mmo170dug)
1558363(mmo170ktg)
1145253(CT O ST)
1626543(mmo170tzg)
1243857(CT all de)
1049824(WW002-AD-UA-CATOPNU)
1559783(mmo170m6g)
1400268(RA009_everyone)
1310073(05083_GDD_BLN_Q_Docu_r)
4294967295(Unknown+Group)
70145(Authentication authority asserted identity)
3988823(Company All Users)
1507969(W70DP-TC-ALLG-L02)
2344803(Company All Users)
2344803(Company All Users)
1679181(PG DR User Wireless Access)
1049147(Allowed RODC Password Replication Group)
2356083(W70DP-TC-ALLG-L02)
1679179(PG DR User Network Access)
401408(Medium Mandatory Level)

SysDir: C:\WINDOWS\system32
WinDir: C:\WINDOWS

USER = 'matthi'
PWD = '/home/run'
HOME = '/home/matthi'

Use '-r' to scan registry

obcaseinsensitive set to 0

Cygwin installations found in the registry:
  System: Key: c6961885edb8f2c1 Path: C:\Software\OpenFOAM\cygwin64
  User:   Key: 5220efad95c7983f Path: C:\Program Files (x86) (ORPHANED)
  User:   Key: c6961885edb8f2c1 Path: C:\Software\OpenFOAM\cygwin64

c:  hd  NTFS    476424Mb  51% CP CS UN PA FC     SYSTEM
e:  cd             N/A    N/A
t:  net NTFS   11355757Mb  44% CP CS UN PA        msxdata
w:  net NTFS   1736704Mb  74% CP CS UN PA
z:  net NTFS   9371648Mb  74% CP CS UN PA        FS002013105$

C:\Software\OpenFOAM\matthi-3.0.x\run  /home/run  user    binary
C:\Software\OpenFOAM\cygwin64            /          system  binary,auto
C:\Software\OpenFOAM\cygwin64\bin        /usr/bin   system  binary,auto
C:\Software\OpenFOAM\cygwin64\lib        /usr/lib   system  binary,auto
cygdrive prefix                          /cygdrive  user    binary,posix=0,auto

Found: C:\Software\OpenFOAM\cygwin64\bin\awk
 -> C:\Software\OpenFOAM\cygwin64\bin\gawk.exe
Found: C:\Software\OpenFOAM\cygwin64\bin\bash.exe
Found: C:\Software\OpenFOAM\cygwin64\bin\cat.exe
Found: C:\Software\OpenFOAM\cygwin64\bin\cp.exe
Found: C:\Software\OpenFOAM\cygwin64\bin\cpp.exe
Not Found: crontab
Found: C:\Software\OpenFOAM\cygwin64\bin\find.exe
Found: C:\Windows\System32\find.exe
Found: C:\Software\OpenFOAM\cygwin64\bin\gcc.exe
Found: C:\Software\OpenFOAM\cygwin64\bin\gdb.exe
Found: C:\Software\OpenFOAM\cygwin64\bin\grep.exe
Found: C:\Software\OpenFOAM\cygwin64\bin\kill.exe
Found: C:\Software\OpenFOAM\cygwin64\bin\ld.exe
Found: C:\Software\OpenFOAM\cygwin64\bin\ls.exe
Found: C:\Software\OpenFOAM\cygwin64\bin\make.exe
Found: C:\Software\OpenFOAM\cygwin64\bin\mv.exe
Found: C:\Software\OpenFOAM\cygwin64\bin\patch.exe
Found: C:\Software\OpenFOAM\cygwin64\bin\perl.exe
Found: C:\Software\OpenFOAM\cygwin64\bin\rm.exe
Found: C:\Software\OpenFOAM\cygwin64\bin\sed.exe
Found: C:\Software\OpenFOAM\cygwin64\bin\ssh.exe
Found: C:\Software\OpenFOAM\cygwin64\bin\sh.exe
Found: C:\Software\OpenFOAM\cygwin64\bin\tar.exe
Found: C:\Software\OpenFOAM\cygwin64\bin\test.exe
Found: C:\Software\OpenFOAM\cygwin64\bin\vi.exe
Found: C:\Software\OpenFOAM\cygwin64\bin\vim.exe

  621k 2016/11/10 C:\Software\OpenFOAM\cygwin64\bin\cygarchive-13.dll
   39k 2016/09/19 C:\Software\OpenFOAM\cygwin64\bin\cygargp-0.dll
   88k 2016/06/13 C:\Software\OpenFOAM\cygwin64\bin\cygatomic-1.dll
   16k 2013/03/26 C:\Software\OpenFOAM\cygwin64\bin\cygattr-1.dll
25281k 2016/09/06 C:\Software\OpenFOAM\cygwin64\bin\cygblas-0.dll
  180k 2015/03/23 C:\Software\OpenFOAM\cygwin64\bin\cygblkid-1.dll
   64k 2013/03/07 C:\Software\OpenFOAM\cygwin64\bin\cygbz2-1.dll
 1087k 2015/11/23 C:\Software\OpenFOAM\cygwin64\bin\cygcairo-2.dll
   27k 2015/11/23 C:\Software\OpenFOAM\cygwin64\bin\cygcairo-gobject-2.dll
  119k 2015/11/23
C:\Software\OpenFOAM\cygwin64\bin\cygcairo-script-interpreter-2.dll
  487k 2016/07/21 C:\Software\OpenFOAM\cygwin64\bin\cygclang-3.8.dll
  505k 2016/07/21 C:\Software\OpenFOAM\cygwin64\bin\cygclangAnalysis-3.8.dll
 1387k 2016/07/21 C:\Software\OpenFOAM\cygwin64\bin\cygclangARCMigrate-3.8.dll
 2597k 2016/07/21 C:\Software\OpenFOAM\cygwin64\bin\cygclangAST-3.8.dll
  280k 2016/07/21 C:\Software\OpenFOAM\cygwin64\bin\cygclangASTMatchers-3.8.dll
 1536k 2016/07/21 C:\Software\OpenFOAM\cygwin64\bin\cygclangBasic-3.8.dll
 2772k 2016/07/21 C:\Software\OpenFOAM\cygwin64\bin\cygclangCodeGen-3.8.dll
  890k 2016/07/21 C:\Software\OpenFOAM\cygwin64\bin\cygclangDriver-3.8.dll
 1169k 2016/07/21
C:\Software\OpenFOAM\cygwin64\bin\cygclangDynamicASTMatchers-3.8.dll
   52k 2016/07/21 C:\Software\OpenFOAM\cygwin64\bin\cygclangEdit-3.8.dll
  271k 2016/07/21 C:\Software\OpenFOAM\cygwin64\bin\cygclangFormat-3.8.dll
  909k 2016/07/21 C:\Software\OpenFOAM\cygwin64\bin\cygclangFrontend-3.8.dll
   18k 2016/07/21 C:\Software\OpenFOAM\cygwin64\bin\cygclangFrontendTool-3.8.dll
   92k 2016/07/21 C:\Software\OpenFOAM\cygwin64\bin\cygclangIndex-3.8.dll
  623k 2016/07/21 C:\Software\OpenFOAM\cygwin64\bin\cygclangLex-3.8.dll
  775k 2016/07/21 C:\Software\OpenFOAM\cygwin64\bin\cygclangParse-3.8.dll
   57k 2016/07/21 C:\Software\OpenFOAM\cygwin64\bin\cygclangRewrite-3.8.dll
  385k 2016/07/21
C:\Software\OpenFOAM\cygwin64\bin\cygclangRewriteFrontend-3.8.dll
 4933k 2016/07/21 C:\Software\OpenFOAM\cygwin64\bin\cygclangSema-3.8.dll
 1115k 2016/07/21
C:\Software\OpenFOAM\cygwin64\bin\cygclangSerialization-3.8.dll
 2018k 2016/07/21
C:\Software\OpenFOAM\cygwin64\bin\cygclangStaticAnalyzerCheckers-3.8.dll
 1234k 2016/07/21
C:\Software\OpenFOAM\cygwin64\bin\cygclangStaticAnalyzerCore-3.8.dll
  142k 2016/07/21
C:\Software\OpenFOAM\cygwin64\bin\cygclangStaticAnalyzerFrontend-3.8.dll
  244k 2016/07/21 C:\Software\OpenFOAM\cygwin64\bin\cygclangTooling-3.8.dll
   33k 2016/07/21 C:\Software\OpenFOAM\cygwin64\bin\cygclangToolingCore-3.8.dll
   13k 2015/03/19 C:\Software\OpenFOAM\cygwin64\bin\cygcom_err-2.dll
   31k 2013/04/24 C:\Software\OpenFOAM\cygwin64\bin\cygcord-1.dll
   10k 2016/06/09 C:\Software\OpenFOAM\cygwin64\bin\cygcrypt-0.dll
 2235k 2016/09/26 C:\Software\OpenFOAM\cygwin64\bin\cygcrypto-1.0.0.dll
  468k 2016/11/10 C:\Software\OpenFOAM\cygwin64\bin\cygcurl-4.dll
   24k 2014/11/12 C:\Software\OpenFOAM\cygwin64\bin\cygdatrie-1.dll
 1549k 2016/08/22 C:\Software\OpenFOAM\cygwin64\bin\cygdb-5.3.dll
  124k 2016/08/22 C:\Software\OpenFOAM\cygwin64\bin\cygdb_cxx-5.3.dll
  570k 2016/08/22 C:\Software\OpenFOAM\cygwin64\bin\cygdb_sql-5.3.dll
  154k 2013/10/20 C:\Software\OpenFOAM\cygwin64\bin\cygedit-0.dll
  110k 2016/11/11 C:\Software\OpenFOAM\cygwin64\bin\cygEGL-1.dll
  145k 2016/06/21 C:\Software\OpenFOAM\cygwin64\bin\cygexpat-1.dll
   30k 2014/10/14 C:\Software\OpenFOAM\cygwin64\bin\cygfam-0.dll
   27k 2015/11/17 C:\Software\OpenFOAM\cygwin64\bin\cygffi-6.dll
  243k 2016/08/11 C:\Software\OpenFOAM\cygwin64\bin\cygfontconfig-1.dll
   55k 2016/09/19 C:\Software\OpenFOAM\cygwin64\bin\cygformw-10.dll
  597k 2016/07/28 C:\Software\OpenFOAM\cygwin64\bin\cygfreetype-6.dll
  103k 2013/04/24 C:\Software\OpenFOAM\cygwin64\bin\cyggc-1.dll
    8k 2013/04/24 C:\Software\OpenFOAM\cygwin64\bin\cyggccpp-1.dll
   70k 2016/06/13 C:\Software\OpenFOAM\cygwin64\bin\cyggcc_s-seh-1.dll
  346k 2016/08/18 C:\Software\OpenFOAM\cygwin64\bin\cyggd-3.dll
   39k 2016/10/10 C:\Software\OpenFOAM\cygwin64\bin\cyggdbm-4.dll
   13k 2016/10/10 C:\Software\OpenFOAM\cygwin64\bin\cyggdbm_compat-4.dll
 1158k 2016/06/13 C:\Software\OpenFOAM\cygwin64\bin\cyggfortran-3.dll
   38k 2015/03/26 C:\Software\OpenFOAM\cygwin64\bin\cyggg-1.dll
   53k 2015/03/26 C:\Software\OpenFOAM\cygwin64\bin\cygggi-2.dll
   13k 2015/03/26 C:\Software\OpenFOAM\cygwin64\bin\cygggiwmh-0.dll
   30k 2015/03/26 C:\Software\OpenFOAM\cygwin64\bin\cyggii-1.dll
 1276k 2016/06/02 C:\Software\OpenFOAM\cygwin64\bin\cyggio-2.0-0.dll
  459k 2016/11/11 C:\Software\OpenFOAM\cygwin64\bin\cygGL-1.dll
  287k 2016/11/11 C:\Software\OpenFOAM\cygwin64\bin\cygglapi-0.dll
  958k 2016/06/02 C:\Software\OpenFOAM\cygwin64\bin\cygglib-2.0-0.dll
   14k 2016/06/02 C:\Software\OpenFOAM\cygwin64\bin\cyggmodule-2.0-0.dll
  527k 2016/08/28 C:\Software\OpenFOAM\cygwin64\bin\cyggmp-10.dll
  931k 2015/08/28 C:\Software\OpenFOAM\cygwin64\bin\cyggnutls-28.dll
   24k 2015/08/28 C:\Software\OpenFOAM\cygwin64\bin\cyggnutls-openssl-27.dll
   41k 2015/08/28 C:\Software\OpenFOAM\cygwin64\bin\cyggnutlsxx-28.dll
  284k 2016/06/02 C:\Software\OpenFOAM\cygwin64\bin\cyggobject-2.0-0.dll
  105k 2016/06/13 C:\Software\OpenFOAM\cygwin64\bin\cyggomp-1.dll
   10k 2016/06/13
C:\Software\OpenFOAM\cygwin64\bin\cyggomp-plugin-host_nonshm-1.dll
  176k 2016/10/30 C:\Software\OpenFOAM\cygwin64\bin\cyggraphite2-3.dll
  258k 2016/09/26 C:\Software\OpenFOAM\cygwin64\bin\cyggssapi_krb5-2.dll
    9k 2016/06/02 C:\Software\OpenFOAM\cygwin64\bin\cyggthread-2.0-0.dll
  691k 2013/04/22 C:\Software\OpenFOAM\cygwin64\bin\cygguile-17.dll
  389k 2016/10/30 C:\Software\OpenFOAM\cygwin64\bin\cygharfbuzz-0.dll
   30k 2015/01/27 C:\Software\OpenFOAM\cygwin64\bin\cyghistory7.dll
  167k 2016/03/13 C:\Software\OpenFOAM\cygwin64\bin\cyghogweed-2.dll
 1009k 2015/02/20 C:\Software\OpenFOAM\cygwin64\bin\cygiconv-2.dll
  196k 2014/12/06 C:\Software\OpenFOAM\cygwin64\bin\cygidn-11.dll
  212k 2016/11/03 C:\Software\OpenFOAM\cygwin64\bin\cygidn2-0.dll
   42k 2016/10/23 C:\Software\OpenFOAM\cygwin64\bin\cygintl-8.dll
 1039k 2015/09/20 C:\Software\OpenFOAM\cygwin64\bin\cygisl-13.dll
   48k 2014/06/17 C:\Software\OpenFOAM\cygwin64\bin\cygjbig-2.dll
   18k 2014/06/17 C:\Software\OpenFOAM\cygwin64\bin\cygjbig85-2.dll
  403k 2016/08/07 C:\Software\OpenFOAM\cygwin64\bin\cygjpeg-8.dll
  177k 2016/09/26 C:\Software\OpenFOAM\cygwin64\bin\cygk5crypto-3.dll
  722k 2016/09/26 C:\Software\OpenFOAM\cygwin64\bin\cygkrb5-3.dll
   35k 2016/09/26 C:\Software\OpenFOAM\cygwin64\bin\cygkrb5support-0.dll
   45k 2015/11/19 C:\Software\OpenFOAM\cygwin64\bin\cyglber-2-4-2.dll
  246k 2015/11/19 C:\Software\OpenFOAM\cygwin64\bin\cygldap-2-4-2.dll
  262k 2015/11/19 C:\Software\OpenFOAM\cygwin64\bin\cygldap_r-2-4-2.dll
26685k 2016/07/21 C:\Software\OpenFOAM\cygwin64\bin\cygLLVM-3.8.dll
    6k 2016/08/31 C:\Software\OpenFOAM\cygwin64\bin\cyglsa64.dll
   35k 2016/06/28 C:\Software\OpenFOAM\cygwin64\bin\cygltdl-7.dll
  162k 2015/06/04 C:\Software\OpenFOAM\cygwin64\bin\cyglua-5.2.dll
   41k 2015/10/26 C:\Software\OpenFOAM\cygwin64\bin\cyglz4-1.dll
  139k 2015/11/09 C:\Software\OpenFOAM\cygwin64\bin\cyglzma-5.dll
  126k 2014/11/17 C:\Software\OpenFOAM\cygwin64\bin\cyglzo2-2.dll
  114k 2016/01/11 C:\Software\OpenFOAM\cygwin64\bin\cygmagic-1.dll
  169k 2016/10/10 C:\Software\OpenFOAM\cygwin64\bin\cygman-2-7-5.dll
   22k 2016/10/10 C:\Software\OpenFOAM\cygwin64\bin\cygmandb-2-7-5.dll
   29k 2016/09/19 C:\Software\OpenFOAM\cygwin64\bin\cygmenuw-10.dll
   89k 2015/03/01 C:\Software\OpenFOAM\cygwin64\bin\cygmpc-3.dll
  346k 2016/09/27 C:\Software\OpenFOAM\cygwin64\bin\cygmpfr-4.dll
   53k 2016/09/19 C:\Software\OpenFOAM\cygwin64\bin\cygncurses++w-10.dll
  279k 2016/09/19 C:\Software\OpenFOAM\cygwin64\bin\cygncursesw-10.dll
  180k 2016/03/13 C:\Software\OpenFOAM\cygwin64\bin\cygnettle-4.dll
  137k 2016/09/08 C:\Software\OpenFOAM\cygwin64\bin\cygnghttp2-14.dll
  319k 2015/06/01 C:\Software\OpenFOAM\cygwin64\bin\cygp11-kit-0.dll
   14k 2016/09/19 C:\Software\OpenFOAM\cygwin64\bin\cygpanelw-10.dll
  258k 2015/11/15 C:\Software\OpenFOAM\cygwin64\bin\cygpango-1.0-0.dll
   43k 2015/11/15 C:\Software\OpenFOAM\cygwin64\bin\cygpangocairo-1.0-0.dll
   71k 2015/11/15 C:\Software\OpenFOAM\cygwin64\bin\cygpangoft2-1.0-0.dll
   28k 2015/11/15 C:\Software\OpenFOAM\cygwin64\bin\cygpangoxft-1.0-0.dll
  474k 2016/08/11 C:\Software\OpenFOAM\cygwin64\bin\cygpcre-1.dll
 2021k 2016/04/30 C:\Software\OpenFOAM\cygwin64\bin\cygperl5_22.dll
   39k 2015/04/09 C:\Software\OpenFOAM\cygwin64\bin\cygpipeline-1.dll
  638k 2016/08/08 C:\Software\OpenFOAM\cygwin64\bin\cygpixman-1-0.dll
  179k 2016/08/07 C:\Software\OpenFOAM\cygwin64\bin\cygpng16-16.dll
   41k 2016/07/13 C:\Software\OpenFOAM\cygwin64\bin\cygpopt-0.dll
   49k 2016/11/04 C:\Software\OpenFOAM\cygwin64\bin\cygpsl-5.dll
  308k 2016/06/13 C:\Software\OpenFOAM\cygwin64\bin\cygquadmath-0.dll
  207k 2015/01/27 C:\Software\OpenFOAM\cygwin64\bin\cygreadline7.dll
   97k 2014/11/24 C:\Software\OpenFOAM\cygwin64\bin\cygsasl2-3.dll
   11k 2015/07/17 C:\Software\OpenFOAM\cygwin64\bin\cygsigsegv-2.dll
   89k 2015/03/23 C:\Software\OpenFOAM\cygwin64\bin\cygsmartcols-1.dll
  964k 2016/08/15 C:\Software\OpenFOAM\cygwin64\bin\cygsqlite3-0.dll
  156k 2016/03/02 C:\Software\OpenFOAM\cygwin64\bin\cygssh2-1.dll
  398k 2016/09/26 C:\Software\OpenFOAM\cygwin64\bin\cygssl-1.0.0.dll
   12k 2016/06/13 C:\Software\OpenFOAM\cygwin64\bin\cygssp-0.dll
 1325k 2016/06/13 C:\Software\OpenFOAM\cygwin64\bin\cygstdc++-6.dll
   66k 2016/08/22 C:\Software\OpenFOAM\cygwin64\bin\cygtasn1-6.dll
   32k 2014/11/12 C:\Software\OpenFOAM\cygwin64\bin\cygthai-0.dll
   52k 2016/09/19 C:\Software\OpenFOAM\cygwin64\bin\cygticw-10.dll
  420k 2015/10/28 C:\Software\OpenFOAM\cygwin64\bin\cygtiff-6.dll
   11k 2015/10/28 C:\Software\OpenFOAM\cygwin64\bin\cygtiffxx-6.dll
  218k 2016/05/10 C:\Software\OpenFOAM\cygwin64\bin\cygtxc_dxtn.dll
 1538k 2015/10/16 C:\Software\OpenFOAM\cygwin64\bin\cygunistring-2.dll
   15k 2015/03/23 C:\Software\OpenFOAM\cygwin64\bin\cyguuid-1.dll
    8k 2016/06/13 C:\Software\OpenFOAM\cygwin64\bin\cygvtv-0.dll
    8k 2016/06/13 C:\Software\OpenFOAM\cygwin64\bin\cygvtv_stubs-0.dll
  344k 2016/07/08 C:\Software\OpenFOAM\cygwin64\bin\cygwebp-5.dll
 1128k 2016/10/09 C:\Software\OpenFOAM\cygwin64\bin\cygX11-6.dll
    9k 2016/10/09 C:\Software\OpenFOAM\cygwin64\bin\cygX11-xcb-1.dll
   12k 2013/06/06 C:\Software\OpenFOAM\cygwin64\bin\cygXau-6.dll
  121k 2016/08/09 C:\Software\OpenFOAM\cygwin64\bin\cygxcb-1.dll
   76k 2016/08/09 C:\Software\OpenFOAM\cygwin64\bin\cygxcb-glx-0.dll
   41k 2016/08/09 C:\Software\OpenFOAM\cygwin64\bin\cygxcb-render-0.dll
   12k 2016/08/09 C:\Software\OpenFOAM\cygwin64\bin\cygxcb-shm-0.dll
   21k 2015/03/26 C:\Software\OpenFOAM\cygwin64\bin\cygXdmcp-6.dll
   56k 2014/08/10 C:\Software\OpenFOAM\cygwin64\bin\cygXext-6.dll
   73k 2014/08/10 C:\Software\OpenFOAM\cygwin64\bin\cygXft-2.dll
 1213k 2016/08/26 C:\Software\OpenFOAM\cygwin64\bin\cygxml2-2.dll
   59k 2014/01/15 C:\Software\OpenFOAM\cygwin64\bin\cygXpm-4.dll
   36k 2016/01/29 C:\Software\OpenFOAM\cygwin64\bin\cygXrender-1.dll
   12k 2013/03/14 C:\Software\OpenFOAM\cygwin64\bin\cygXss-1.dll
   80k 2014/11/19 C:\Software\OpenFOAM\cygwin64\bin\cygz.dll
   61k 2015/03/26 C:\Software\OpenFOAM\cygwin64\bin\cygzip-2.dll
 3229k 2016/08/31 C:\Software\OpenFOAM\cygwin64\bin\cygwin1.dll
    Cygwin DLL version info:
        DLL version: 2.6.0
        DLL epoch: 19
        DLL old termios: 5
        DLL malloc env: 28
        Cygwin conv: 181
        API major: 0
        API minor: 304
        Shared data: 5
        DLL identifier: cygwin1
        Mount registry: 3
        Cygwin registry name: Cygwin
        Installations name: Installations
        Cygdrive default prefix:
        Build date:
        Shared id: cygwin1S5

  451k 2016/06/25 C:\Software\OpenFOAM\cygwin64\lib\lapack\cygblas-0.dll
 6102k 2016/06/25 C:\Software\OpenFOAM\cygwin64\lib\lapack\cyglapack-0.dll


Cygwin Package Information
Package                                 Version                      Status
_autorebase                             001004-1                     OK
alternatives                            1.3.30c-10                   OK
autoconf                                13-1                         OK
autoconf2.1                             2.13-12                      OK
autoconf2.5                             2.69-3                       OK
automake                                9-1                          OK
automake1.10                            1.10.3-2                     OK
automake1.11                            1.11.6-2                     OK
automake1.12                            1.12.6-2                     OK
automake1.13                            1.13.4-1                     OK
automake1.14                            1.14.1-2                     OK
automake1.15                            1.15-1                       OK
automake1.4                             1.4p6-11                     OK
automake1.5                             1.5-11                       OK
automake1.6                             1.6.3-12                     OK
automake1.7                             1.7.9-11                     OK
automake1.8                             1.8.5-11                     OK
automake1.9                             1.9.6-11                     OK
base-cygwin                             3.8-1                        OK
base-files                              4.2-4                        OK
bash                                    4.3.46-7                     OK
binutils                                2.25-4                       OK
bison                                   3.0.4-1                      OK
byacc                                   20160606-1                   OK
bzip2                                   1.0.6-2                      OK
ca-certificates                         2.10-1                       OK
cmake                                   3.6.2-1                      OK
coreutils                               8.25-3                       OK
csih                                    0.9.9-1                      OK
cygrunsrv                               1.62-1                       OK
cygutils                                1.4.15-2                     OK
cygwin                                  2.6.0-1                      OK
cygwin-devel                            2.6.0-1                      OK
dash                                    0.5.8-3                      OK
dejavu-fonts                            2.37-1                       OK
desktop-file-utils                      0.23-1                       OK
diffutils                               3.5-1                        OK
doxygen                                 1.8.12-1                     OK
dri-drivers                             12.0.4-1                     OK
editrights                              1.03-1                       OK
file                                    5.25-1                       OK
findutils                               4.6.0-1                      OK
flex                                    2.6.1-1                      OK
flexdll                                 0.34-1                       OK
gamin                                   0.1.10-15                    OK
gawk                                    4.1.4-1                      OK
gcc-core                                5.4.0-1                      OK
gcc-fortran                             5.4.0-1                      OK
gcc-g++                                 5.4.0-1                      OK
gdb                                     7.10.1-1                     OK
getent                                  2.18.90-4                    OK
git                                     2.8.3-1                      OK
git-gui                                 2.8.3-1                      OK
gitk                                    2.8.3-1                      OK
gnuplot                                 5.0.3-1                      OK
grep                                    2.25-1                       OK
groff                                   1.22.3-1                     OK
gsettings-desktop-schemas               3.18.1-1                     OK
gzip                                    1.8-1                        OK
hostname                                3.13-1                       OK
info                                    6.3-1                        OK
ipc-utils                               1.0-2                        OK
less                                    481-1                        OK
libarchive13                            3.2.2-1                      OK
libargp                                 20110921-3                   OK
libatomic1                              5.4.0-1                      OK
libattr1                                2.4.46-1                     OK
libblkid1                               2.25.2-2                     OK
libbz2_1                                1.0.6-2                      OK
libcairo2                               1.14.4-1                     OK
libclang3.8                             3.8.1-1                      OK
libcom_err2                             1.42.12-2                    OK
libcrypt0                               1.4-1                        OK
libcurl4                                7.51.0-1                     OK
libdatrie1                              0.2.8-1                      OK
libdb5.3                                5.3.28-1                     OK
libedit0                                20130712-1                   OK
libEGL1                                 12.0.4-1                     OK
libexpat1                               2.2.0-0                      OK
libfam0                                 0.1.10-15                    OK
libffi6                                 3.2.1-2                      OK
libfontconfig-common                    2.12.1-1                     OK
libfontconfig1                          2.12.1-1                     OK
libfreetype6                            2.6.5-1                      OK
libgc1                                  7.2d-2                       OK
libgcc1                                 5.4.0-1                      OK
libgd3                                  2.2.3-1                      OK
libgdbm4                                1.12-1                       OK
libgfortran3                            5.4.0-1                      OK
libggi2                                 2.2.2-4                      OK
libggiwmh0                              0.3.2-4                      OK
libgii1                                 1.0.2-4                      OK
libGL1                                  12.0.4-1                     OK
libglapi0                               12.0.4-1                     OK
libglib2.0_0                            2.46.2-4                     OK
libgmp10                                6.1.1-1                      OK
libgnutls28                             3.3.17-1                     OK
libgomp1                                5.4.0-1                      OK
libgraphite2_3                          1.3.8-1                      OK
libgssapi_krb5_2                        1.14.4-1                     OK
libguile17                              1.8.8-1                      OK
libharfbuzz0                            1.3.3-1                      OK
libhogweed2                             2.7.1-1                      OK
libiconv                                1.14-3                       OK
libiconv2                               1.14-3                       OK
libidn11                                1.29-1                       OK
libidn2_0                               0.11-1                       OK
libintl8                                0.19.8.1-2                   OK
libisl13                                0.14.1-1                     OK
libjbig2                                2.0-14                       OK
libjpeg8                                1.5.0-1                      OK
libk5crypto3                            1.14.4-1                     OK
libkrb5_3                               1.14.4-1                     OK
libkrb5support0                         1.14.4-1                     OK
liblapack-devel                         3.6.1-1                      OK
liblapack0                              3.6.1-1                      OK
libllvm3.8                              3.8.1-1                      OK
libltdl7                                2.4.6-4                      OK
liblz4_1                                131-1                        OK
liblzma5                                5.2.2-1                      OK
liblzo2_2                               2.08-1                       OK
libmpc3                                 1.0.3-1                      OK
libmpfr4                                3.1.5-1                      OK
libncursesw10                           6.0-8.20160917               OK
libnettle4                              2.7.1-1                      OK
libnghttp2_14                           1.14.0-1                     OK
libopenblas                             0.2.19-1                     OK
libopenldap2_4_2                        2.4.42-1                     OK
libopenssl100                           1.0.2j-1                     OK
libp11-kit0                             0.22.1-1                     OK
libpango1.0_0                           1.38.1-1                     OK
libpcre1                                8.39-1                       OK
libpipeline1                            1.4.0-1                      OK
libpixman1_0                            0.34.0-1                     OK
libpng16                                1.6.24-1                     OK
libpopt-common                          1.16-2                       OK
libpopt0                                1.16-2                       OK
libpsl5                                 0.14.0-2                     OK
libquadmath0                            5.4.0-1                      OK
libreadline7                            6.3.8-1                      OK
libsasl2_3                              2.1.26-9                     OK
libsigsegv2                             2.10-2                       OK
libsmartcols1                           2.25.2-2                     OK
libsqlite3_0                            3.14.1-1                     OK
libssh2_1                               1.7.0-1                      OK
libssp0                                 5.4.0-1                      OK
libstdc++6                              5.4.0-1                      OK
libtasn1_6                              4.9-1                        OK
libthai0                                0.1.21-1                     OK
libtiff6                                4.0.6-1                      OK
libtxc_dxtn                             1.0-1.20151227gitf6ec862     OK
libunistring2                           0.9.6-1                      OK
libuuid-devel                           2.25.2-2                     OK
libuuid1                                2.25.2-2                     OK
libvtv0                                 5.4.0-1                      OK
libwebp5                                0.4.4-1                      OK
libX11-xcb1                             1.6.4-1                      OK
libX11_6                                1.6.4-1                      OK
libXau6                                 1.0.8-1                      OK
libxcb-glx0                             1.12-1                       OK
libxcb-render0                          1.12-1                       OK
libxcb-shm0                             1.12-1                       OK
libxcb1                                 1.12-1                       OK
libXdmcp6                               1.1.2-1                      OK
libXext6                                1.3.3-1                      OK
libXft2                                 2.3.2-1                      OK
libxml2                                 2.9.4-1                      OK
libXpm4                                 3.5.11-1                     OK
libXrender1                             0.9.9-1                      OK
libXss1                                 1.2.2-1                      OK
libzip2                                 0.11.2-2                     OK
login                                   1.11-1                       OK
lua                                     5.2.4-1                      OK
m4                                      1.4.17-2                     OK
make                                    4.2.1-1                      OK
man-db                                  2.7.5-2                      OK
mingw64-x86_64-binutils                 2.25.0.1.23f238d-1           OK
mingw64-x86_64-bzip2                    1.0.6-4                      OK
mingw64-x86_64-gcc-core                 5.4.0-3                      OK
mingw64-x86_64-gcc-g++                  5.4.0-3                      OK
mingw64-x86_64-headers                  5.0.0-1                      OK
mingw64-x86_64-runtime                  5.0.0-1                      OK
mingw64-x86_64-windows-default-manifest 6.4-1                        OK
mingw64-x86_64-winpthreads              5.0.0-1                      OK
mintty                                  2.7.0-0                      OK
nano                                    2.7.0-1                      OK
ncurses                                 6.0-8.20160917               OK
openssh                                 7.3p1-2                      OK
openssl                                 1.0.2j-1                     OK
p11-kit                                 0.22.1-1                     OK
p11-kit-trust                           0.22.1-1                     OK
patch                                   2.7.4-1                      OK
perl                                    5.22.2-1                     OK
perl-Carp                               1.38-1                       OK
perl-Error                              0.17024-1                    OK
perl-Pod-Simple                         3.32-1                       OK
perl-TermReadKey                        2.37-1                       OK
perl-Unicode-Normalize                  1.25-1                       OK
perl_autorebase                         5.22.2-1                     OK
perl_base                               5.22.2-1                     OK
pkg-config                              0.29.1-1                     OK
python                                  2.7.12-1                     OK
rebase                                  4.4.2-1                      OK
rsync                                   3.1.2-1                      OK
run                                     1.3.4-2                      OK
rxvt                                    2.7.10-1                     OK
sed                                     4.2.2-3                      OK
shared-mime-info                        1.7-1                        OK
tar                                     1.28-1                       OK
tcl                                     8.5.18-1                     OK
tcl-tk                                  8.5.18-1                     OK
terminfo                                6.0-8.20160917               OK
texinfo                                 6.3-1                        OK
tree                                    1.7.0-1                      OK
tzdata                                  2016i-1                      OK
util-linux                              2.25.2-2                     OK
vim                                     7.4.2367-1                   OK
vim-common                              7.4.2367-1                   OK
vim-minimal                             7.4.2367-1                   OK
w32api-headers                          4.0.4-1                      OK
w32api-runtime                          4.0.4-1                      OK
w3m                                     0.5.3-3                      OK
wget                                    1.18-1                       OK
which                                   2.20-2                       OK
windows-default-manifest                6.4-1                        OK
xorg-x11-fonts-dpi75                    7.5-3                        OK
xxd                                     7.4.2367-1                   OK
xz                                      5.2.2-1                      OK
zlib0                                   1.2.8-3                      OK
Use -h to see help about each sectio

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2016-11-18 16:33 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-18 15:15 case sensitivity on Windows 7 Enterprise with NTFS drive Matthias Herz
2016-11-18 15:32 ` cyg Simple
2016-11-18 15:35 ` Corinna Vinschen
2016-11-18 15:51   ` cyg Simple
2016-11-18 16:33     ` Corinna Vinschen
2016-11-18 18:45 Matthias Herz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).