public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* How to correctly rebase?
@ 2015-10-14 14:26 Dr Rainer Woitok
  2015-10-14 17:27 ` Warren Young
  2015-10-14 19:58 ` Achim Gratz
  0 siblings, 2 replies; 27+ messages in thread
From: Dr Rainer Woitok @ 2015-10-14 14:26 UTC (permalink / raw)
  To: cygwin

Cygwinners,

Currently I'm a bit at my wit's end :-/

I locally built a product from source (Gdal), and while running the test
programs, I got

   python2.7 8800 child_info_fork::abort: unable to remap _gdalconst.dll
   to same address as parent (0x260000) - try running rebaseall

Searching a bit, I found

   /usr/share/doc/Cygwin/_autorebase.README

telling me to place the list of absolute paths  of my personal DLLs into
/var/lib/rebase/user.d/Rainer",  to run  "rebase-trigger fullrebase" (it
didn't advice to run this from a privileged account, but I found out my-
self), and finally to simply run "setup_x86.exe" in the normal way, that
is, without any other Cygwin processes executing.

After doing so, I rebooted and tested again, but this time I got

   python2.7 8136 child_info_fork::abort: address space needed by
   '_io.dll' (0x370000) is already occupied
   2324 [main] python2.7 9104 child_info_fork::abort: unable to remap
   time.dll to same address as parent (0x270000) - try running rebaseall

However, these two libraries are both residing in

   /usr/lib/python2.7/lib-dynload/

and have nothing to do with my own Gdal libraries.  And running Mercuri-
al or almost any other  Python application now fails,  asking me to "try
running rebaseall".  I then tried to run

   rebaseall -v -T /var/lib/rebase/user.d/Rainer

directly from a privileged Ash Shell (again without any other Cygwin ac-
tivity) returning me a fine list of new bases and  sizes for all librar-
ies, but Python still refuses to work.

What did I do wrong  (to avoid it  in the future)  but more importantly,
how can I remedy the current situation?

Any quick help appreciated, since Python and Mercurial are vital for me.

Sincerely,
  Rainer

PS: Please also reply by personal mail to me,  as I am not subscribed to
this mailing list.

--
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] 27+ messages in thread

* Re: How to correctly rebase?
  2015-10-14 14:26 How to correctly rebase? Dr Rainer Woitok
@ 2015-10-14 17:27 ` Warren Young
  2015-10-14 19:27   ` Achim Gratz
  2015-10-15 13:16   ` Dr Rainer Woitok
  2015-10-14 19:58 ` Achim Gratz
  1 sibling, 2 replies; 27+ messages in thread
From: Warren Young @ 2015-10-14 17:27 UTC (permalink / raw)
  To: cygwin, Rainer.Woitok

On Oct 14, 2015, at 8:17 AM, Dr Rainer Woitok <rainer.woitok@gmail.com> wrote:
> 
> telling me to place the list of absolute paths  of my personal DLLs into
> /var/lib/rebase/user.d/Rainer”

It doesn’t actually care what the file is called.  I expect the only reason the docs tell you to name it that way is in case there are multiple users on the system, they’re all running from a common Cygwin installation, and each may have their own set of customizations.

> to run  "rebase-trigger fullrebase" (it
> didn't advice to run this from a privileged account, but I found out my-
> self)

I don’t see that it’s a foregone conclusion that admin privs are required for that step.  The file that script creates could be in a user-writeable directory.  Nevertheless, the maintainer of that doc file probably should consider mentioning the possibility.

While investigating this, I found that the rebase mechanism isn’t as robust as it should be.

The core problem I ran into is that /var/cache/rebase and /var/lib/rebase/*.d didn’t exist on my system, and this caused various complaints and failures.  I propose that the _autorebase maintainer add those directories to the package, so they’re always available.

/var/cache/rebase is the critical one: without it, the rebase-trigger script can’t set the trigger, so the rebasing will never happen.  The lack of the others just causes nonfatal complaints.

To do it by hand, start Dash with admin privs as you did before — this next bit really does require admin — then type:

    /etc/postinstall/0p_*

If it gives errors other than ones about missing /var/lib/rebase/*.d directories, post them here, or fix them.  Once I fixed all the errors I got here, full autorebasing via setup.exe started working again.

(Which makes me wonder how it got broken, since the Windows VM I tested this on isn’t used heavily, and was created not all that long ago.)

> After doing so, I rebooted and tested again

You should not have to reboot.  If you do, it means you’re ignoring complaints from setup.exe about files being in use during the installation, which could be part of the problem.

Shut down *everything* linked to cygwin1.dll, however indirectly, while setup.exe and the rebasing processes run.

> PS: Please also reply by personal mail to me,  as I am not subscribed to
> this mailing list.

You expect direct personal consultation?  My fee for that is $100/hr, and you’ve chewed up one hour already.  Where shall I send the bill? :)

If you want free community help, you are expected to participate in the community.  I’m Cc’ing you directly on this one just as a courtesy.
--
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] 27+ messages in thread

* Re: How to correctly rebase?
  2015-10-14 17:27 ` Warren Young
@ 2015-10-14 19:27   ` Achim Gratz
  2015-10-14 21:30     ` Warren Young
  2015-10-15 13:16   ` Dr Rainer Woitok
  1 sibling, 1 reply; 27+ messages in thread
From: Achim Gratz @ 2015-10-14 19:27 UTC (permalink / raw)
  To: cygwin

Warren Young writes:
> On Oct 14, 2015, at 8:17 AM, Dr Rainer Woitok
> <rainer.woitok@gmail.com> wrote:
>>  telling me to place the list of absolute paths of my personal DLLs
>> into /var/lib/rebase/user.d/Rainer”
>
> It doesn’t actually care what the file is called.  I expect the only
> reason the docs tell you to name it that way is in case there are
> multiple users on the system, they’re all running from a common Cygwin
> installation, and each may have their own set of customizations.

Yes.

>> to run "rebase-trigger fullrebase" (it didn't advice to run this
>> from a privileged account, but I found out my- self)
>
> I don’t see that it’s a foregone conclusion that admin privs are
> required for that step.  The file that script creates could be in a
> user-writeable directory.  Nevertheless, the maintainer of that doc
> file probably should consider mentioning the possibility.

Noted.

> While investigating this, I found that the rebase mechanism isn’t as
> robust as it should be.
>
> The core problem I ran into is that /var/cache/rebase and
> /var/lib/rebase/*.d didn’t exist on my system, and this caused various
> complaints and failures.  I propose that the _autorebase maintainer
> add those directories to the package, so they’re always available.

They actually are packaged, so I'm not sure why they wouldn't be
available on your system.  In other words you should see an "incomplete"
package from cygcheck and a re-installation should fix it.

> /var/cache/rebase is the critical one: without it, the rebase-trigger
> script can’t set the trigger, so the rebasing will never happen.  The
> lack of the others just causes nonfatal complaints.

I'll check if I can just re-create the directory if it doesn't exist.

> (Which makes me wonder how it got broken, since the Windows VM I
> tested this on isn’t used heavily, and was created not all that long
> ago.)

Maybe if you find something in /var/log/setup.log you could let me know.


Regards,
Achim.
-- 
+<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+

Samples for the Waldorf Blofeld:
http://Synth.Stromeko.net/Downloads.html#BlofeldSamplesExtra

--
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] 27+ messages in thread

* Re: How to correctly rebase?
  2015-10-14 14:26 How to correctly rebase? Dr Rainer Woitok
  2015-10-14 17:27 ` Warren Young
@ 2015-10-14 19:58 ` Achim Gratz
  1 sibling, 0 replies; 27+ messages in thread
From: Achim Gratz @ 2015-10-14 19:58 UTC (permalink / raw)
  To: cygwin

Dr Rainer Woitok writes:
> I locally built a product from source (Gdal), and while running the test
> programs, I got
>
>    python2.7 8800 child_info_fork::abort: unable to remap _gdalconst.dll
>    to same address as parent (0x260000) - try running rebaseall

This address is really low, so either some BLODA interferes with the
loading of the DLL or you're having far too many packages installed than
can possibly coexist on a 32bit installation.

If it's a real-time virus scanner, especially of the heuristical sort,
you need to exempt all installation paths for DLL used by Cygwin from
getting picked up.

> After doing so, I rebooted and tested again, but this time I got
>
>    python2.7 8136 child_info_fork::abort: address space needed by
>    '_io.dll' (0x370000) is already occupied
>    2324 [main] python2.7 9104 child_info_fork::abort: unable to remap
>    time.dll to same address as parent (0x270000) - try running rebaseall

So the rebase map changed and you're now having the same problem with
different libraries, interestingly enough in about the same address
range.  Unless the image base of those two libraries really now is
0x370000 and 0x270000 (which I doubt, there are many more libraries that
come _after_ those in a full rebase), then that is again hinting at
BLODA.  Do you use any (perhaps commercial) software that is based on
Cygwin or MSys under the hood?  Their DLL will have a high propensity of
interfering with Cygwin unless you include them in the rebase or block
out the range of image addresses that they use.

> PS: Please also reply by personal mail to me,  as I am not subscribed to
> this mailing list.

You can read the answers in the mailing list archive or on Gmane.org 

Regards,
Achim.
-- 
+<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+

Wavetables for the Terratec KOMPLEXER:
http://Synth.Stromeko.net/Downloads.html#KomplexerWaves

--
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] 27+ messages in thread

* Re: How to correctly rebase?
  2015-10-14 19:27   ` Achim Gratz
@ 2015-10-14 21:30     ` Warren Young
  2015-10-14 22:08       ` Warren Young
  2015-10-15  7:15       ` Achim Gratz
  0 siblings, 2 replies; 27+ messages in thread
From: Warren Young @ 2015-10-14 21:30 UTC (permalink / raw)
  To: The Cygwin Mailing List

On Oct 14, 2015, at 1:27 PM, Achim Gratz wrote:
> 
> Warren Young writes:
>> I propose that the _autorebase maintainer
>> add those directories to the package, so they’re always available.
> 
> They actually are packaged, so I'm not sure why they wouldn't be
> available on your system.

I’ve just checked the source package, and you’re right.  That means my system got broken sometime after February 5, 2015 the last time _autorebase was updated.

> In other words you should see an "incomplete"
> package from cygcheck and a re-installation should fix it.

Alas, I already reinstalled it while debugging the problem.

>> /var/cache/rebase is the critical one: without it, the rebase-trigger
>> script can’t set the trigger, so the rebasing will never happen.  The
>> lack of the others just causes nonfatal complaints.
> 
> I'll check if I can just re-create the directory if it doesn't exist.

Put "mkdir -p ${b}" somewhere near the top of 0p_000_autorebase.dash or rebaselst.

>> (Which makes me wonder how it got broken, since the Windows VM I
>> tested this on isn’t used heavily, and was created not all that long
>> ago.)
> 
> Maybe if you find something in /var/log/setup.log you could let me know.

Well, here’s a fun find: The last time that file was written to was November 4, 2014, even though I did two or there setup.exe passes today while composing my prior reply.

$ getfacl /var/log/setup.log
# file: /var/log/setup.log
# owner: Warren
# group: Warren
user::rw-
group::---
other:r—

So, why is setup.exe not writing to it?  604 is a weird permission set, but does it really need world writability?

I get the same permission set when saying “touch x” on this box.

Windows 10, 64-bit.
--
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] 27+ messages in thread

* Re: How to correctly rebase?
  2015-10-14 21:30     ` Warren Young
@ 2015-10-14 22:08       ` Warren Young
  2015-10-14 22:37         ` Warren Young
  2015-10-15  7:15       ` Achim Gratz
  1 sibling, 1 reply; 27+ messages in thread
From: Warren Young @ 2015-10-14 22:08 UTC (permalink / raw)
  To: The Cygwin Mailing List

On Oct 14, 2015, at 3:30 PM, Warren Young <warren@etr-usa.com> wrote:
> 
> So, why is setup.exe not writing to it?  604 is a weird permission set, but does it really need world writability?

Nope.  I said “chmod 666 /var/log/setup.log”, and setup.exe still isn’t writing anything new to it.

(That resulted in 606 permissions, for some reason.  I have no idea why I effectively have an 0070 umask on this system, even though “umask” from the normal Cygwin terminal says 0022.)

Then, since I thought I remembered that setup.exe had a mode where it wrote debugging stuff to stdout/stderr, I tried running “setup-x86_64.exe -vB” from a dash admin shell, but got nothing on the console.
--
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] 27+ messages in thread

* Re: How to correctly rebase?
  2015-10-14 22:08       ` Warren Young
@ 2015-10-14 22:37         ` Warren Young
  2015-10-15  7:53           ` Achim Gratz
  0 siblings, 1 reply; 27+ messages in thread
From: Warren Young @ 2015-10-14 22:37 UTC (permalink / raw)
  To: The Cygwin Mailing List

On Oct 14, 2015, at 4:08 PM, Warren Young wrote:
> 
> On Oct 14, 2015, at 3:30 PM, Warren Young wrote:
>> 
>> So, why is setup.exe not writing to it?  604 is a weird permission set, but does it really need world writability?
> 
> Nope.  I said “chmod 666 /var/log/setup.log”, and setup.exe still isn’t writing anything new to it.

Well, RTFS for the win: setup/main.cc, line 290 purposely fails to initialize the logger when it’s running with elevated permissions, as it will be when running under UAC.

I can think of some weak reasons why that might be the case, but nothing that convinces me that this is the right thing to do.

Anyway, this has drifted off topic for this list.  Anyone who cares enough to take it further should move the discussion to the cygwin-apps list.
--
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] 27+ messages in thread

* Re: How to correctly rebase?
  2015-10-14 21:30     ` Warren Young
  2015-10-14 22:08       ` Warren Young
@ 2015-10-15  7:15       ` Achim Gratz
  1 sibling, 0 replies; 27+ messages in thread
From: Achim Gratz @ 2015-10-15  7:15 UTC (permalink / raw)
  To: cygwin

Warren Young <warren <at> etr-usa.com> writes:
> $ getfacl /var/log/setup.log
> # file: /var/log/setup.log
> # owner: Warren
> # group: Warren
> user::rw-
> group::---
> other:r—
> 
> So, why is setup.exe not writing to it?  604 is a weird permission set,
but does it really need world writability?
> 
> I get the same permission set when saying “touch x” on this box.
> 
> Windows 10, 64-bit.

You seem to be using a Microsoft Account rather than a local one.  That has
the wierd effect that the SID for the user and the group becomes identical.
 Corinna already added a few workarounds here and there for this, but it may
not be complete and setup may also need to do something extra in this case.
 I've never used a Microsoft Account, so I can't help any further with this.


Regards,
Achim.




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

* Re: How to correctly rebase?
  2015-10-14 22:37         ` Warren Young
@ 2015-10-15  7:53           ` Achim Gratz
  0 siblings, 0 replies; 27+ messages in thread
From: Achim Gratz @ 2015-10-15  7:53 UTC (permalink / raw)
  To: cygwin

Warren Young <wyml <at> etr-usa.com> writes:
> Well, RTFS for the win: setup/main.cc, line 290 purposely fails to
initialize the logger when it’s
> running with elevated permissions, as it will be when running under UAC.

Sure, but it then executes itself with the admin rights already applied and
the child process should initialize the logger.

> I can think of some weak reasons why that might be the case, but nothing
that convinces me that this is the
> right thing to do.

You'd otherwise be overwriting the log from the child process, I'd think. 
But the two Logger calls on lines 333+334 shouldn't be there.

> Anyway, this has drifted off topic for this list.  Anyone who cares enough
to take it further should move the
> discussion to the cygwin-apps list.

Please drop a note there.


Regards,
Achim.



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

* Re: How to correctly rebase?
  2015-10-14 17:27 ` Warren Young
  2015-10-14 19:27   ` Achim Gratz
@ 2015-10-15 13:16   ` Dr Rainer Woitok
  2015-10-15 20:54     ` Warren Young
  1 sibling, 1 reply; 27+ messages in thread
From: Dr Rainer Woitok @ 2015-10-15 13:16 UTC (permalink / raw)
  To: Warren Young; +Cc: cygwin

Warren and All,

On Wednesday, 2015-10-14 11:27:46 -0600, you wrote:

> ...
> The core problem I ran into is that /var/cache/rebase and
> /var/lib/rebase/*.d didn’t exist on my system, and this caused various
> complaints and failures.

On my system all these directories existed, as well as file "/var/cache/
rebase/fullrebase.done".   And I'm pretty  sure I didn't  install any of
these manually,  so I assume  they are  (or at least were) automatically
installed by the "_autorebase" package.

> ...
>     /etc/postinstall/0p_*

After looking at script "0p_000_autorebase.dash" I decided against using
it directly because it does not provide  a means to pass the "--verbose"
option to script "rebaselst".   So I ended up directly running what "0p_
000_autorebase.dash" would have called, saving standard output and stan-
dard error to two files:

   rebaselst --verbose --rebuild update --cleardb rebase

QUESTION: Script "0p_000_autorebase.dash" also passes the options "--no-
aslr" and "peflags" to "rebaselst",  provided the flag file "/var/cache/
rebase/peflags" is existing.  Should I use these options here?

Excerpt from the standard output log file:

removing /var/cache/rebase/rebase_pkg
creating empty /var/cache/rebase/rebase_pkg
Updating package information in /var/cache/rebase/rebase_pkg.
	from /etc/setup/adwaita-icon-theme.lst.gz...
	from /etc/setup/adwaita-themes.lst.gz...
...
	from /etc/setup/_autorebase.lst.gz...
	from /etc/setup/_update-info-dir.lst.gz...
removing /var/cache/rebase/rebase_lst
creating empty /var/cache/rebase/rebase_lst
Updating rebase information for installed dynamic objects in /var/cache/rebase/rebase_lst.
Updating rebase information for installed executables in /var/cache/rebase/rebase_exe.
removing /var/cache/rebase/rebase_dyn
creating empty /var/cache/rebase/rebase_dyn
Looking for dynamic language modules/libraries in:
  /usr/lib/python2.7/site-packages
Updating rebase information for dynamic language modules/libraries /var/cache/rebase/rebase_dyn.
removing /var/cache/rebase/rebase_user
creating empty /var/cache/rebase/rebase_user
Updating rebase information for user-defined dynamic objects /var/cache/rebase/rebase_user.
removing /var/cache/rebase/rebase_user_exe
creating empty /var/cache/rebase/rebase_user_exe
Updating rebase information for user-defined executables /var/cache/rebase/rebase_user_exe.
Rebasing with list /var/cache/rebase/rebase_all, built from /var/cache/rebase/rebase_lst /var/cache/rebase/rebase_dyn /var/cache/rebase/rebase_user.
/usr/share/texmf-dist/tex/plain/gustlib/licz/licz-tst.mex: skipped because not rebaseable
...
/usr/share/texmf-dist/tex/plain/gustlib/plbtx993/test.mex: skipped because not rebaseable
/usr/libexec/coreutils/libstdbuf.so: new base = 32b40000, new size = 10000
/usr/lib/xorg/modules/extensions/cygglx.dll: new base = 32b50000, new size = 60000
...
/usr/lib/python2.7/lib-dynload/select.dll: new base = 37c60000, new size = 10000
...
/usr/lib/python2.7/lib-dynload/operator.dll: new base = 37cd0000, new size = 10000
...
/usr/lib/python2.7/lib-dynload/_socket.dll: new base = 37f10000, new size = 20000
...

End of the  standard ouput log file.   The standard error  log file con-
tains the following:

ReBaseImage (/usr/bin/cygintl-8.dll) failed with last error = 6
ReBaseImage (/usr/bin/cygiconv-2.dll) failed with last error = 6

The following DLLs couldn't be rebased due to errors:
  /usr/bin/cygintl-8.dll
  /usr/bin/cygiconv-2.dll

End of the standard error log file.

QUESTION: Do these errors indicate a problem?

QUESTION: I called "rebaselst" with  the "--cleardb" option which should
cause it to pass "-b 0x70000000" to "rebase" (this is an "i386" system).
Why then are we starting above at a base of 0x32b40000?

And finally, Python still refuses to run, producing at least three diff-
erent error messages when, for instance, calling Mercurial (the "rebase"
output for these three libraries is listed above):

$ hg commit
      1 [main] python2.7 40584 child_info_fork::abort: address space needed by 'select.dll' (0x370000) is already occupied
abort: Resource temporarily unavailable
$ hg commit
      1 [main] python2.7 32648 child_info_fork::abort: unable to remap operator.dll to same address as parent (0x360000) - try running rebaseall
abort: Resource temporarily unavailable
$ hg commit
      1 [main] python2.7 6496 child_info_fork::abort: address space needed by '_ssl.dll' (0x2B0000) is already occupied
abort: Resource temporarily unavailable

QUESTION:What am I supposed to do next?

> ...
> You should not have to reboot.  If you do, it means you’re ignoring
> complaints from setup.exe about files being in use during the
> installation, which could be part of the problem.

There definitely weren't any complaints from "setup_x86.exe".   I didn't
say I HAD to reboot, I just said I did it.

Well, to sum it up: it seems I'm needing more help :-(

Sincerely,
  Rainer

PS: And since I'm still not  on this list because  I can't really handle
the traffic, please also reply to me personally.  Thanks.

 ----------------------------------------------------------------------
| Rainer M Woitok                | Phone : (+49 60 93) 487 95 95       |
| Kolpingstraße 3                | Mobile: (+49 172) 813 6 831         |
| D-63846 Laufach                | Mail  : Rainer.Woitok@Gmail.Com     |
| Germany                        |                                     |
 ----------------------------------------------------------------------

--
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] 27+ messages in thread

* Re: How to correctly rebase?
  2015-10-15 13:16   ` Dr Rainer Woitok
@ 2015-10-15 20:54     ` Warren Young
  2015-10-15 21:10       ` Ken Brown
  2015-10-16  7:21       ` Achim Gratz
  0 siblings, 2 replies; 27+ messages in thread
From: Warren Young @ 2015-10-15 20:54 UTC (permalink / raw)
  To: cygwin, Rainer.Woitok

On Oct 15, 2015, at 7:16 AM, Dr Rainer Woitok <rainer.woitok@gmail.com> wrote:
> 
> /usr/share/texmf-dist/tex/plain/gustlib/licz/licz-tst.mex: skipped because not rebaseable

I think these are a harmless confusion of mex-the-Metafont-format with mex-the-Octave-plugin-format.  

You can ignore them.

It would be nice if rebase were smart enough to look for *.mex and *.oct only in known Octave directories, but it isn’t my itch, so I’m not going to be doing anything about it.

> The following DLLs couldn't be rebased due to errors:
>  /usr/bin/cygintl-8.dll
>  /usr/bin/cygiconv-2.dll

I got similar errors in my testing, though with different libraries.  I reinstalled those library packages and the errors went away.

The only complaints I still see are about a 32-bit libstdc++ for cross-compiling on this 64-bit system, which is harmless.

> QUESTION: I called "rebaselst" with  the "--cleardb" option which should
> cause it to pass "-b 0x70000000" to "rebase" (this is an "i386" system).
> Why then are we starting above at a base of 0x32b40000?

Because BLODA?  I don’t see that you’ve reported going through the BLODA list and ruling out all the possibilities there:

  https://cygwin.com/faq/faq.html#faq.using.bloda

As for the 32-bit issue, that may be part of the problem.  64-bit greatly reduces the problems that rebase tries to cure, simply because it’s much harder to have a collision in such a large address space.

> PS: And since I'm still not  on this list because  I can't really handle
> the traffic, please also reply to me personally.  Thanks.

Your inability to filter 50 messages a day to a junk folder or use Gmane does not constitute a requirement that we send email directly to you.

Gmail even has a feature for this, sending mailing list traffic off to the Forums tab by default, so you don’t even have to go see it if you don’t want to.
--
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] 27+ messages in thread

* Re: How to correctly rebase?
  2015-10-15 20:54     ` Warren Young
@ 2015-10-15 21:10       ` Ken Brown
  2015-10-16 12:57         ` Dr Rainer Woitok
  2015-10-16  7:21       ` Achim Gratz
  1 sibling, 1 reply; 27+ messages in thread
From: Ken Brown @ 2015-10-15 21:10 UTC (permalink / raw)
  To: cygwin; +Cc: Rainer.Woitok

On 10/15/2015 4:53 PM, Warren Young wrote:
> On Oct 15, 2015, at 7:16 AM, Dr Rainer Woitok <rainer.woitok@gmail.com> wrote:
>>
>> /usr/share/texmf-dist/tex/plain/gustlib/licz/licz-tst.mex: skipped because not rebaseable
>
> I think these are a harmless confusion of mex-the-Metafont-format with mex-the-Octave-plugin-format.
>
> You can ignore them.
>
> It would be nice if rebase were smart enough to look for *.mex and *.oct only in known Octave directories, but it isn’t my itch, so I’m not going to be doing anything about it.
>
>> The following DLLs couldn't be rebased due to errors:
>>   /usr/bin/cygintl-8.dll
>>   /usr/bin/cygiconv-2.dll
>
> I got similar errors in my testing, though with different libraries.  I reinstalled those library packages and the errors went away.

Another possibility is that those DLLs were in use.  Rainer, did you make sure 
that no Cygwin processes were running other than dash?
>
> The only complaints I still see are about a 32-bit libstdc++ for cross-compiling on this 64-bit system, which is harmless.
>
>> QUESTION: I called "rebaselst" with  the "--cleardb" option which should
>> cause it to pass "-b 0x70000000" to "rebase" (this is an "i386" system).
>> Why then are we starting above at a base of 0x32b40000?
>
> Because BLODA?

No, it's because rebase is called with the -s option, which implies the -d 
option, which means that it starts at 0x70000000 and works down.  Rainer, you 
can run 'rebase -is' to see the full list of base addresses.

Ken

--
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] 27+ messages in thread

* Re: How to correctly rebase?
  2015-10-15 20:54     ` Warren Young
  2015-10-15 21:10       ` Ken Brown
@ 2015-10-16  7:21       ` Achim Gratz
  2015-10-16 20:11         ` Warren Young
  1 sibling, 1 reply; 27+ messages in thread
From: Achim Gratz @ 2015-10-16  7:21 UTC (permalink / raw)
  To: cygwin

Warren Young <wyml <at> etr-usa.com> writes:
> It would be nice if rebase were smart enough to look for *.mex and *.oct
only in known Octave directories, but
> it isn’t my itch, so I’m not going to be doing anything about it.

I'll see if that's possible without running yet another find  or at least
not running them more than once on the same directory.

> > The following DLLs couldn't be rebased due to errors:
> >  /usr/bin/cygintl-8.dll
> >  /usr/bin/cygiconv-2.dll
> 
> I got similar errors in my testing, though with different libraries.  I
reinstalled those library packages
> and the errors went away.

The most likely source of those errors is that some Cygwin process still
hangs around in the background.  Next up is that the files are inaccessible,
which can be fixed by reinstalling.  Last but not least if BLODA opens the
DLL while rebase is trying to work on it, then rebase will fail as well (if
it's always different DLL that throw the error then that's the most likely
axplanation even).


Regards,
Achim.

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

* Re: How to correctly rebase?
  2015-10-15 21:10       ` Ken Brown
@ 2015-10-16 12:57         ` Dr Rainer Woitok
  2015-10-16 12:58           ` Ken Brown
  0 siblings, 1 reply; 27+ messages in thread
From: Dr Rainer Woitok @ 2015-10-16 12:57 UTC (permalink / raw)
  To: Ken Brown; +Cc: cygwin

Ken,

On Thursday, 2015-10-15 17:10:38 -0400, you wrote:

> ...
> Another possibility is that those DLLs were in use.  Rainer, did you make sure 
> that no Cygwin processes were running other than dash?

Well, at least  I tried to.   I ran "/bin/ps -ef"  and only saw one "ps"
and one "ash" process.

> ...
> No, it's because rebase is called with the -s option, which implies the -d 
> option, which means that it starts at 0x70000000 and works down.

Thanks for the explanation.  This had escaped me.

>                                                                   Rainer, you 
> can run 'rebase -is' to see the full list of base addresses.

I did, and I think this list os more or less the same as the output from
"rebaslst".  But I'll compare more thoroughly later.  What caught my eye
though is that both lists seemed sorted more or less with respect to de-
scending file names, except for

/usr/bin/cygLLVM-3.1.dll                     base 0x5ca90000 size 0x0128a000  
/home/Rainer/repo/netcdf/bin/cygnetcdf-7.dll base 0x5dd20000 size 0x032a0000  
/usr/bin/cygORBitCosNaming-2-0.dll           base 0x61580000 size 0x0000c000  

All my other local DLLs appear at the very end  of these lists.  Is this
just the way "rebase" works internally or does this indicate a problem?

Talking about problems:  Python still  does not work  (and perhaps other
stuff I just haven't yet tried).  Should I try re-installing Python?

But I would be more at rest if this all would be sort of explainable.

Sincerely,
  Rainer

PS: Please also reply to me personally, as I am currently not subscribed
to this list (though I'm considering to join it,  due to urgent pleas by
others :-)

 ----------------------------------------------------------------------
| Rainer M Woitok                | Phone : (+49 60 93) 487 95 95       |
| Kolpingstraße 3                | Mobile: (+49 172) 813 6 831         |
| D-63846 Laufach                | Mail  : Rainer.Woitok@Gmail.Com     |
| Germany                        |                                     |
 ----------------------------------------------------------------------

--
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] 27+ messages in thread

* Re: How to correctly rebase?
  2015-10-16 12:57         ` Dr Rainer Woitok
@ 2015-10-16 12:58           ` Ken Brown
  2015-10-16 15:08             ` Ken Brown
  0 siblings, 1 reply; 27+ messages in thread
From: Ken Brown @ 2015-10-16 12:58 UTC (permalink / raw)
  To: cygwin, Rainer.Woitok

On 10/16/2015 4:49 AM, Dr Rainer Woitok wrote:
> Ken,
>
> On Thursday, 2015-10-15 17:10:38 -0400, you wrote:
>
>> ...
>> Another possibility is that those DLLs were in use.  Rainer, did you make sure
>> that no Cygwin processes were running other than dash?
>
> Well, at least  I tried to.   I ran "/bin/ps -ef"  and only saw one "ps"
> and one "ash" process.
>
>> ...
>> No, it's because rebase is called with the -s option, which implies the -d
>> option, which means that it starts at 0x70000000 and works down.
>
> Thanks for the explanation.  This had escaped me.
>
>>                                                                    Rainer, you
>> can run 'rebase -is' to see the full list of base addresses.
>
> I did, and I think this list os more or less the same as the output from
> "rebaslst".  But I'll compare more thoroughly later.  What caught my eye
> though is that both lists seemed sorted more or less with respect to de-
> scending file names, except for
>
> /usr/bin/cygLLVM-3.1.dll                     base 0x5ca90000 size 0x0128a000
> /home/Rainer/repo/netcdf/bin/cygnetcdf-7.dll base 0x5dd20000 size 0x032a0000
> /usr/bin/cygORBitCosNaming-2-0.dll           base 0x61580000 size 0x0000c000
>
> All my other local DLLs appear at the very end  of these lists.  Is this
> just the way "rebase" works internally or does this indicate a problem?

I don't know off the top of my head, but I wouldn't worry about this.
>
> Talking about problems:  Python still  does not work  (and perhaps other
> stuff I just haven't yet tried).  Should I try re-installing Python?
>
> But I would be more at rest if this all would be sort of explainable.

As Warren and Achim have both suggested, you may just have too many DLLs for 
32-bit Cygwin.  Can you uninstall some unneeded packages?  Or switch to 64-bit 
Cygwin?

By the way, I don't think you have yet attached cygcheck output as requested in 
http://cygwin.com/problems.html:  "Run cygcheck -s -v -r > cygcheck.out and 
include that file as an attachment in your report.  Please do not compress or 
otherwise encode the output.  Just attach it as a straight text file so that it 
can be easily viewed."  Maybe someone will spot something.

Ken

--
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] 27+ messages in thread

* Re: How to correctly rebase?
  2015-10-16 12:58           ` Ken Brown
@ 2015-10-16 15:08             ` Ken Brown
  2015-10-16 15:16               ` cyg Simple
                                 ` (2 more replies)
  0 siblings, 3 replies; 27+ messages in thread
From: Ken Brown @ 2015-10-16 15:08 UTC (permalink / raw)
  To: cygwin, Rainer.Woitok

On 10/16/2015 8:58 AM, Ken Brown wrote:
> On 10/16/2015 4:49 AM, Dr Rainer Woitok wrote:
>> Ken,
>>
>> On Thursday, 2015-10-15 17:10:38 -0400, you wrote:
>>
>>> ...
>>> Another possibility is that those DLLs were in use.  Rainer, did you make sure
>>> that no Cygwin processes were running other than dash?
>>
>> Well, at least  I tried to.   I ran "/bin/ps -ef"  and only saw one "ps"
>> and one "ash" process.
>>
>>> ...
>>> No, it's because rebase is called with the -s option, which implies the -d
>>> option, which means that it starts at 0x70000000 and works down.
>>
>> Thanks for the explanation.  This had escaped me.
>>
>>>                                                                    Rainer, you
>>> can run 'rebase -is' to see the full list of base addresses.
>>
>> I did, and I think this list os more or less the same as the output from
>> "rebaslst".  But I'll compare more thoroughly later.  What caught my eye
>> though is that both lists seemed sorted more or less with respect to de-
>> scending file names, except for
>>
>> /usr/bin/cygLLVM-3.1.dll                     base 0x5ca90000 size 0x0128a000
>> /home/Rainer/repo/netcdf/bin/cygnetcdf-7.dll base 0x5dd20000 size 0x032a0000
>> /usr/bin/cygORBitCosNaming-2-0.dll           base 0x61580000 size 0x0000c000
>>
>> All my other local DLLs appear at the very end  of these lists.  Is this
>> just the way "rebase" works internally or does this indicate a problem?
>
> I don't know off the top of my head, but I wouldn't worry about this.
>>
>> Talking about problems:  Python still  does not work  (and perhaps other
>> stuff I just haven't yet tried).  Should I try re-installing Python?
>>
>> But I would be more at rest if this all would be sort of explainable.
>
> As Warren and Achim have both suggested, you may just have too many DLLs for
> 32-bit Cygwin.  Can you uninstall some unneeded packages?  Or switch to 64-bit
> Cygwin?
>
> By the way, I don't think you have yet attached cygcheck output as requested in
> http://cygwin.com/problems.html:  "Run cygcheck -s -v -r > cygcheck.out and
> include that file as an attachment in your report.  Please do not compress or
> otherwise encode the output.  Just attach it as a straight text file so that it
> can be easily viewed."  Maybe someone will spot something.

I have one other suggestion: If you rebase because of a fork failure, reboot 
before retrying the application that failed.  I just had the following experience:

I was running emacs on my 32-bit Cygwin installation and got a fork failure 
involving /usr/bin/cygMagickCore-6.Q16-2.dll.  Windows had loaded this DLL at a 
very low address.  I did a full rebase and restarted emacs, but that DLL was 
still loaded at a low address, even though rebasing had put the base address at 
a very reasonable 0x6e550000.  [You can see where a DLL is loaded in a process's 
address space by examining the file /proc/<PID>/maps.]  I then rebooted, 
restarted emacs, and verified that the DLL was now loaded at 0x6e550000, as 
expected.

I've seen this happen many times.  I don't know the explanation, but my guess is 
that Windows does some caching that causes it to try to load a given DLL at the 
same base address as it used the last time that DLL was loaded.  Rebooting 
clears the cache.  Can someone who understands this stuff confirm my guess or 
provide a better explanation?

Ken

--
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] 27+ messages in thread

* Re: How to correctly rebase?
  2015-10-16 15:08             ` Ken Brown
@ 2015-10-16 15:16               ` cyg Simple
  2015-10-16 15:29                 ` Ken Brown
  2015-10-16 15:50               ` Andrey Repin
  2015-10-18 11:15               ` Dr Rainer Woitok
  2 siblings, 1 reply; 27+ messages in thread
From: cyg Simple @ 2015-10-16 15:16 UTC (permalink / raw)
  To: cygwin

On 10/16/2015 11:07 AM, Ken Brown wrote:
> On 10/16/2015 8:58 AM, Ken Brown wrote:
>> On 10/16/2015 4:49 AM, Dr Rainer Woitok wrote:
>>> Ken,
>>>
>>> On Thursday, 2015-10-15 17:10:38 -0400, you wrote:
>>>
>>>> ...
>>>> Another possibility is that those DLLs were in use.  Rainer, did you
>>>> make sure
>>>> that no Cygwin processes were running other than dash?
>>>
>>> Well, at least  I tried to.   I ran "/bin/ps -ef"  and only saw one "ps"
>>> and one "ash" process.
>>>
>>>> ...
>>>> No, it's because rebase is called with the -s option, which implies
>>>> the -d
>>>> option, which means that it starts at 0x70000000 and works down.
>>>
>>> Thanks for the explanation.  This had escaped me.
>>>
>>>>                                                                   
>>>> Rainer, you
>>>> can run 'rebase -is' to see the full list of base addresses.
>>>
>>> I did, and I think this list os more or less the same as the output from
>>> "rebaslst".  But I'll compare more thoroughly later.  What caught my eye
>>> though is that both lists seemed sorted more or less with respect to de-
>>> scending file names, except for
>>>
>>> /usr/bin/cygLLVM-3.1.dll                     base 0x5ca90000 size
>>> 0x0128a000
>>> /home/Rainer/repo/netcdf/bin/cygnetcdf-7.dll base 0x5dd20000 size
>>> 0x032a0000
>>> /usr/bin/cygORBitCosNaming-2-0.dll           base 0x61580000 size
>>> 0x0000c000
>>>
>>> All my other local DLLs appear at the very end  of these lists.  Is this
>>> just the way "rebase" works internally or does this indicate a problem?
>>
>> I don't know off the top of my head, but I wouldn't worry about this.
>>>
>>> Talking about problems:  Python still  does not work  (and perhaps other
>>> stuff I just haven't yet tried).  Should I try re-installing Python?
>>>
>>> But I would be more at rest if this all would be sort of explainable.
>>
>> As Warren and Achim have both suggested, you may just have too many
>> DLLs for
>> 32-bit Cygwin.  Can you uninstall some unneeded packages?  Or switch
>> to 64-bit
>> Cygwin?
>>
>> By the way, I don't think you have yet attached cygcheck output as
>> requested in
>> http://cygwin.com/problems.html:  "Run cygcheck -s -v -r >
>> cygcheck.out and
>> include that file as an attachment in your report.  Please do not
>> compress or
>> otherwise encode the output.  Just attach it as a straight text file
>> so that it
>> can be easily viewed."  Maybe someone will spot something.
> 
> I have one other suggestion: If you rebase because of a fork failure,
> reboot before retrying the application that failed.  I just had the
> following experience:
> 
> I was running emacs on my 32-bit Cygwin installation and got a fork
> failure involving /usr/bin/cygMagickCore-6.Q16-2.dll.  Windows had
> loaded this DLL at a very low address.  I did a full rebase and
> restarted emacs, but that DLL was still loaded at a low address, even
> though rebasing had put the base address at a very reasonable
> 0x6e550000.  [You can see where a DLL is loaded in a process's address
> space by examining the file /proc/<PID>/maps.]  I then rebooted,
> restarted emacs, and verified that the DLL was now loaded at 0x6e550000,
> as expected.
> 
> I've seen this happen many times.  I don't know the explanation, but my
> guess is that Windows does some caching that causes it to try to load a
> given DLL at the same base address as it used the last time that DLL was
> loaded.  Rebooting clears the cache.  Can someone who understands this
> stuff confirm my guess or provide a better explanation?

Could it be something similar to
http://windowsitpro.com/systems-management/how-can-i-stop-windows-caching-dll-file-after-i-close-program-was-accessing-it?

-- 
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] 27+ messages in thread

* Re: How to correctly rebase?
  2015-10-16 15:16               ` cyg Simple
@ 2015-10-16 15:29                 ` Ken Brown
  0 siblings, 0 replies; 27+ messages in thread
From: Ken Brown @ 2015-10-16 15:29 UTC (permalink / raw)
  To: cygwin

On 10/16/2015 11:15 AM, cyg Simple wrote:
> On 10/16/2015 11:07 AM, Ken Brown wrote:
>> I've seen this happen many times.  I don't know the explanation, but my
>> guess is that Windows does some caching that causes it to try to load a
>> given DLL at the same base address as it used the last time that DLL was
>> loaded.  Rebooting clears the cache.  Can someone who understands this
>> stuff confirm my guess or provide a better explanation?
>
> Could it be something similar to
> http://windowsitpro.com/systems-management/how-can-i-stop-windows-caching-dll-file-after-i-close-program-was-accessing-it?

That article only talks about shell-extension DLLs, but it does sound similar.

Ken

--
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] 27+ messages in thread

* Re: How to correctly rebase?
  2015-10-16 15:08             ` Ken Brown
  2015-10-16 15:16               ` cyg Simple
@ 2015-10-16 15:50               ` Andrey Repin
  2015-10-18 11:15               ` Dr Rainer Woitok
  2 siblings, 0 replies; 27+ messages in thread
From: Andrey Repin @ 2015-10-16 15:50 UTC (permalink / raw)
  To: Ken Brown, cygwin

Greetings, Ken Brown!

> I have one other suggestion: If you rebase because of a fork failure, reboot
> before retrying the application that failed.  I just had the following experience:

> I was running emacs on my 32-bit Cygwin installation and got a fork failure 
> involving /usr/bin/cygMagickCore-6.Q16-2.dll.  Windows had loaded this DLL at a
> very low address.  I did a full rebase and restarted emacs, but that DLL was 
> still loaded at a low address, even though rebasing had put the base address at
> a very reasonable 0x6e550000.  [You can see where a DLL is loaded in a process's
> address space by examining the file /proc/<PID>/maps.]  I then rebooted, 
> restarted emacs, and verified that the DLL was now loaded at 0x6e550000, as 
> expected.

> I've seen this happen many times.  I don't know the explanation, but my guess is
> that Windows does some caching that causes it to try to load a given DLL at the
> same base address as it used the last time that DLL was loaded.  Rebooting 
> clears the cache.  Can someone who understands this stuff confirm my guess or 
> provide a better explanation?

prefetch/superfetch ?
I normally disable this crap. I can live with boot times 15 seconds longer,
and these kinds of services proved to slow down the system over the years at
all times, no matter what is claimed in advertising.


-- 
With best regards,
Andrey Repin
Friday, October 16, 2015 18:40:11

Sorry for my terrible english...


--
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] 27+ messages in thread

* Re: How to correctly rebase?
  2015-10-16  7:21       ` Achim Gratz
@ 2015-10-16 20:11         ` Warren Young
  2015-12-18 16:28           ` Achim Gratz
  0 siblings, 1 reply; 27+ messages in thread
From: Warren Young @ 2015-10-16 20:11 UTC (permalink / raw)
  To: The Cygwin Mailing List

On Oct 16, 2015, at 1:18 AM, Achim Gratz wrote:
> 
> Warren Young writes:
>> It would be nice if rebase were smart enough to look for *.mex and *.oct
> only in known Octave directories, but
>> it isn’t my itch, so I’m not going to be doing anything about it.
> 
> I'll see if that's possible without running yet another find

How about something like 

    find /usr -name ${extensions} | grep -vP '(?<!octave)mex' | ditto-for-oct

The syntax isn’t vetted, but basically I’m saying that GNU grep’s Perl-compatible regex mode supports negative lookbehind, which seems like it should do what you want here.

I’ve restricted it to /usr on the theory that DLLs will always be in /bin, /usr/bin, /usr/lib/*, or /usr/share/*, and that /bin and /usr/bin are the same on Cygwin.  Are there any official Cygwin packages that put them elsewhere?
--
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] 27+ messages in thread

* Re: How to correctly rebase?
  2015-10-16 15:08             ` Ken Brown
  2015-10-16 15:16               ` cyg Simple
  2015-10-16 15:50               ` Andrey Repin
@ 2015-10-18 11:15               ` Dr Rainer Woitok
  2015-10-18 11:59                 ` Achim Gratz
                                   ` (3 more replies)
  2 siblings, 4 replies; 27+ messages in thread
From: Dr Rainer Woitok @ 2015-10-18 11:15 UTC (permalink / raw)
  To: Ken Brown; +Cc: cygwin

Ken and Others,

On Friday, 2015-10-16 11:07:58 -0400, Ken Brown wrote:

> On 10/16/2015 8:58 AM, Ken Brown wrote:
> ...
> > As Warren and Achim have both suggested, you may just have too many DLLs for
> > 32-bit Cygwin.

Just to make sure: Are we talking  about Windows and Windows application
DLLs PLUS Cygwin and  Cygwin application DLLs?   Or are we  just talking
about Cygwin and Cygwin application DLLs?

> >                 Can you uninstall some unneeded packages?

I'm sure I can.  In the course of  using Cygwin I've installed plenty of
packages and  have also uninstalled  some again.   And each  package in-
stalled has also  installed all the packages  it depends on,  while each
package deinstalled has naturally left all its dependees on my system.

Question:  is there some command  line tool which lists all dependencies
for a given package?   I could then  write a small  shell script to find
out the list of  packages which are not  required by any  other package.
And if I then  find packages  in this list  which I don't  require, too,
I've found some candidates ...

> >                                                            Or switch to 64-bit
> > Cygwin?

Well, it's a bit strange: the hardware in fact IS 64 bit,  but the Vista
running on it is 32 bit,  because this laptop  is a convertible and some
of the tablet  specific drivers,  for instance for the stylus,  were (at
least five years ago) only available as 32  bit versions.  So the quest-
ion is:  what does 64 bit Cygwin require?   Only any Windows on a 64 bit
hardware or a 64 bit Windows on a 64  bit hardware?   I suspect it's the
latter ...

> > By the way, I don't think you have yet attached cygcheck output as requested in
> > http://cygwin.com/problems.html:

You are right.  That was mainly because my initial problem wasn't of the
kind "What's wrong with my Cygwin installation?"  but rather of the kind
"What's wrong with my way to rebase my Cygwin DLLs?".  I've appended the
output below,  and I really hope  you're right,  and somebody  will spot
something there ...

> > ...
> 
> I have one other suggestion: If you rebase because of a fork failure, reboot 
> before retrying the application that failed.

Didn't help in my case.  What I will try next:

1. Forget all my own libraries and only rebase Cygwin's.

2. If that doesn't help: repeat step 1 but with ZoneAlarm disabled.

I'll keep you informed.

Sincerely,
  Rainer

----------------------- Begin of "cygcheck.out": -----------------------

Cygwin Configuration Diagnostics
Current System Time: Sun Oct 18 11:15:25 2015

Windows Vista Business Ver 6.0 Build 6002 Service Pack 2

Path:	C:\cygwin\home\Rainer\local
	C:\cygwin\home\Rainer\user
	C:\cygwin\home\Rainer\util
	C:\cygwin\home\Rainer\bin
	C:\cygwin\bin
	C:\cygwin\usr\i686-pc-cygwin\bin
	C:\Windows
	C:\cygwin\usr\X11R6\bin
	C:\cygwin\usr\local\bin
	C:\Windows\System32
	C:\Program Files\Windows Photo Gallery
	C:\Program Files\Windows NT\Accessories
	C:\Program Files\Windows Media Player
	C:\Program Files\Windows Journal
	C:\Program Files\Windows Calendar
	C:\Program Files\Viking
	C:\Program Files\VideoLAN\VLC
	C:\Program Files\TeraTerm\ttpro313
	C:\Program Files\SysInternalsSuite
	C:\Program Files\Mozilla Firefox
	C:\Program Files\Java\jre1.8.0_60\bin
	C:\Program Files\Java\jre1.8.0_51\bin
	C:\Program Files\IrfanView
	C:\Program Files\Adobe\Acrobat 10.0\Acrobat

Output from C:\cygwin\bin\id.exe
UID: 0(Chef)                 GID: 544(root)
544(root)                    197121(win)
545(user)                    4(INTERACTIVE)
11(Authenticated Users)      15(This Organization)
4095(CurrentSession)         66048(LOCAL)
262154(NTLM Authentication)  405504(High Mandatory Level)

SysDir: C:\Windows\system32
WinDir: C:\Windows

USER = 'Chef'
PWD = '/'
CYGWIN = 'glob:noignorecase proc_retry:10 nodosfilewarning server winsymlinks'
HOME = '/home/Chef'

_ZONE_ = 'CEST'
TRACE_FORMAT_SEARCH_PATH = '\\NTREL202.ntdev.corp.microsoft.com\4F18C3A5-CA09-4DBD-B6FC-219FDD4C6BE0\TraceFormat'
_SCREEN_WIDTH_ = '1280'
MANPATH = '/usr/share/man'
APPDATA = 'C:\Users\Chef\AppData\Roaming'
LOGIN_HOME = '/home/Chef'
HOSTNAME = 'tablet'
_DONE_priv_ = '1'
_SAFETY_WRAPPER_ = ':'
_NO_TTY_ = '/home/Chef/.profile.d/.interactive/.profile'
HOST = 'tablet'
SHELL = '/usr/bin/sh'
TERM = 'rxvt-unicode-256color'
PROCESSOR_IDENTIFIER = 'x86 Family 6 Model 23 Stepping 6, GenuineIntel'
DFSTRACINGON = 'FALSE'
HISTSIZE = '99999'
PROFILEREAD = 'true'
WINDIR = 'C:\Windows'
_XEMACS_ = '/usr/bin/xemacs'
_FIREFOX_DEFAULT_ARGS_ = '-no-remote -P priv'
FPATH = '/home/Rainer/local/functions:/home/Rainer/user/functions:/home/Rainer/util/functions'
PUBLIC = 'C:\Users\Public'
WINDOWID = '16777222'
OLDPWD = '/'
TIME_STYLE = 'long-iso'
ORIGINAL_PATH = '/usr/bin'
USERDOMAIN = 'tablet'
OS = 'Cygwin'
ALLUSERSPROFILE = 'C:\ProgramData'
_LESS_ = '/usr/bin/less'
CDPATH = '.:..:../..:../../..'
TEMP = '/tmp'
COMMONPROGRAMFILES = 'C:\Program Files\Common Files'
XENVIRONMENT = '/home/Chef/.Xresources-tablet'
LOGIN_USER = 'Chef'
MAILCHECK = '2147483647'
_TERM_POS_ = '-'
ENV = '${_NO_TTY_[(_=1)+(_$-=0)-_${-%%*i*}]}'
LESSBINFMT = '*s%02X'
TMOUT = '0'
LESSCHARDEF = '8bcccbcc18b95.33b96.'
USERNAME = 'Chef'
PAGER = 'less'
_FAST_CONN_ = '0'
_TOP_ = '/usr/bin/top'
PROCESSOR_LEVEL = '6'
MAIL = '/home/Chef/.MAILBOX'
_FIND_ = '-L'
_TILDE_ = '^ '
LC_COLLATE = 'C'
FP_NO_HOST_CHECK = 'NO'
SYSTEMDRIVE = 'C:'
_SU_ = 'NoPath/su'
EDITOR = '/usr/bin/xemacs'
LANG = 'en_US.UTF-8'
USERPROFILE = 'C:\Users\Chef'
FCEDIT = 'env _BASIC_=1 _FILL_MODE_=0 /usr/bin/xemacs -u Chef'
_CLEARED_ROOT_HIST_ = '1'
TZ = 'Europe/Berlin'
XFILESEARCHPATH = '/etc/X11/%L/%T/%N%C%S:/etc/X11/%l/%T/%N%C%S:/etc/X11/%T/%N%C%S:/etc/X11/%L/%T/%N%S:/etc/X11/%l/%T/%N%S:/etc/X11/%T/%N%S:/usr/lib/X11/%L/%T/%N%C%S:/usr/lib/X11/%l/%T/%N%C%S:/usr/lib/X11/%T/%N%C%S:/usr/lib/X11/%L/%T/%N%S:/usr/lib/X11/%l/%T/%N%S:/usr/lib/X11/%T/%N%S:/usr/share/X11/%L/%T/%N%C%S:/usr/share/X11/%l/%T/%N%C%S:/usr/share/X11/%T/%N%C%S:/usr/share/X11/%L/%T/%N%S:/usr/share/X11/%l/%T/%N%S:/usr/share/X11/%T/%N%S'
ROOT = '#'
PS1 = '[tablet:$_DIR_]
$?^[[7m(!)^[[27m#'
PS3 = 'Select#'
PROCESSOR_ARCHITECTURE = 'x86'
LOCALAPPDATA = 'C:\Users\Chef\AppData\Local'
!C: = 'C:\cygwin\bin'
_TAR_ = '/usr/bin/tar'
PS2 = 'Continue...#'
_WRONG_DISPLAY_ = 'nodisp'
ProgramData = 'C:\ProgramData'
EXECIGNORE = '*.dll'
SHLVL = '3'
PS4 = 'Trace: '
COLORFGBG = '0;default'
_SCREEN_HEIGHT_ = '800'
PATHEXT = '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC'
MANLESS = 'man \$MAN_PN %lt-%lb?L/%L. (%dt)?PB %Pb\%.%t\:'
_TERM_ = '/usr/bin/urxvt'
MAILPATH = '/home/Chef/.MAILBOX'
PROMPT = '$P$G'
COMSPEC = 'C:\Windows\system32\cmd.exe'
LESS = 'EiXP?f%f:less. %lt-%lb?L/%L. (%dt)?PB %Pb\%.%t\:'
_EMACS_SIZE_ = '80x34'
TMP = '/tmp'
SYSTEMROOT = 'C:\Windows'
PRINTER = 'Send To OneNote 2007'
PROCESSOR_REVISION = '1706'
tvdumpflags = '8'
_WINDOW_TOP_ = '5'
_HOST_PROP_ = 'i686|Cygwin|tablet'
EMAIL = 'Rainer Woitok <Chef@tablet>'
MAILREADER = 'xemacs'
ARCH = 'i686'
_AWK_ = '/usr/bin/gawk'
INFOPATH = '/usr/local/info:/usr/share/info:/usr/info'
PROGRAMFILES = 'C:\Program Files'
_USER_INDEX_ = '0'
DISPLAY = ':0'
_FULL_ = '/usr/bin/which'
NUMBER_OF_PROCESSORS = '2'
_TERM_SIZE_ = '80x36'
_DATE_ = '/usr/bin/date'
HISTFILE = '/home/Chef/.history.woitok/since.2015-10-18.12.14.24.pid.7864'
COMPUTERNAME = 'TABLET'
_PG_ = '/usr/bin/pg'
COLORTERM = 'rxvt-xpm'
_ = '/usr/bin/cygcheck'

HKEY_CURRENT_USER\Console\C:_cygwin_bin_ash.exe
  (default) = 0x00000000
  QuickEdit = 0x00000000
  ScreenBufferSize = 0x012c0050
  WindowSize = 0x001d0050
  FontSize = 0x000c0008
  FontFamily = 0x00000030
  FontWeight = 0x00000190
HKEY_CURRENT_USER\Console\Cygwin Bash Shell
  (default) = 0x000000f0
  PopupColors = 0x000000f9
  ColorTable00 = 0x00000000
  ColorTable01 = 0x00800000
  ColorTable02 = 0x00008000
  ColorTable03 = 0x00808000
  ColorTable04 = 0x00000080
  ColorTable05 = 0x00800080
  ColorTable06 = 0x00008080
  ColorTable07 = 0x00c0c0c0
  ColorTable08 = 0x00808080
  ColorTable09 = 0x00ff0000
  ColorTable10 = 0x0000ff00
  ColorTable11 = 0x00ffff00
  ColorTable12 = 0x000000ff
  ColorTable13 = 0x00ff00ff
  ColorTable14 = 0x0000ffff
  ColorTable15 = 0x00ffffff
  InsertMode = 0x00000001
  QuickEdit = 0x00000001
  FullScreen = 0x00000000
  ScreenBufferSize = 0x03e70050
  WindowSize = 0x00060050
  FontSize = 0x000c0008
  FontFamily = 0x00000030
  FontWeight = 0x00000190
  FaceName = 'Terminal'
  CursorSize = 0x00000019
  HistoryBufferSize = 0x000003e7
  NumberOfHistoryBuffers = 0x00000004
  HistoryNoDup = 0x00000000
  WindowPosition = 0x029e0000
HKEY_CURRENT_USER\Console\Cygwin Bash Shell (2)
  (default) = 0x000000f0
  PopupColors = 0x000000f9
  ColorTable00 = 0x00000000
  ColorTable01 = 0x00800000
  ColorTable02 = 0x00008000
  ColorTable03 = 0x00808000
  ColorTable04 = 0x00000080
  ColorTable05 = 0x00800080
  ColorTable06 = 0x00008080
  ColorTable07 = 0x00c0c0c0
  ColorTable08 = 0x00808080
  ColorTable09 = 0x00ff0000
  ColorTable10 = 0x0000ff00
  ColorTable11 = 0x00ffff00
  ColorTable12 = 0x000000ff
  ColorTable13 = 0x00ff00ff
  ColorTable14 = 0x0000ffff
  ColorTable15 = 0x00ffffff
  InsertMode = 0x00000001
  QuickEdit = 0x00000001
  FullScreen = 0x00000000
  ScreenBufferSize = 0x03e70050
  WindowSize = 0x003c0050
  FontSize = 0x000c0008
  FontFamily = 0x00000030
  FontWeight = 0x00000190
  FaceName = 'Terminal'
  CursorSize = 0x00000019
  HistoryBufferSize = 0x000003e7
  NumberOfHistoryBuffers = 0x00000004
  HistoryNoDup = 0x00000000
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_CURRENT_USER\Software\Cygwin
HKEY_CURRENT_USER\Software\Cygwin\Installations
  (default) = '\??\C:\cygwin'
HKEY_CURRENT_USER\Software\Cygwin\Program Options
HKEY_CURRENT_USER\Software\Cygwin\setup
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.com%2fcygwin%2f
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.com%2fcygwin%2f\OpenWithList
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\XLaunch.cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\XLaunch.cygwin\DefaultIcon
  (default) = 'C:\cygwin\bin\xlaunch.exe,1'
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\XLaunch.cygwin\Shell
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\XLaunch.cygwin\Shell\Edit
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\XLaunch.cygwin\Shell\Edit\command
  (default) = '"C:\cygwin\bin\run" --quote "C:\cygwin\bin\bash" -l -c "xlaunch -load \"$(cygpath '%1')\""'
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\XLaunch.cygwin\Shell\Open
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\XLaunch.cygwin\Shell\Open\command
  (default) = '"C:\cygwin\bin\run" --quote "C:\cygwin\bin\bash" -l -c "xlaunch -run \"$(cygpath '%1')\""'
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2
  (default) = '/'
  cygdrive flags = 0x00000022
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/
  (default) = 'C:\cygwin'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/bin
  (default) = 'C:\cygwin/bin'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/lib
  (default) = 'C:\cygwin/lib'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\Installations
  (default) = '\??\C:\cygwin'
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\setup
  (default) = 'C:\cygwin'

obcaseinsensitive set to 1

Cygwin installations found in the registry:
  System: Key: c5e39b7a9d22bafb Path: C:\cygwin
  User:   Key: c5e39b7a9d22bafb Path: C:\cygwin

c:  hd  NTFS    152624Mb  81% CP CS UN PA FC     
d:  cd             N/A    N/A                    
e:  cd             N/A    N/A                    

C:\cygwin        /         system  binary,auto
C:\cygwin\bin    /usr/bin  system  binary,auto
C:\cygwin\lib    /usr/lib  system  binary,auto
cygdrive prefix  /         user    binary,posix=0,auto

Found: C:\cygwin\bin\awk
 -> C:\cygwin\bin\gawk.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\crontab.exe
Found: C:\cygwin\bin\find.exe
Found: C:\Windows\System32\find.exe
Warning: C:\cygwin\bin\find.exe hides C:\Windows\System32\find.exe
Found: C:\cygwin\bin\gcc.exe
Found: C:\cygwin\bin\gdb.exe
Found: C:\cygwin\bin\grep.exe
Found: C:\cygwin\bin\kill.exe
Found: C:\cygwin\bin\ld.exe
Found: C:\cygwin\usr\i686-pc-cygwin\bin\ld.exe
Warning: C:\cygwin\bin\ld.exe hides C:\cygwin\usr\i686-pc-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\patch.exe
Found: C:\cygwin\bin\perl.exe
Found: C:\cygwin\bin\rm.exe
Found: C:\cygwin\bin\sed.exe
Found: C:\cygwin\bin\ssh.exe
Found: C:\cygwin\bin\sh.exe
Found: C:\cygwin\bin\tar.exe
Found: C:\cygwin\bin\test.exe
Found: C:\cygwin\bin\vi.exe
Found: C:\cygwin\bin\vim.exe

79522k 2015/10/13 C:\cygwin\home\Rainer\bin\cyggdal-20.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdal-20.dll" v0.0 ts=2015-10-13 09:49
 2800k 2015/10/08 C:\cygwin\home\Rainer\bin\cygnetcdf-7.dll - os=4.0 img=7.3 sys=4.0
                  "cygnetcdf-7.dll" v0.0 ts=2015-10-08 13:59
 1438k 2015/10/08 C:\cygwin\home\Rainer\bin\cygproj-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygproj-10.dll" v0.0 ts=2015-10-08 15:59
   92k 2015/02/11 C:\cygwin\bin\cygaa-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygaa-1.dll" v0.0 ts=2015-02-11 07:55
  382k 2010/01/05 C:\cygwin\bin\cygAfterImage-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygAfterImage-0.dll" v0.0 ts=2010-01-05 21:08
  170k 2015/05/25 C:\cygwin\bin\cygapr-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygapr-1-0.dll" v0.0 ts=2015-05-25 03:12
  135k 2015/05/25 C:\cygwin\bin\cygaprutil-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygaprutil-1-0.dll" v0.0 ts=2015-05-25 03:35
  644k 2015/06/01 C:\cygwin\bin\cygarchive-13.dll - os=4.0 img=1.0 sys=4.0
                  "cygarchive-13.dll" v0.0 ts=2015-06-01 22:07
  221k 2010/04/13 C:\cygwin\bin\cygarchive-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygarchive-2.dll" v0.0 ts=2010-04-13 02:47
   38k 2013/07/23 C:\cygwin\bin\cygargp-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygargp-0.dll" v0.0 ts=2013-07-23 15:35
  547k 2014/03/23 C:\cygwin\bin\cygasn1-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygasn1-8.dll" v0.0 ts=2014-03-23 23:03
  629k 2015/01/23 C:\cygwin\bin\cygaspell-15.dll - os=4.0 img=1.0 sys=4.0
                  "cygaspell-15.dll" v0.0 ts=2015-01-23 17:37
   19k 2012/10/25 C:\cygwin\bin\cygasyncns-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygasyncns-0.dll" v0.0 ts=2012-10-25 21:37
  125k 2015/01/02 C:\cygwin\bin\cygatk-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygatk-1.0-0.dll" v0.0 ts=2015-01-02 03:01
  167k 2015/01/02 C:\cygwin\bin\cygatk-bridge-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygatk-bridge-2.0-0.dll" v0.0 ts=2015-01-02 04:23
   87k 2015/07/02 C:\cygwin\bin\cygatomic-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygatomic-1.dll" v0.0 ts=2015-07-02 21:51
  153k 2015/01/02 C:\cygwin\bin\cygatspi-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygatspi-0.dll" v0.0 ts=2015-01-02 04:19
   14k 2012/05/04 C:\cygwin\bin\cygattr-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygattr-1.dll" v0.0 ts=2012-05-04 12:35
   71k 2011/06/30 C:\cygwin\bin\cygaudio-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygaudio-2.dll" v0.0 ts=2011-06-30 11:19
  188k 2015/02/11 C:\cygwin\bin\cygautotrace-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygautotrace-3.dll" v0.0 ts=2015-02-11 14:47
   56k 2013/01/23 C:\cygwin\bin\cygavahi-client-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygavahi-client-3.dll" v0.0 ts=2013-01-23 02:52
   38k 2013/01/23 C:\cygwin\bin\cygavahi-common-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygavahi-common-3.dll" v0.0 ts=2013-01-23 02:52
   11k 2013/01/23 C:\cygwin\bin\cygavahi-glib-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygavahi-glib-1.dll" v0.0 ts=2013-01-23 02:52
  203k 2015/03/23 C:\cygwin\bin\cygblkid-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygblkid-1.dll" v0.0 ts=2015-03-23 09:55
   29k 2012/01/08 C:\cygwin\bin\cygbrlapi-0.5.dll - os=4.0 img=1.0 sys=4.0
                  "cygbrlapi-0.5.dll" v0.0 ts=2012-01-08 01:43
   62k 2011/05/21 C:\cygwin\bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygbz2-1.dll" v0.0 ts=2011-05-21 20:16
 1219k 2015/08/23 C:\cygwin\bin\cygcairo-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygcairo-2.dll" v0.0 ts=2015-08-23 18:59
   25k 2015/08/23 C:\cygwin\bin\cygcairo-gobject-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygcairo-gobject-2.dll" v0.0 ts=2015-08-23 18:59
  121k 2015/08/23 C:\cygwin\bin\cygcairo-script-interpreter-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygcairo-script-interpreter-2.dll" v0.0 ts=2015-08-23 18:59
   56k 2012/12/17 C:\cygwin\bin\cygcanberra-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygcanberra-0.dll" v0.0 ts=2012-12-17 03:29
   15k 2012/12/17 C:\cygwin\bin\cygcanberra-gtk-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygcanberra-gtk-0.dll" v0.0 ts=2012-12-17 03:30
   15k 2012/12/17 C:\cygwin\bin\cygcanberra-gtk3-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygcanberra-gtk3-0.dll" v0.0 ts=2012-12-17 03:30
   10k 2012/05/03 C:\cygwin\bin\cygcatgets1.dll - os=4.0 img=1.0 sys=4.0
                  "cygcatgets1.dll" v0.0 ts=2012-05-03 15:04
   10k 2015/02/20 C:\cygwin\bin\cygcharset-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygcharset-1.dll" v0.0 ts=2015-02-20 16:52
14958k 2015/05/27 C:\cygwin\bin\cygclang.dll - os=4.0 img=1.0 sys=4.0
                  "cygclang.dll" v0.0 ts=2015-05-27 00:10
  115k 2013/04/11 C:\cygwin\bin\cygcloog-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygcloog-0.dll" v0.0 ts=2013-04-11 19:44
  125k 2013/05/09 C:\cygwin\bin\cygcloog-isl-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygcloog-isl-4.dll" v0.0 ts=2013-05-09 08:37
   17k 2013/04/25 C:\cygwin\bin\cygcompface-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygcompface-0.dll" v0.0 ts=2013-04-25 15:43
   13k 2015/03/19 C:\cygwin\bin\cygcom_err-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygcom_err-2.dll" v0.0 ts=2015-03-19 02:45
   30k 2012/09/01 C:\cygwin\bin\cygcord-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygcord-1.dll" v0.0 ts=2012-09-01 21:38
  190k 2012/12/17 C:\cygwin\bin\cygcroco-0.6-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygcroco-0.6-3.dll" v0.0 ts=2012-12-17 03:02
    7k 2012/05/07 C:\cygwin\bin\cygcrypt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygcrypt-0.dll" v0.0 ts=2012-05-07 12:18
 1518k 2015/03/19 C:\cygwin\bin\cygcrypto-0.9.8.dll - os=4.0 img=1.0 sys=4.0
                  "cygcrypto-0.9.8.dll" v0.0 ts=2015-03-19 17:54
 1980k 2015/07/09 C:\cygwin\bin\cygcrypto-1.0.0.dll - os=4.0 img=1.0 sys=4.0
                  "cygcrypto-1.0.0.dll" v0.0 ts=2015-07-09 17:50
  461k 2015/10/07 C:\cygwin\bin\cygcurl-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygcurl-4.dll" v0.0 ts=2015-10-07 22:53
   27k 2014/11/12 C:\cygwin\bin\cygdatrie-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygdatrie-1.dll" v0.0 ts=2014-11-12 05:14
  929k 2011/11/10 C:\cygwin\bin\cygdb-4.5.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb-4.5.dll" v0.0 ts=2011-11-10 19:52
 1284k 2011/11/10 C:\cygwin\bin\cygdb-4.8.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb-4.8.dll" v0.0 ts=2011-11-10 18:45
  273k 2015/02/17 C:\cygwin\bin\cygdbus-1-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygdbus-1-3.dll" v0.0 ts=2015-02-17 19:43
  138k 2015/01/19 C:\cygwin\bin\cygdbus-glib-1-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygdbus-glib-1-2.dll" v0.0 ts=2015-01-19 02:35
   93k 2011/11/10 C:\cygwin\bin\cygdb_cxx-4.5.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb_cxx-4.5.dll" v0.0 ts=2011-11-10 19:53
  105k 2011/11/10 C:\cygwin\bin\cygdb_cxx-4.8.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb_cxx-4.8.dll" v0.0 ts=2011-11-10 18:46
  182k 2015/03/13 C:\cygwin\bin\cygdialog-12.dll - os=4.0 img=1.0 sys=4.0
                  "cygdialog-12.dll" v0.0 ts=2015-03-13 20:33
   15k 2013/06/06 C:\cygwin\bin\cygdmx-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygdmx-1.dll" v0.0 ts=2013-06-06 20:18
  159k 2013/10/20 C:\cygwin\bin\cygedit-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygedit-0.dll" v0.0 ts=2013-10-20 22:09
   69k 2015/07/19 C:\cygwin\bin\cygedsio-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygedsio-0.dll" v0.0 ts=2015-07-19 14:56
   99k 2015/10/14 C:\cygwin\bin\cygEGL-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygEGL-1.dll" v0.0 ts=2015-10-14 08:08
   66k 2010/06/02 C:\cygwin\bin\cygelf-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygelf-0.dll" v0.8 ts=2010-06-02 14:08
  201k 2013/09/03 C:\cygwin\bin\cygEMF-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygEMF-1.dll" v0.0 ts=2013-09-03 11:06
  188k 2012/07/27 C:\cygwin\bin\cygexif-12.dll - os=4.0 img=1.0 sys=4.0
                  "cygexif-12.dll" v0.0 ts=2012-07-27 05:00
  153k 2013/07/31 C:\cygwin\bin\cygexpat-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygexpat-1.dll" v0.0 ts=2013-07-31 22:33
   81k 2015/03/18 C:\cygwin\bin\cygexslt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygexslt-0.dll" v0.0 ts=2015-03-19 00:47
   32k 2014/10/14 C:\cygwin\bin\cygfam-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygfam-0.dll" v0.0 ts=2014-10-14 21:21
   21k 2011/10/26 C:\cygwin\bin\cygffi-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygffi-4.dll" v0.0 ts=2011-10-23 14:33
   27k 2015/01/02 C:\cygwin\bin\cygffi-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygffi-6.dll" v0.0 ts=2015-01-02 01:11
  868k 2015/07/31 C:\cygwin\bin\cygfftw3-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygfftw3-3.dll" v0.0 ts=2015-07-31 23:09
  838k 2015/07/31 C:\cygwin\bin\cygfftw3f-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygfftw3f-3.dll" v0.0 ts=2015-07-31 22:52
   23k 2015/07/31 C:\cygwin\bin\cygfftw3f_omp-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygfftw3f_omp-3.dll" v0.0 ts=2015-07-31 22:52
   25k 2015/07/31 C:\cygwin\bin\cygfftw3f_threads-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygfftw3f_threads-3.dll" v0.0 ts=2015-07-31 22:52
   23k 2015/07/31 C:\cygwin\bin\cygfftw3_omp-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygfftw3_omp-3.dll" v0.0 ts=2015-07-31 23:09
   25k 2015/07/31 C:\cygwin\bin\cygfftw3_threads-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygfftw3_threads-3.dll" v0.0 ts=2015-07-31 23:09
  442k 2014/11/30 C:\cygwin\bin\cygFLAC-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygFLAC-8.dll" v0.0 ts=2014-11-30 21:50
  508k 2010/06/30 C:\cygwin\bin\cygfltk-1.1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfltk-1.1.dll" v0.0 ts=2010-05-07 22:37
 1021k 2015/03/16 C:\cygwin\bin\cygfltk-1.3.dll - os=4.0 img=1.0 sys=4.0
                  "cygfltk-1.3.dll" v0.0 ts=2015-03-16 08:38
  507k 2010/06/30 C:\cygwin\bin\cygfltknox-1.1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfltknox-1.1.dll" v0.0 ts=2010-05-08 23:23
   21k 2010/06/30 C:\cygwin\bin\cygfltknox_forms-1.1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfltknox_forms-1.1.dll" v0.0 ts=2010-05-08 23:23
   82k 2010/06/30 C:\cygwin\bin\cygfltknox_gl-1.1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfltknox_gl-1.1.dll" v0.0 ts=2010-05-08 23:23
   58k 2010/06/30 C:\cygwin\bin\cygfltknox_images-1.1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfltknox_images-1.1.dll" v0.0 ts=2010-05-08 23:23
   21k 2010/06/30 C:\cygwin\bin\cygfltk_forms-1.1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfltk_forms-1.1.dll" v0.0 ts=2010-05-07 22:37
   26k 2015/03/16 C:\cygwin\bin\cygfltk_forms-1.3.dll - os=4.0 img=1.0 sys=4.0
                  "cygfltk_forms-1.3.dll" v0.0 ts=2015-03-16 08:39
   81k 2010/06/30 C:\cygwin\bin\cygfltk_gl-1.1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfltk_gl-1.1.dll" v0.0 ts=2010-05-07 22:37
   92k 2015/03/16 C:\cygwin\bin\cygfltk_gl-1.3.dll - os=4.0 img=1.0 sys=4.0
                  "cygfltk_gl-1.3.dll" v0.0 ts=2015-03-16 08:39
   58k 2010/06/30 C:\cygwin\bin\cygfltk_images-1.1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfltk_images-1.1.dll" v0.0 ts=2010-05-07 22:38
   50k 2015/03/16 C:\cygwin\bin\cygfltk_images-1.3.dll - os=4.0 img=1.0 sys=4.0
                  "cygfltk_images-1.3.dll" v0.0 ts=2015-03-16 08:39
  229k 2015/09/10 C:\cygwin\bin\cygfontconfig-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfontconfig-1.dll" v0.0 ts=2015-09-10 19:22
   23k 2013/06/06 C:\cygwin\bin\cygfontenc-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfontenc-1.dll" v0.0 ts=2013-06-06 22:17
   53k 2015/06/09 C:\cygwin\bin\cygform-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygform-10.dll" v0.0 ts=2015-06-10 00:21
   40k 2009/03/01 C:\cygwin\bin\cygform-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygform-8.dll" v0.0 ts=2009-03-01 06:32
   43k 2009/11/20 C:\cygwin\bin\cygform-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygform-9.dll" v0.0 ts=2009-11-20 19:14
   60k 2015/06/09 C:\cygwin\bin\cygformw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygformw-10.dll" v0.0 ts=2015-06-10 00:36
  593k 2015/01/15 C:\cygwin\bin\cygfpx-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfpx-1.dll" v0.0 ts=2015-01-15 12:10
  608k 2015/09/08 C:\cygwin\bin\cygfreetype-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygfreetype-6.dll" v0.0 ts=2015-09-08 09:08
   86k 2009/04/05 C:\cygwin\bin\cygfribidi-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygfribidi-0.dll" v0.0 ts=2009-04-05 23:37
   30k 2015/08/04 C:\cygwin\bin\cyggailutil-18.dll - os=4.0 img=1.0 sys=4.0
                  "cyggailutil-18.dll" v0.0 ts=2015-08-04 15:20
   32k 2015/05/18 C:\cygwin\bin\cyggailutil-3-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggailutil-3-0.dll" v0.0 ts=2015-05-18 08:19
  102k 2012/09/01 C:\cygwin\bin\cyggc-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggc-1.dll" v0.0 ts=2012-09-01 21:38
    6k 2012/09/01 C:\cygwin\bin\cyggccpp-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggccpp-1.dll" v0.0 ts=2012-09-01 21:38
  108k 2015/07/02 C:\cygwin\bin\cyggcc_s-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggcc_s-1.dll" v0.0 ts=2015-07-02 18:59
18760k 2015/07/02 C:\cygwin\bin\cyggcj-15.dll - os=4.0 img=1.0 sys=4.0
                  "cyggcj-15.dll" v0.0 ts=2015-07-02 21:38
13189k 2015/07/02 C:\cygwin\bin\cyggcj-noncore-15.dll - os=4.0 img=1.0 sys=4.0
                  "cyggcj-noncore-15.dll" v0.0 ts=2015-07-02 21:41
 3758k 2015/07/02 C:\cygwin\bin\cyggcj-tools-15.dll - os=4.0 img=1.0 sys=4.0
                  "cyggcj-tools-15.dll" v0.0 ts=2015-07-02 21:45
  203k 2015/03/18 C:\cygwin\bin\cyggck-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggck-1-0.dll" v0.0 ts=2015-03-18 21:39
  170k 2013/08/06 C:\cygwin\bin\cyggconf-2-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggconf-2-4.dll" v0.0 ts=2013-08-06 20:32
  524k 2015/03/18 C:\cygwin\bin\cyggcr-base-3-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggcr-base-3-1.dll" v0.0 ts=2015-03-18 21:40
  400k 2015/03/18 C:\cygwin\bin\cyggcr-ui-3-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggcr-ui-3-1.dll" v0.0 ts=2015-03-18 21:41
  513k 2015/03/18 C:\cygwin\bin\cyggcrypt-11.dll - os=4.0 img=1.0 sys=4.0
                  "cyggcrypt-11.dll" v0.0 ts=2015-03-18 21:03
  633k 2015/03/18 C:\cygwin\bin\cyggcrypt-20.dll - os=4.0 img=1.0 sys=4.0
                  "cyggcrypt-20.dll" v0.0 ts=2015-03-18 08:20
  228k 2015/01/23 C:\cygwin\bin\cyggd-2.dll - os=4.0 img=1.0 sys=4.0
                  "cyggd-2.dll" v0.0 ts=2015-01-23 12:12
  370k 2015/02/09 C:\cygwin\bin\cyggd-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggd-3.dll" v0.0 ts=2015-02-09 09:51
   19k 2009/02/26 C:\cygwin\bin\cyggdbm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm-4.dll" v0.0 ts=2009-02-26 07:58
    8k 2009/02/26 C:\cygwin\bin\cyggdbm_compat-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm_compat-4.dll" v0.0 ts=2009-02-26 07:58
  227k 2015/01/02 C:\cygwin\bin\cyggdk-1-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk-1-2-0.dll" v0.0 ts=2015-01-02 04:35
  593k 2015/05/18 C:\cygwin\bin\cyggdk-3-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk-3-0.dll" v0.0 ts=2015-05-18 07:07
  648k 2015/08/04 C:\cygwin\bin\cyggdk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk-x11-2.0-0.dll" v0.0 ts=2015-08-04 15:07
  161k 2015/01/02 C:\cygwin\bin\cyggdk_imlib-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk_imlib-1.dll" v0.0 ts=2015-01-02 04:54
  135k 2015/09/02 C:\cygwin\bin\cyggdk_pixbuf-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk_pixbuf-2.0-0.dll" v0.0 ts=2015-09-02 17:11
   66k 2015/09/02 C:\cygwin\bin\cyggdk_pixbuf_xlib-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk_pixbuf_xlib-2.0-0.dll" v0.0 ts=2015-09-02 17:13
   71k 2015/04/15 C:\cygwin\bin\cyggeoclue-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggeoclue-0.dll" v0.0 ts=2015-04-15 21:26
 1001k 2015/07/02 C:\cygwin\bin\cyggfortran-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggfortran-3.dll" v0.0 ts=2015-07-02 20:24
   41k 2015/03/26 C:\cygwin\bin\cyggg-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggg-1.dll" v0.0 ts=2015-03-26 18:55
   56k 2015/03/26 C:\cygwin\bin\cygggi-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygggi-2.dll" v0.0 ts=2015-03-26 19:04
   13k 2015/03/26 C:\cygwin\bin\cygggiwmh-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygggiwmh-0.dll" v0.0 ts=2015-03-26 19:26
   29k 2009/03/23 C:\cygwin\bin\cyggif-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggif-4.dll" v0.0 ts=2009-03-23 19:55
   30k 2015/03/26 C:\cygwin\bin\cyggii-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggii-1.dll" v0.0 ts=2015-03-26 18:55
   14k 2015/07/02 C:\cygwin\bin\cyggij-15.dll - os=4.0 img=1.0 sys=4.0
                  "cyggij-15.dll" v0.0 ts=2015-07-02 21:42
 1407k 2015/03/12 C:\cygwin\bin\cyggio-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggio-2.0-0.dll" v0.0 ts=2015-03-12 06:28
  211k 2015/01/02 C:\cygwin\bin\cyggirepository-1.0-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggirepository-1.0-1.dll" v0.0 ts=2015-01-02 02:47
  650k 2015/10/14 C:\cygwin\bin\cygGL-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygGL-1.dll" v0.0 ts=2015-10-14 08:07
   82k 2012/12/17 C:\cygwin\bin\cygglade-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygglade-2.0-0.dll" v0.0 ts=2012-12-17 18:13
  281k 2015/10/14 C:\cygwin\bin\cygglapi-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygglapi-0.dll" v0.0 ts=2015-10-14 07:26
   30k 2015/01/13 C:\cygwin\bin\cygGLESv1_CM-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygGLESv1_CM-1.dll" v0.0 ts=2015-01-13 15:58
   50k 2015/10/14 C:\cygwin\bin\cygGLESv2-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygGLESv2-2.dll" v0.0 ts=2015-10-14 07:26
  413k 2014/09/02 C:\cygwin\bin\cygGLEW-1-11.dll - os=4.0 img=1.0 sys=4.0
                  "cygGLEW-1-11.dll" v0.0 ts=2014-09-02 03:51
  385k 2014/09/02 C:\cygwin\bin\cygGLEWmx-1-11.dll - os=4.0 img=1.0 sys=4.0
                  "cygGLEWmx-1-11.dll" v0.0 ts=2014-09-02 03:51
  155k 2013/07/22 C:\cygwin\bin\cygglib-1-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygglib-1-2-0.dll" v0.0 ts=2013-07-22 03:29
 1036k 2015/03/12 C:\cygwin\bin\cygglib-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygglib-2.0-0.dll" v0.0 ts=2015-03-12 06:24
  472k 2012/11/18 C:\cygwin\bin\cygGLU-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygGLU-1.dll" v0.0 ts=2012-11-18 21:09
  193k 2013/05/17 C:\cygwin\bin\cygglut-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygglut-3.dll" v0.0 ts=2013-05-17 12:54
   18k 2012/11/18 C:\cygwin\bin\cygGLw-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygGLw-1.dll" v0.0 ts=2012-11-18 19:01
   12k 2013/07/22 C:\cygwin\bin\cyggmodule-1-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggmodule-1-2-0.dll" v0.0 ts=2013-07-22 03:30
   15k 2015/03/12 C:\cygwin\bin\cyggmodule-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggmodule-2.0-0.dll" v0.0 ts=2015-03-12 06:24
  505k 2015/01/26 C:\cygwin\bin\cyggmp-10.dll - os=4.0 img=1.0 sys=4.0
                  "cyggmp-10.dll" v0.0 ts=2015-01-26 16:08
  317k 2011/07/31 C:\cygwin\bin\cyggmp-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggmp-3.dll" v0.0 ts=2011-07-31 06:14
   22k 2015/01/26 C:\cygwin\bin\cyggmpxx-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggmpxx-4.dll" v0.0 ts=2015-01-26 16:08
  137k 2015/03/18 C:\cygwin\bin\cyggnome-keyring-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnome-keyring-0.dll" v0.0 ts=2015-03-18 21:55
  103k 2015/06/19 C:\cygwin\bin\cyggnome-menu-3-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnome-menu-3-0.dll" v0.0 ts=2015-06-20 00:08
  650k 2012/08/29 C:\cygwin\bin\cyggnutls-26.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnutls-26.dll" v0.0 ts=2012-08-28 13:19
 1026k 2015/08/28 C:\cygwin\bin\cyggnutls-28.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnutls-28.dll" v0.0 ts=2015-08-28 15:23
   22k 2012/08/29 C:\cygwin\bin\cyggnutls-extra-26.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnutls-extra-26.dll" v0.0 ts=2012-08-28 13:19
   26k 2015/08/28 C:\cygwin\bin\cyggnutls-openssl-27.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnutls-openssl-27.dll" v0.0 ts=2015-08-28 15:23
   52k 2012/08/29 C:\cygwin\bin\cyggnutlsxx-27.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnutlsxx-27.dll" v0.0 ts=2012-08-28 13:19
   42k 2015/08/28 C:\cygwin\bin\cyggnutlsxx-28.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnutlsxx-28.dll" v0.0 ts=2015-08-28 15:23
  316k 2015/03/12 C:\cygwin\bin\cyggobject-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggobject-2.0-0.dll" v0.0 ts=2015-03-12 06:25
   78k 2015/07/02 C:\cygwin\bin\cyggomp-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggomp-1.dll" v0.0 ts=2015-07-02 19:15
   65k 2015/03/19 C:\cygwin\bin\cyggpg-error-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggpg-error-0.dll" v0.0 ts=2015-03-19 23:23
 3019k 2015/07/01 C:\cygwin\bin\cygGraphicsMagick-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygGraphicsMagick-3.dll" v0.0 ts=2015-07-01 20:39
  121k 2013/08/05 C:\cygwin\bin\cyggraphite2-3.dll - os=4.0 img=3.0 sys=4.0
                  "cyggraphite2-3.dll" v0.0 ts=2013-08-05 07:41
10735k 2015/02/11 C:\cygwin\bin\cyggs-9.dll - os=4.0 img=1.0 sys=4.0
                  "cyggs-9.dll" v0.0 ts=2015-02-11 14:56
 2069k 2013/08/14 C:\cygwin\bin\cyggsl-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggsl-0.dll" v0.0 ts=2013-08-14 20:37
  235k 2013/08/14 C:\cygwin\bin\cyggslcblas-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggslcblas-0.dll" v0.0 ts=2013-08-14 20:33
   45k 2015/02/17 C:\cygwin\bin\cyggsm-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggsm-1.dll" v0.0 ts=2015-02-17 22:13
  212k 2014/03/23 C:\cygwin\bin\cyggssapi-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggssapi-3.dll" v0.0 ts=2014-03-23 23:18
  272k 2015/06/02 C:\cygwin\bin\cyggssapi_krb5-2.dll - os=4.0 img=1.0 sys=4.0
                  "cyggssapi_krb5-2.dll" v0.0 ts=2015-06-02 04:52
   13k 2015/01/02 C:\cygwin\bin\cyggstallocators-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstallocators-1.0-0.dll" v0.0 ts=2015-01-02 18:53
   41k 2012/07/27 C:\cygwin\bin\cyggstapp-0.10-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstapp-0.10-0.dll" v0.0 ts=2012-07-27 11:10
   49k 2015/01/02 C:\cygwin\bin\cyggstapp-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstapp-1.0-0.dll" v0.0 ts=2015-01-02 18:52
  220k 2012/07/27 C:\cygwin\bin\cyggstaudio-0.10-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstaudio-0.10-0.dll" v0.0 ts=2012-07-27 11:11
  316k 2015/01/02 C:\cygwin\bin\cyggstaudio-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstaudio-1.0-0.dll" v0.0 ts=2015-01-02 18:52
  341k 2012/07/27 C:\cygwin\bin\cyggstbase-0.10-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstbase-0.10-0.dll" v0.0 ts=2012-07-27 10:49
  393k 2015/01/02 C:\cygwin\bin\cyggstbase-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstbase-1.0-0.dll" v0.0 ts=2015-01-02 18:38
   33k 2012/07/27 C:\cygwin\bin\cyggstcdda-0.10-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstcdda-0.10-0.dll" v0.0 ts=2012-07-27 11:10
   44k 2012/07/27 C:\cygwin\bin\cyggstcheck-0.10-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstcheck-0.10-0.dll" v0.0 ts=2012-07-27 10:49
   73k 2015/01/02 C:\cygwin\bin\cyggstcheck-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstcheck-1.0-0.dll" v0.0 ts=2015-01-02 18:39
  141k 2012/07/27 C:\cygwin\bin\cyggstcontroller-0.10-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstcontroller-0.10-0.dll" v0.0 ts=2012-07-27 10:40
   61k 2015/01/02 C:\cygwin\bin\cyggstcontroller-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstcontroller-1.0-0.dll" v0.0 ts=2015-01-02 18:39
   18k 2012/07/27 C:\cygwin\bin\cyggstdataprotocol-0.10-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstdataprotocol-0.10-0.dll" v0.0 ts=2012-07-27 10:41
   38k 2012/07/27 C:\cygwin\bin\cyggstfft-0.10-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstfft-0.10-0.dll" v0.0 ts=2012-07-27 11:09
   42k 2015/01/02 C:\cygwin\bin\cyggstfft-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstfft-1.0-0.dll" v0.0 ts=2015-01-02 18:51
   54k 2012/07/27 C:\cygwin\bin\cyggstinterfaces-0.10-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstinterfaces-0.10-0.dll" v0.0 ts=2012-07-27 11:09
   25k 2012/07/27 C:\cygwin\bin\cyggstnet-0.10-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstnet-0.10-0.dll" v0.0 ts=2012-07-27 10:41
   34k 2015/01/02 C:\cygwin\bin\cyggstnet-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstnet-1.0-0.dll" v0.0 ts=2015-01-02 18:39
    9k 2012/07/27 C:\cygwin\bin\cyggstnetbuffer-0.10-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstnetbuffer-0.10-0.dll" v0.0 ts=2012-07-27 11:09
  114k 2012/07/27 C:\cygwin\bin\cyggstpbutils-0.10-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstpbutils-0.10-0.dll" v0.0 ts=2012-07-27 11:09
  142k 2015/01/02 C:\cygwin\bin\cyggstpbutils-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstpbutils-1.0-0.dll" v0.0 ts=2015-01-02 18:53
  752k 2012/07/27 C:\cygwin\bin\cyggstreamer-0.10-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstreamer-0.10-0.dll" v0.0 ts=2012-07-27 10:49
 1000k 2015/01/02 C:\cygwin\bin\cyggstreamer-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstreamer-1.0-0.dll" v0.0 ts=2015-01-02 18:38
   52k 2012/07/27 C:\cygwin\bin\cyggstriff-0.10-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstriff-0.10-0.dll" v0.0 ts=2012-07-27 11:11
   59k 2015/01/02 C:\cygwin\bin\cyggstriff-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstriff-1.0-0.dll" v0.0 ts=2015-01-02 18:53
   78k 2012/07/27 C:\cygwin\bin\cyggstrtp-0.10-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstrtp-0.10-0.dll" v0.0 ts=2012-07-27 11:10
   97k 2015/01/02 C:\cygwin\bin\cyggstrtp-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstrtp-1.0-0.dll" v0.0 ts=2015-01-02 18:51
   75k 2012/07/27 C:\cygwin\bin\cyggstrtsp-0.10-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstrtsp-0.10-0.dll" v0.0 ts=2012-07-27 11:11
   99k 2015/01/02 C:\cygwin\bin\cyggstrtsp-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstrtsp-1.0-0.dll" v0.0 ts=2015-01-02 18:52
   26k 2012/07/27 C:\cygwin\bin\cyggstsdp-0.10-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstsdp-0.10-0.dll" v0.0 ts=2012-07-27 11:10
   59k 2015/01/02 C:\cygwin\bin\cyggstsdp-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstsdp-1.0-0.dll" v0.0 ts=2015-01-02 18:51
  195k 2012/07/27 C:\cygwin\bin\cyggsttag-0.10-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggsttag-0.10-0.dll" v0.0 ts=2012-07-27 11:10
  220k 2015/01/02 C:\cygwin\bin\cyggsttag-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggsttag-1.0-0.dll" v0.0 ts=2015-01-02 18:52
   99k 2012/07/27 C:\cygwin\bin\cyggstvideo-0.10-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstvideo-0.10-0.dll" v0.0 ts=2012-07-27 11:10
  282k 2015/01/02 C:\cygwin\bin\cyggstvideo-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggstvideo-1.0-0.dll" v0.0 ts=2015-01-02 18:52
   10k 2013/07/22 C:\cygwin\bin\cyggthread-1-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggthread-1-2-0.dll" v0.0 ts=2013-07-22 03:30
    9k 2015/03/12 C:\cygwin\bin\cyggthread-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggthread-2.0-0.dll" v0.0 ts=2015-03-12 06:24
 1354k 2015/01/02 C:\cygwin\bin\cyggtk-1-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggtk-1-2-0.dll" v0.0 ts=2015-01-02 04:36
 6872k 2015/05/18 C:\cygwin\bin\cyggtk-3-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggtk-3-0.dll" v0.0 ts=2015-05-18 08:17
 4377k 2015/08/04 C:\cygwin\bin\cyggtk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggtk-x11-2.0-0.dll" v0.0 ts=2015-08-04 15:19
   17k 2015/05/18 C:\cygwin\bin\cyggtkreftestprivate-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggtkreftestprivate-0.dll" v0.0 ts=2015-05-18 08:41
  812k 2015/02/20 C:\cygwin\bin\cygguile-17.dll - os=4.0 img=1.0 sys=4.0
                  "cygguile-17.dll" v0.0 ts=2015-02-20 16:34
  184k 2015/03/18 C:\cygwin\bin\cyggvfscommon.dll - os=4.0 img=1.0 sys=4.0
                  "cyggvfscommon.dll" v0.0 ts=2015-03-18 22:15
  135k 2015/03/18 C:\cygwin\bin\cyggvfsdaemon.dll - os=4.0 img=1.0 sys=4.0
                  "cyggvfsdaemon.dll" v0.0 ts=2015-03-18 22:20
  396k 2015/10/13 C:\cygwin\bin\cygharfbuzz-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygharfbuzz-0.dll" v0.0 ts=2015-10-13 17:33
   10k 2015/10/13 C:\cygwin\bin\cygharfbuzz-icu-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygharfbuzz-icu-0.dll" v0.0 ts=2015-10-13 17:33
 2951k 2015/05/16 C:\cygwin\bin\cyghdf5-10.dll - os=4.0 img=1.0 sys=4.0
                  "cyghdf5-10.dll" v0.0 ts=2015-05-16 10:37
  311k 2015/05/16 C:\cygwin\bin\cyghdf5_cpp-10.dll - os=4.0 img=1.0 sys=4.0
                  "cyghdf5_cpp-10.dll" v0.0 ts=2015-05-16 10:45
  130k 2015/05/16 C:\cygwin\bin\cyghdf5_hl-10.dll - os=4.0 img=1.0 sys=4.0
                  "cyghdf5_hl-10.dll" v0.0 ts=2015-05-16 10:45
   11k 2015/05/16 C:\cygwin\bin\cyghdf5_hl_cpp-10.dll - os=4.0 img=1.0 sys=4.0
                  "cyghdf5_hl_cpp-10.dll" v0.0 ts=2015-05-16 10:46
   14k 2014/03/23 C:\cygwin\bin\cygheimbase-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygheimbase-1.dll" v0.0 ts=2014-03-23 22:59
   24k 2014/03/23 C:\cygwin\bin\cygheimntlm-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygheimntlm-0.dll" v0.0 ts=2014-03-23 23:14
   24k 2009/06/23 C:\cygwin\bin\cyghistory6.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory6.dll" v0.0 ts=2009-06-23 13:20
   31k 2015/01/27 C:\cygwin\bin\cyghistory7.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory7.dll" v0.0 ts=2015-01-27 23:43
   58k 2012/09/05 C:\cygwin\bin\cyghogweed-2-2.dll - os=4.0 img=1.0 sys=4.0
                  "cyghogweed-2-2.dll" v0.0 ts=2012-09-06 00:11
  173k 2015/02/11 C:\cygwin\bin\cyghogweed-2.dll - os=4.0 img=1.0 sys=4.0
                  "cyghogweed-2.dll" v0.0 ts=2015-02-11 17:01
  246k 2014/03/23 C:\cygwin\bin\cyghx509-5.dll - os=4.0 img=1.0 sys=4.0
                  "cyghx509-5.dll" v0.0 ts=2014-03-23 23:05
   80k 2014/08/10 C:\cygwin\bin\cygICE-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygICE-6.dll" v0.0 ts=1970-01-01 00:00
 1010k 2015/02/20 C:\cygwin\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygiconv-2.dll" v0.0 ts=2015-02-20 16:52
    0k 2013/02/13 C:\cygwin\bin\cygicudata.dll (symlink to cygicudata48.dll)
17852k 2011/07/26 C:\cygwin\bin\cygicudata48.dll - os=4.0 img=1.0 sys=4.0
                  "cygicudata48.dll" v0.0 ts=2011-07-26 12:36
24750k 2015/02/16 C:\cygwin\bin\cygicudata54.dll - os=4.0 img=1.0 sys=4.0
                  "cygicudata54.dll" v0.0 ts=2015-02-16 19:09
25309k 2015/05/04 C:\cygwin\bin\cygicudata55.dll - os=4.0 img=1.0 sys=4.0
                  "cygicudata55.dll" v0.0 ts=2015-05-04 17:06
24466k 2015/10/08 C:\cygwin\bin\cygicudata56.dll - os=4.0 img=1.0 sys=4.0
                  "cygicudata56.dll" v0.0 ts=2015-10-08 15:33
    0k 2013/02/13 C:\cygwin\bin\cygicui18n.dll (symlink to cygicui18n48.dll)
 1809k 2011/07/26 C:\cygwin\bin\cygicui18n48.dll - os=4.0 img=1.0 sys=4.0
                  "cygicui18n48.dll" v0.0 ts=2011-07-26 11:53
 2154k 2015/02/16 C:\cygwin\bin\cygicui18n54.dll - os=4.0 img=1.0 sys=4.0
                  "cygicui18n54.dll" v0.0 ts=2015-02-16 19:06
 2209k 2015/05/04 C:\cygwin\bin\cygicui18n55.dll - os=4.0 img=1.0 sys=4.0
                  "cygicui18n55.dll" v0.0 ts=2015-05-04 17:05
 2311k 2015/10/08 C:\cygwin\bin\cygicui18n56.dll - os=4.0 img=1.0 sys=4.0
                  "cygicui18n56.dll" v0.0 ts=2015-10-08 15:30
    0k 2013/02/13 C:\cygwin\bin\cygicuio.dll (symlink to cygicuio48.dll)
   35k 2011/07/26 C:\cygwin\bin\cygicuio48.dll - os=4.0 img=1.0 sys=4.0
                  "cygicuio48.dll" v0.0 ts=2011-07-26 11:56
   45k 2015/02/16 C:\cygwin\bin\cygicuio54.dll - os=4.0 img=1.0 sys=4.0
                  "cygicuio54.dll" v0.0 ts=2015-02-16 19:06
   45k 2015/05/04 C:\cygwin\bin\cygicuio55.dll - os=4.0 img=1.0 sys=4.0
                  "cygicuio55.dll" v0.0 ts=2015-05-04 17:05
   45k 2015/10/08 C:\cygwin\bin\cygicuio56.dll - os=4.0 img=1.0 sys=4.0
                  "cygicuio56.dll" v0.0 ts=2015-10-08 15:32
    0k 2013/02/13 C:\cygwin\bin\cygicule.dll (symlink to cygicule48.dll)
  233k 2011/07/26 C:\cygwin\bin\cygicule48.dll - os=4.0 img=1.0 sys=4.0
                  "cygicule48.dll" v0.0 ts=2011-07-26 11:53
  314k 2015/02/16 C:\cygwin\bin\cygicule54.dll - os=4.0 img=1.0 sys=4.0
                  "cygicule54.dll" v0.0 ts=2015-02-16 19:06
  316k 2015/05/04 C:\cygwin\bin\cygicule55.dll - os=4.0 img=1.0 sys=4.0
                  "cygicule55.dll" v0.0 ts=2015-05-04 17:05
  316k 2015/10/08 C:\cygwin\bin\cygicule56.dll - os=4.0 img=1.0 sys=4.0
                  "cygicule56.dll" v0.0 ts=2015-10-08 15:32
    0k 2013/02/13 C:\cygwin\bin\cygiculx.dll (symlink to cygiculx48.dll)
   42k 2011/07/26 C:\cygwin\bin\cygiculx48.dll - os=4.0 img=1.0 sys=4.0
                  "cygiculx48.dll" v0.0 ts=2011-07-26 11:54
   39k 2015/02/16 C:\cygwin\bin\cygiculx54.dll - os=4.0 img=1.0 sys=4.0
                  "cygiculx54.dll" v0.0 ts=2015-02-16 19:06
   39k 2015/05/04 C:\cygwin\bin\cygiculx55.dll - os=4.0 img=1.0 sys=4.0
                  "cygiculx55.dll" v0.0 ts=2015-05-04 17:05
   39k 2015/10/08 C:\cygwin\bin\cygiculx56.dll - os=4.0 img=1.0 sys=4.0
                  "cygiculx56.dll" v0.0 ts=2015-10-08 15:32
    0k 2013/02/13 C:\cygwin\bin\cygicutest.dll (symlink to cygicutest48.dll)
   51k 2011/07/26 C:\cygwin\bin\cygicutest48.dll - os=4.0 img=1.0 sys=4.0
                  "cygicutest48.dll" v0.0 ts=2011-07-26 11:54
   53k 2015/10/08 C:\cygwin\bin\cygicutest56.dll - os=4.0 img=1.0 sys=4.0
                  "cygicutest56.dll" v0.0 ts=2015-10-08 15:32
  175k 2015/10/08 C:\cygwin\bin\cygicutu56.dll - os=4.0 img=1.0 sys=4.0
                  "cygicutu56.dll" v0.0 ts=2015-10-08 15:32
    0k 2013/02/13 C:\cygwin\bin\cygicuuc.dll (symlink to cygicuuc48.dll)
 1238k 2011/07/26 C:\cygwin\bin\cygicuuc48.dll - os=4.0 img=1.0 sys=4.0
                  "cygicuuc48.dll" v0.0 ts=2011-07-26 11:50
 1395k 2015/02/16 C:\cygwin\bin\cygicuuc54.dll - os=4.0 img=1.0 sys=4.0
                  "cygicuuc54.dll" v0.0 ts=2015-02-16 19:05
 1408k 2015/05/04 C:\cygwin\bin\cygicuuc55.dll - os=4.0 img=1.0 sys=4.0
                  "cygicuuc55.dll" v0.0 ts=2015-05-04 17:04
 1431k 2015/10/08 C:\cygwin\bin\cygicuuc56.dll - os=4.0 img=1.0 sys=4.0
                  "cygicuuc56.dll" v0.0 ts=2015-10-08 15:29
   58k 2009/03/23 C:\cygwin\bin\cygid3tag-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygid3tag-0.dll" v0.0 ts=2009-03-23 01:58
  140k 2012/12/17 C:\cygwin\bin\cygIDL-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygIDL-2-0.dll" v0.0 ts=2012-12-17 18:39
  198k 2014/12/06 C:\cygwin\bin\cygidn-11.dll - os=4.0 img=1.0 sys=4.0
                  "cygidn-11.dll" v0.0 ts=2014-12-06 12:56
  355k 2015/06/05 C:\cygwin\bin\cygImlib2-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygImlib2-1.dll" v0.0 ts=2015-06-05 05:26
   41k 2015/09/20 C:\cygwin\bin\cygintl-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-8.dll" v0.0 ts=2015-09-20 20:20
  310k 2013/09/09 C:\cygwin\bin\cygiodbc-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygiodbc-2.dll" v0.0 ts=2013-09-09 15:53
   67k 2013/09/09 C:\cygwin\bin\cygiodbcinst-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygiodbcinst-2.dll" v0.0 ts=2013-09-09 15:53
  989k 2013/05/09 C:\cygwin\bin\cygisl-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygisl-10.dll" v0.0 ts=2013-05-09 08:14
 1191k 2015/09/20 C:\cygwin\bin\cygisl-13.dll - os=4.0 img=1.0 sys=4.0
                  "cygisl-13.dll" v0.0 ts=2015-09-20 12:39
  277k 2015/01/23 C:\cygwin\bin\cygjasper-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygjasper-1.dll" v0.0 ts=2015-01-23 12:03
   47k 2014/06/17 C:\cygwin\bin\cygjbig-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygjbig-2.dll" v0.0 ts=1970-01-01 00:00
   20k 2014/06/17 C:\cygwin\bin\cygjbig85-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygjbig85-2.dll" v0.0 ts=1970-01-01 00:00
  125k 2009/08/08 C:\cygwin\bin\cygjpeg-62.dll - os=4.0 img=1.0 sys=4.0
                  "cygjpeg-62.dll" v0.0 ts=2009-08-08 21:48
  193k 2009/08/08 C:\cygwin\bin\cygjpeg-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygjpeg-7.dll" v0.0 ts=2009-08-08 20:39
  360k 2015/10/08 C:\cygwin\bin\cygjpeg-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygjpeg-8.dll" v0.0 ts=2015-10-08 09:49
   21k 2011/11/20 C:\cygwin\bin\cygjson-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygjson-0.dll" v0.0 ts=2011-11-20 07:44
   37k 2014/04/09 C:\cygwin\bin\cygjson-c-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygjson-c-2.dll" v0.0 ts=1970-01-01 00:00
  140k 2015/01/02 C:\cygwin\bin\cygjson-glib-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygjson-glib-1.0-0.dll" v0.0 ts=2015-01-02 03:57
  191k 2015/06/02 C:\cygwin\bin\cygk5crypto-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygk5crypto-3.dll" v0.0 ts=2015-06-02 04:51
   23k 2014/03/23 C:\cygwin\bin\cygkafs-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkafs-0.dll" v0.0 ts=2014-03-23 23:14
   93k 2015/10/08 C:\cygwin\bin\cygkpathsea-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygkpathsea-6.dll" v0.0 ts=2015-10-08 20:05
  438k 2014/03/23 C:\cygwin\bin\cygkrb5-26.dll - os=4.0 img=1.0 sys=4.0
                  "cygkrb5-26.dll" v0.0 ts=2014-03-23 23:11
  743k 2015/06/02 C:\cygwin\bin\cygkrb5-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygkrb5-3.dll" v0.0 ts=2015-06-02 04:51
   39k 2015/06/02 C:\cygwin\bin\cygkrb5support-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkrb5support-0.dll" v0.0 ts=2015-06-02 04:51
   42k 2012/03/26 C:\cygwin\bin\cyglber-2-3-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyglber-2-3-0.dll" v0.0 ts=2012-03-26 12:12
   49k 2015/02/19 C:\cygwin\bin\cyglber-2-4-2.dll - os=4.0 img=1.0 sys=4.0
                  "cyglber-2-4-2.dll" v0.0 ts=2015-02-19 13:10
  200k 2015/02/19 C:\cygwin\bin\cyglcms-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyglcms-1.dll" v0.0 ts=2015-02-19 11:46
  307k 2014/11/11 C:\cygwin\bin\cyglcms2-2.dll - os=4.0 img=1.0 sys=4.0
                  "cyglcms2-2.dll" v0.0 ts=2014-11-11 15:45
  193k 2012/03/26 C:\cygwin\bin\cygldap-2-3-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygldap-2-3-0.dll" v0.0 ts=2012-03-26 13:47
  270k 2015/02/19 C:\cygwin\bin\cygldap-2-4-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygldap-2-4-2.dll" v0.0 ts=2015-02-19 13:10
  206k 2012/03/26 C:\cygwin\bin\cygldap_r-2-3-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygldap_r-2-3-0.dll" v0.0 ts=2012-03-26 13:48
  286k 2015/02/19 C:\cygwin\bin\cygldap_r-2-4-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygldap_r-2-4-2.dll" v0.0 ts=2015-02-19 13:12
  103k 2015/09/01 C:\cygwin\bin\cyglightcomp.dll - os=4.0 img=1.0 sys=4.0
                  "cyglightcomp.dll" v0.0 ts=2015-09-01 23:01
18935k 2013/01/15 C:\cygwin\bin\cygLLVM-3.1.dll - os=4.0 img=1.0 sys=4.0
                  "cygLLVM-3.1.dll" v0.0 ts=2013-01-15 06:27
18179k 2015/02/08 C:\cygwin\bin\cygLLVM-3.4.dll - os=4.0 img=1.0 sys=4.0
                  "cygLLVM-3.4.dll" v0.0 ts=2015-02-08 19:38
19312k 2015/05/27 C:\cygwin\bin\cygLLVM-3.5.dll - os=4.0 img=1.0 sys=4.0
                  "cygLLVM-3.5.dll" v0.0 ts=2015-05-26 23:43
    5k 2015/08/20 C:\cygwin\bin\cyglsa.dll - os=4.0 img=1.0 sys=4.0
                  "cyglsa.dll" v0.0 ts=2015-08-20 10:40
    6k 2015/08/20 C:\cygwin\bin\cyglsa64.dll (not x86 dll)
   38k 2015/02/17 C:\cygwin\bin\cygltdl-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygltdl-7.dll" v0.0 ts=2015-02-17 18:29
  162k 2015/08/23 C:\cygwin\bin\cyglua-5.1.dll - os=4.0 img=1.0 sys=4.0
                  "cyglua-5.1.dll" v0.0 ts=2015-08-23 17:46
  184k 2015/06/04 C:\cygwin\bin\cyglua-5.2.dll - os=4.0 img=1.0 sys=4.0
                  "cyglua-5.2.dll" v0.0 ts=2015-06-04 19:05
  125k 2010/04/09 C:\cygwin\bin\cyglzma-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyglzma-1.dll" v0.0 ts=2010-04-09 16:54
  159k 2015/05/04 C:\cygwin\bin\cyglzma-5.dll - os=4.0 img=1.0 sys=4.0
                  "cyglzma-5.dll" v0.0 ts=2015-05-04 04:00
  127k 2014/11/17 C:\cygwin\bin\cyglzo2-2.dll - os=4.0 img=1.0 sys=4.0
                  "cyglzo2-2.dll" v0.0 ts=2014-11-17 09:18
  123k 2015/08/12 C:\cygwin\bin\cygmagic-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygmagic-1.dll" v0.0 ts=2015-08-12 20:06
 2267k 2012/04/28 C:\cygwin\bin\cygMagick++-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygMagick++-5.dll" v0.0 ts=2012-04-28 21:38
  371k 2015/02/11 C:\cygwin\bin\cygMagick++-6.Q16-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygMagick++-6.Q16-5.dll" v0.0 ts=2015-02-11 11:34
  374k 2015/07/01 C:\cygwin\bin\cygMagick++-6.Q16-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygMagick++-6.Q16-6.dll" v0.0 ts=2015-07-01 21:15
11984k 2012/04/28 C:\cygwin\bin\cygMagickCore-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygMagickCore-5.dll" v0.0 ts=2012-04-28 21:35
 4641k 2015/07/01 C:\cygwin\bin\cygMagickCore-6.Q16-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygMagickCore-6.Q16-2.dll" v0.0 ts=2015-07-01 21:12
 2452k 2012/04/28 C:\cygwin\bin\cygMagickWand-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygMagickWand-5.dll" v0.0 ts=2012-04-28 21:36
 1170k 2015/07/01 C:\cygwin\bin\cygMagickWand-6.Q16-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygMagickWand-6.Q16-2.dll" v0.0 ts=2015-07-01 21:13
  173k 2015/10/09 C:\cygwin\bin\cygman-2-7-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygman-2-7-4.dll" v0.0 ts=2015-10-09 09:30
   22k 2015/10/09 C:\cygwin\bin\cygmandb-2-7-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygmandb-2-7-4.dll" v0.0 ts=2015-10-09 09:30
  133k 2014/01/21 C:\cygwin\bin\cygmcpp-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygmcpp-0.dll" v0.0 ts=2014-01-21 19:06
   30k 2015/06/09 C:\cygwin\bin\cygmenu-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu-10.dll" v0.0 ts=2015-06-10 00:20
   21k 2009/03/01 C:\cygwin\bin\cygmenu-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu-8.dll" v0.0 ts=2009-03-01 06:31
   25k 2009/11/20 C:\cygwin\bin\cygmenu-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu-9.dll" v0.0 ts=2009-11-20 19:13
   30k 2015/06/09 C:\cygwin\bin\cygmenuw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenuw-10.dll" v0.0 ts=2015-06-10 00:35
  351k 2015/08/11 C:\cygwin\bin\cygming-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygming-1.dll" v0.0 ts=2015-08-11 10:47
  391k 2014/12/10 C:\cygwin\bin\cygmng-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygmng-1.dll" v0.0 ts=2014-12-10 12:17
  213k 2011/07/31 C:\cygwin\bin\cygmp-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygmp-3.dll" v0.0 ts=2011-07-31 06:12
   64k 2009/11/09 C:\cygwin\bin\cygmpc-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygmpc-1.dll" v0.0 ts=2009-11-09 01:21
   98k 2015/03/01 C:\cygwin\bin\cygmpc-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygmpc-3.dll" v0.0 ts=2015-03-01 20:24
  269k 2009/06/07 C:\cygwin\bin\cygmpfr-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygmpfr-1.dll" v0.0 ts=2009-06-07 22:10
  369k 2015/06/30 C:\cygwin\bin\cygmpfr-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygmpfr-4.dll" v0.0 ts=2015-06-30 18:39
   77k 2010/01/21 C:\cygwin\bin\cygMrm-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygMrm-2.dll" v0.0 ts=2010-01-21 07:33
  129k 2015/01/02 C:\cygwin\bin\cygMrm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygMrm-4.dll" v0.0 ts=2015-01-02 18:28
   78k 2015/03/15 C:\cygwin\bin\cygmspack-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygmspack-0.dll" v0.0 ts=2015-03-15 19:36
 2830k 2015/08/23 C:\cygwin\bin\cygmysqlclient-18.dll - os=4.0 img=18.0 sys=4.0
                  "cygmysqlclient-18.dll" v0.0 ts=2015-08-23 21:25
  492k 2015/09/10 C:\cygwin\bin\cygnativeGLthunk.dll - os=4.0 img=1.0 sys=4.0
                  "cygnativeGLthunk.dll" v0.0 ts=2015-09-10 17:57
   57k 2015/06/09 C:\cygwin\bin\cygncurses++-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++-10.dll" v0.0 ts=2015-06-10 00:27
   66k 2009/03/01 C:\cygwin\bin\cygncurses++-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++-8.dll" v0.0 ts=2009-03-01 06:39
   63k 2009/11/20 C:\cygwin\bin\cygncurses++-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++-9.dll" v0.0 ts=2009-11-20 19:25
   57k 2015/06/09 C:\cygwin\bin\cygncurses++w-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++w-10.dll" v0.0 ts=2015-06-10 00:42
  253k 2015/06/09 C:\cygwin\bin\cygncurses-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses-10.dll" v0.0 ts=2015-06-10 00:19
  237k 2009/03/01 C:\cygwin\bin\cygncurses-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses-8.dll" v0.0 ts=2009-03-01 06:28
  198k 2009/11/20 C:\cygwin\bin\cygncurses-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses-9.dll" v0.0 ts=2009-11-20 19:10
  327k 2015/06/09 C:\cygwin\bin\cygncursesw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygncursesw-10.dll" v0.0 ts=2015-06-10 00:33
  141k 2014/11/11 C:\cygwin\bin\cygneon-27.dll - os=4.0 img=1.0 sys=4.0
                  "cygneon-27.dll" v0.0 ts=2014-11-11 16:42
  200k 2015/08/26 C:\cygwin\bin\cygnetpbm-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygnetpbm-10.dll" v0.0 ts=2015-08-26 21:25
  145k 2012/09/05 C:\cygwin\bin\cygnettle-4-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygnettle-4-4.dll" v0.0 ts=2012-09-06 00:11
  195k 2015/02/11 C:\cygwin\bin\cygnettle-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygnettle-4.dll" v0.0 ts=2015-02-11 17:01
  106k 2015/02/08 C:\cygwin\bin\cygobrender-29.dll - os=4.0 img=1.0 sys=4.0
                  "cygobrender-29.dll" v0.0 ts=2015-02-08 16:37
   59k 2015/02/08 C:\cygwin\bin\cygobt-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygobt-2.dll" v0.0 ts=2015-02-08 16:37
   18k 2013/06/01 C:\cygwin\bin\cygogg-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygogg-0.dll" v0.0 ts=2013-06-01 17:43
  285k 2015/03/09 C:\cygwin\bin\cygonig-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygonig-2.dll" v0.0 ts=2015-03-08 18:20
  129k 2015/01/02 C:\cygwin\bin\cygopenjpeg-1.dll - os=4.0 img=1.5 sys=4.0
                  "cygopenjpeg-1.dll" v0.0 ts=2015-01-02 06:58
   29k 2015/01/13 C:\cygwin\bin\cygOpenVG-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygOpenVG-1.dll" v0.0 ts=2015-01-13 15:58
  271k 2012/12/17 C:\cygwin\bin\cygORBit-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygORBit-2-0.dll" v0.0 ts=2012-12-17 19:14
   35k 2012/12/17 C:\cygwin\bin\cygORBit-imodule-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygORBit-imodule-2-0.dll" v0.0 ts=2012-12-17 19:15
   18k 2012/12/17 C:\cygwin\bin\cygORBitCosNaming-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygORBitCosNaming-2-0.dll" v0.0 ts=2012-12-17 19:14
  522k 2015/01/02 C:\cygwin\bin\cygorc-0.4-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygorc-0.4-0.dll" v0.0 ts=2015-01-02 20:36
   28k 2015/01/02 C:\cygwin\bin\cygorc-test-0.4-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygorc-test-0.4-0.dll" v0.0 ts=2015-01-02 20:36
 2815k 2012/02/05 C:\cygwin\bin\cygOSMesa-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygOSMesa-7.dll" v0.0 ts=2012-02-05 07:13
 4303k 2015/10/14 C:\cygwin\bin\cygOSMesa-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygOSMesa-8.dll" v0.0 ts=2015-10-14 08:03
  326k 2015/06/01 C:\cygwin\bin\cygp11-kit-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygp11-kit-0.dll" v0.0 ts=2015-06-01 20:17
   15k 2015/06/09 C:\cygwin\bin\cygpanel-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel-10.dll" v0.0 ts=2015-06-10 00:20
   11k 2009/03/01 C:\cygwin\bin\cygpanel-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel-8.dll" v0.0 ts=2009-03-01 06:30
   13k 2009/11/20 C:\cygwin\bin\cygpanel-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel-9.dll" v0.0 ts=2009-11-20 19:12
   15k 2015/06/09 C:\cygwin\bin\cygpanelw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanelw-10.dll" v0.0 ts=2015-06-10 00:35
  270k 2015/01/02 C:\cygwin\bin\cygpango-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpango-1.0-0.dll" v0.0 ts=2015-01-02 04:01
   44k 2015/01/02 C:\cygwin\bin\cygpangocairo-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangocairo-1.0-0.dll" v0.0 ts=2015-01-02 04:01
   74k 2015/01/02 C:\cygwin\bin\cygpangoft2-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangoft2-1.0-0.dll" v0.0 ts=2015-01-02 04:01
   29k 2015/01/02 C:\cygwin\bin\cygpangoxft-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangoxft-1.0-0.dll" v0.0 ts=2015-01-02 04:01
   11k 2013/07/23 C:\cygwin\bin\cygpaper-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygpaper-1.dll" v0.0 ts=2013-07-23 21:23
  255k 2012/02/10 C:\cygwin\bin\cygpcre-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcre-0.dll" v0.0 ts=2012-02-10 10:24
  458k 2015/08/11 C:\cygwin\bin\cygpcre-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcre-1.dll" v0.0 ts=2015-08-11 18:40
  420k 2015/08/11 C:\cygwin\bin\cygpcre16-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcre16-0.dll" v0.0 ts=2015-08-11 18:40
  405k 2015/08/11 C:\cygwin\bin\cygpcre32-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcre32-0.dll" v0.0 ts=2015-08-11 18:40
   33k 2015/08/11 C:\cygwin\bin\cygpcrecpp-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcrecpp-0.dll" v0.0 ts=2015-08-11 18:40
   11k 2015/08/11 C:\cygwin\bin\cygpcreposix-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcreposix-0.dll" v0.0 ts=2015-08-11 18:40
 2179k 2015/07/12 C:\cygwin\bin\cygperl5_22.dll - os=4.0 img=1.0 sys=4.0
                  "cygperl5_22.dll" v0.0 ts=2015-07-12 19:55
  352k 2015/01/23 C:\cygwin\bin\cygphonon-4.dll - os=4.0 img=4.8 sys=4.0
                  "cygphonon-4.dll" v0.0 ts=2015-01-23 19:41
   87k 2015/01/23 C:\cygwin\bin\cygphononexperimental-4.dll - os=4.0 img=4.8 sys=4.0
                  "cygphononexperimental-4.dll" v0.0 ts=2015-01-23 19:41
   41k 2015/04/09 C:\cygwin\bin\cygpipeline-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygpipeline-1.dll" v0.0 ts=2015-04-09 20:58
  650k 2014/11/16 C:\cygwin\bin\cygpixman-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpixman-1-0.dll" v0.0 ts=2014-11-16 23:18
  984k 2015/02/11 C:\cygwin\bin\cygplotter-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygplotter-2.dll" v0.0 ts=2015-02-11 21:27
  149k 2015/06/05 C:\cygwin\bin\cygpng12.dll - os=4.0 img=1.0 sys=4.0
                  "cygpng12.dll" v0.0 ts=2015-06-05 07:37
  127k 2012/08/22 C:\cygwin\bin\cygpng14-14.dll - os=4.0 img=1.0 sys=4.0
                  "cygpng14-14.dll" v0.0 ts=2012-08-22 05:29
  162k 2015/04/13 C:\cygwin\bin\cygpng15-15.dll - os=4.0 img=1.0 sys=4.0
                  "cygpng15-15.dll" v0.0 ts=2015-04-13 19:37
  196k 2015/04/13 C:\cygwin\bin\cygpng16-16.dll - os=4.0 img=1.0 sys=4.0
                  "cygpng16-16.dll" v0.0 ts=2015-04-13 19:47
 2001k 2015/04/13 C:\cygwin\bin\cygpoppler-46.dll - os=4.0 img=1.0 sys=4.0
                  "cygpoppler-46.dll" v0.0 ts=2015-04-13 18:03
 2047k 2015/04/28 C:\cygwin\bin\cygpoppler-49.dll - os=4.0 img=1.0 sys=4.0
                  "cygpoppler-49.dll" v0.0 ts=2015-04-28 19:59
 2061k 2015/09/20 C:\cygwin\bin\cygpoppler-55.dll - os=4.0 img=1.0 sys=4.0
                  "cygpoppler-55.dll" v0.0 ts=2015-09-20 18:20
   41k 2013/10/21 C:\cygwin\bin\cygpopt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpopt-0.dll" v0.0 ts=2013-10-21 21:52
  695k 2009/04/18 C:\cygwin\bin\cygppl-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygppl-7.dll" v0.0 ts=2009-04-18 13:44
  897k 2013/04/11 C:\cygwin\bin\cygppl-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygppl-9.dll" v0.0 ts=2013-04-11 19:35
 2481k 2009/04/18 C:\cygwin\bin\cygppl_c-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygppl_c-2.dll" v0.0 ts=2009-04-18 13:47
 3092k 2013/04/11 C:\cygwin\bin\cygppl_c-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygppl_c-4.dll" v0.0 ts=2013-04-11 19:36
  156k 2015/07/15 C:\cygwin\bin\cygpq-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygpq-5.dll" v0.0 ts=2015-07-15 23:13
  103k 2009/01/07 C:\cygwin\bin\cygpq.dll - os=4.0 img=1.0 sys=4.0
                  "cygpq.dll" v0.0 ts=2009-01-07 16:46
  122k 2015/06/29 C:\cygwin\bin\cygproxy-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygproxy-1.dll" v0.0 ts=2015-06-29 22:35
    8k 2015/01/23 C:\cygwin\bin\cygpspell-15.dll - os=4.0 img=1.0 sys=4.0
                  "cygpspell-15.dll" v0.0 ts=2015-01-23 17:37
  358k 2015/02/12 C:\cygwin\bin\cygpstoedit-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpstoedit-0.dll" v0.0 ts=2015-02-12 16:44
   39k 2015/10/08 C:\cygwin\bin\cygptexenc-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygptexenc-1.dll" v0.0 ts=2015-10-08 20:06
  299k 2015/01/16 C:\cygwin\bin\cygpulse-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpulse-0.dll" v0.0 ts=2015-01-16 01:20
   17k 2015/01/16 C:\cygwin\bin\cygpulse-mainloop-glib-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpulse-mainloop-glib-0.dll" v0.0 ts=2015-01-16 01:21
  433k 2015/01/16 C:\cygwin\bin\cygpulsecommon-5.0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpulsecommon-5.0.dll" v0.0 ts=2015-01-16 01:20
   18k 2009/04/18 C:\cygwin\bin\cygpwl-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygpwl-4.dll" v0.0 ts=2009-04-18 13:44
   14k 2013/04/11 C:\cygwin\bin\cygpwl-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygpwl-5.dll" v0.0 ts=2013-04-11 19:35
   15k 2013/10/24 C:\cygwin\bin\cygpyglib-2.0-python2.7-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpyglib-2.0-python2.7-0.dll" v0.0 ts=2013-10-24 21:18
 2994k 2015/05/06 C:\cygwin\bin\cygqscintilla2-11.dll - os=4.0 img=1.0 sys=4.0
                  "cygqscintilla2-11.dll" v0.0 ts=2015-05-06 20:22
 2714k 2013/08/16 C:\cygwin\bin\cygqscintilla2-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygqscintilla2-9.dll" v0.0 ts=2013-08-16 22:11
 6515k 2015/04/23 C:\cygwin\bin\cygqt-mt-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygqt-mt-3.dll" v0.0 ts=2015-04-23 01:08
 2692k 2015/05/27 C:\cygwin\bin\cygQt3Support-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt3Support-4.dll" v0.0 ts=2015-05-27 22:48
   21k 2015/07/22 C:\cygwin\bin\cygQt5Concurrent-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5Concurrent-5.dll" v0.0 ts=2015-07-22 08:01
 4137k 2015/07/22 C:\cygwin\bin\cygQt5Core-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5Core-5.dll" v0.0 ts=2015-07-22 08:00
  502k 2015/07/22 C:\cygwin\bin\cygQt5DBus-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5DBus-5.dll" v0.0 ts=2015-07-22 08:03
 4546k 2015/07/22 C:\cygwin\bin\cygQt5Gui-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5Gui-5.dll" v0.0 ts=2015-07-22 08:08
 1347k 2015/07/22 C:\cygwin\bin\cygQt5Network-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5Network-5.dll" v0.0 ts=2015-07-22 08:06
  314k 2015/07/22 C:\cygwin\bin\cygQt5OpenGL-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5OpenGL-5.dll" v0.0 ts=2015-07-22 08:20
  211k 2015/07/07 C:\cygwin\bin\cygQt5Positioning-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5Positioning-5.dll" v0.0 ts=2015-07-07 20:54
  346k 2015/07/22 C:\cygwin\bin\cygQt5PrintSupport-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5PrintSupport-5.dll" v0.0 ts=2015-07-22 08:20
 3646k 2015/07/07 C:\cygwin\bin\cygQt5Qml-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5Qml-5.dll" v0.0 ts=2015-07-07 12:59
 3597k 2015/07/07 C:\cygwin\bin\cygQt5Quick-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5Quick-5.dll" v0.0 ts=2015-07-07 13:10
  534k 2015/07/07 C:\cygwin\bin\cygQt5QuickParticles-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5QuickParticles-5.dll" v0.0 ts=2015-07-07 13:15
  105k 2015/07/07 C:\cygwin\bin\cygQt5QuickTest-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5QuickTest-5.dll" v0.0 ts=2015-07-07 13:13
   52k 2015/07/07 C:\cygwin\bin\cygQt5QuickWidgets-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5QuickWidgets-5.dll" v0.0 ts=2015-07-07 13:16
 2101k 2015/07/07 C:\cygwin\bin\cygQt5Script-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5Script-5.dll" v0.0 ts=2015-07-07 21:13
  242k 2015/07/22 C:\cygwin\bin\cygQt5Sql-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5Sql-5.dll" v0.0 ts=2015-07-22 08:01
  143k 2015/07/22 C:\cygwin\bin\cygQt5Test-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5Test-5.dll" v0.0 ts=2015-07-22 08:01
  104k 2015/07/07 C:\cygwin\bin\cygQt5WebChannel-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5WebChannel-5.dll" v0.0 ts=2015-07-07 21:41
32026k 2015/07/08 C:\cygwin\bin\cygQt5WebKit-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5WebKit-5.dll" v0.0 ts=2015-07-08 08:27
  223k 2015/07/08 C:\cygwin\bin\cygQt5WebKitWidgets-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5WebKitWidgets-5.dll" v0.0 ts=2015-07-08 08:49
 6227k 2015/07/22 C:\cygwin\bin\cygQt5Widgets-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5Widgets-5.dll" v0.0 ts=2015-07-22 08:16
  222k 2015/07/22 C:\cygwin\bin\cygQt5Xml-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5Xml-5.dll" v0.0 ts=2015-07-22 08:01
 3704k 2015/07/07 C:\cygwin\bin\cygQt5XmlPatterns-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5XmlPatterns-5.dll" v0.0 ts=2015-07-07 12:38
 1112k 2015/05/27 C:\cygwin\bin\cygQtCLucene-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygQtCLucene-4.dll" v0.0 ts=2015-05-27 23:02
 2872k 2015/05/27 C:\cygwin\bin\cygQtCore-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygQtCore-4.dll" v0.0 ts=2015-05-27 22:38
  511k 2015/05/27 C:\cygwin\bin\cygQtDBus-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygQtDBus-4.dll" v0.0 ts=2015-05-27 22:40
 4073k 2015/05/27 C:\cygwin\bin\cygQtDeclarative-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygQtDeclarative-4.dll" v0.0 ts=2015-05-27 22:58
 5255k 2015/05/27 C:\cygwin\bin\cygQtDesigner-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygQtDesigner-4.dll" v0.0 ts=2015-05-27 23:06
 2938k 2015/05/27 C:\cygwin\bin\cygQtDesignerComponents-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygQtDesignerComponents-4.dll" v0.0 ts=2015-05-27 23:07
10899k 2015/05/27 C:\cygwin\bin\cygQtGui-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygQtGui-4.dll" v0.0 ts=2015-05-27 22:45
  545k 2015/05/27 C:\cygwin\bin\cygQtHelp-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygQtHelp-4.dll" v0.0 ts=2015-05-27 23:02
  145k 2015/05/27 C:\cygwin\bin\cygQtMultimedia-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygQtMultimedia-4.dll" v0.0 ts=2015-05-27 22:52
 1366k 2015/05/27 C:\cygwin\bin\cygQtNetwork-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygQtNetwork-4.dll" v0.0 ts=2015-05-27 22:39
 1017k 2015/05/27 C:\cygwin\bin\cygQtOpenGL-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygQtOpenGL-4.dll" v0.0 ts=2015-05-27 22:49
  147k 2013/02/08 C:\cygwin\bin\cygQtOpenVG-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygQtOpenVG-4.dll" v0.0 ts=2013-02-08 04:26
 2546k 2015/05/27 C:\cygwin\bin\cygQtScript-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygQtScript-4.dll" v0.0 ts=2015-05-27 22:55
  804k 2015/05/27 C:\cygwin\bin\cygQtScriptTools-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygQtScriptTools-4.dll" v0.0 ts=2015-05-27 22:59
  248k 2015/05/27 C:\cygwin\bin\cygQtSql-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygQtSql-4.dll" v0.0 ts=2015-05-27 22:40
  340k 2015/05/27 C:\cygwin\bin\cygQtSvg-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygQtSvg-4.dll" v0.0 ts=2015-05-27 22:53
  138k 2015/05/27 C:\cygwin\bin\cygQtTest-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygQtTest-4.dll" v0.0 ts=2015-05-27 22:40
31627k 2015/06/01 C:\cygwin\bin\cygQtWebKit-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygQtWebKit-4.dll" v0.0 ts=2015-06-01 03:20
  271k 2015/05/27 C:\cygwin\bin\cygQtXml-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygQtXml-4.dll" v0.0 ts=2015-05-27 22:39
 4769k 2015/05/27 C:\cygwin\bin\cygQtXmlPatterns-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygQtXmlPatterns-4.dll" v0.0 ts=2015-05-27 22:51
  487k 2015/07/02 C:\cygwin\bin\cygquadmath-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygquadmath-0.dll" v0.0 ts=2015-07-02 19:58
  180k 2015/04/23 C:\cygwin\bin\cygqui-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygqui-1.dll" v0.0 ts=2015-04-23 01:10
  134k 2014/09/12 C:\cygwin\bin\cygqzeitgeist-1.dll - os=4.0 img=0.8 sys=4.0
                  "cygqzeitgeist-1.dll" v0.0 ts=2014-09-12 04:24
  155k 2009/06/23 C:\cygwin\bin\cygreadline6.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline6.dll" v0.0 ts=2009-06-23 13:20
  208k 2015/01/27 C:\cygwin\bin\cygreadline7.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline7.dll" v0.0 ts=2015-01-27 23:43
   78k 2015/03/26 C:\cygwin\bin\cygrest-0.7-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygrest-0.7-0.dll" v0.0 ts=2015-03-26 20:35
   30k 2015/03/26 C:\cygwin\bin\cygrest-extras-0.7-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygrest-extras-0.7-0.dll" v0.0 ts=2015-03-26 20:35
   62k 2014/03/23 C:\cygwin\bin\cygroken-18.dll - os=4.0 img=1.0 sys=4.0
                  "cygroken-18.dll" v0.0 ts=2014-03-23 23:00
  216k 2015/05/18 C:\cygwin\bin\cygrsvg-2-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygrsvg-2-2.dll" v0.0 ts=2015-05-18 05:18
 2335k 2015/10/02 C:\cygwin\bin\cygruby220.dll - os=4.0 img=1.0 sys=4.0
                  "cygruby220.dll" v2.2 ts=2015-10-02 04:01
  102k 2014/11/24 C:\cygwin\bin\cygsasl2-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygsasl2-3.dll" v0.0 ts=2014-11-24 18:35
  290k 2015/03/18 C:\cygwin\bin\cygsecret-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsecret-1-0.dll" v0.0 ts=2015-03-18 22:48
   92k 2014/12/20 C:\cygwin\bin\cygserf-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygserf-1-0.dll" v0.0 ts=2014-12-20 16:56
   11k 2015/07/17 C:\cygwin\bin\cygsigsegv-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygsigsegv-2.dll" v0.0 ts=2015-07-17 22:33
  832k 2015/02/14 C:\cygwin\bin\cygslang-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygslang-2.dll" v0.0 ts=2015-02-14 19:00
   28k 2014/01/14 C:\cygwin\bin\cygSM-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygSM-6.dll" v0.0 ts=2014-01-14 23:54
   98k 2015/03/23 C:\cygwin\bin\cygsmartcols-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygsmartcols-1.dll" v0.0 ts=2015-03-23 09:55
  386k 2015/02/17 C:\cygwin\bin\cygsndfile-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygsndfile-1.dll" v0.0 ts=2015-02-17 22:22
  573k 2015/01/02 C:\cygwin\bin\cygsoup-2.4-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygsoup-2.4-1.dll" v0.0 ts=2015-01-02 03:50
   11k 2015/01/02 C:\cygwin\bin\cygsoup-gnome-2.4-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygsoup-gnome-2.4-1.dll" v0.0 ts=2015-01-02 03:50
  805k 2015/08/18 C:\cygwin\bin\cygsqlite3-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsqlite3-0.dll" v0.0 ts=2015-08-18 09:47
  155k 2015/03/17 C:\cygwin\bin\cygssh2-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygssh2-1.dll" v0.0 ts=2015-03-17 05:56
  327k 2015/03/19 C:\cygwin\bin\cygssl-0.9.8.dll - os=4.0 img=1.0 sys=4.0
                  "cygssl-0.9.8.dll" v0.0 ts=2015-03-19 17:54
  446k 2015/07/09 C:\cygwin\bin\cygssl-1.0.0.dll - os=4.0 img=1.0 sys=4.0
                  "cygssl-1.0.0.dll" v0.0 ts=2015-07-09 17:50
   13k 2015/07/02 C:\cygwin\bin\cygssp-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygssp-0.dll" v0.0 ts=2015-07-02 19:53
   25k 2012/09/28 C:\cygwin\bin\cygstartup-notification-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygstartup-notification-1-0.dll" v0.0 ts=2012-09-28 17:57
  944k 2015/07/02 C:\cygwin\bin\cygstdc++-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygstdc++-6.dll" v0.0 ts=2015-07-02 19:14
  405k 2015/09/26 C:\cygwin\bin\cygsvn_client-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_client-1-0.dll" v0.0 ts=2015-09-26 16:49
   67k 2015/09/26 C:\cygwin\bin\cygsvn_delta-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_delta-1-0.dll" v0.0 ts=2015-09-26 16:47
   85k 2015/09/26 C:\cygwin\bin\cygsvn_diff-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_diff-1-0.dll" v0.0 ts=2015-09-26 16:47
   39k 2015/09/26 C:\cygwin\bin\cygsvn_fs-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_fs-1-0.dll" v0.0 ts=2015-09-26 16:47
  174k 2015/09/26 C:\cygwin\bin\cygsvn_fs_base-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_fs_base-1-0.dll" v0.0 ts=2015-09-26 16:47
  297k 2015/09/26 C:\cygwin\bin\cygsvn_fs_fs-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_fs_fs-1-0.dll" v0.0 ts=2015-09-26 16:47
   11k 2015/09/26 C:\cygwin\bin\cygsvn_fs_util-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_fs_util-1-0.dll" v0.0 ts=2015-09-26 16:47
  309k 2015/09/26 C:\cygwin\bin\cygsvn_fs_x-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_fs_x-1-0.dll" v0.0 ts=2015-09-26 16:47
   47k 2015/09/26 C:\cygwin\bin\cygsvn_ra-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_ra-1-0.dll" v0.0 ts=2015-09-26 16:49
   32k 2015/09/26 C:\cygwin\bin\cygsvn_ra_local-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_ra_local-1-0.dll" v0.0 ts=2015-09-26 16:48
  170k 2015/09/26 C:\cygwin\bin\cygsvn_ra_serf-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_ra_serf-1-0.dll" v0.0 ts=2015-09-26 16:47
  109k 2015/09/26 C:\cygwin\bin\cygsvn_ra_svn-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_ra_svn-1-0.dll" v0.0 ts=2015-09-26 16:47
  201k 2015/09/26 C:\cygwin\bin\cygsvn_repos-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_repos-1-0.dll" v0.0 ts=2015-09-26 16:48
  921k 2015/09/26 C:\cygwin\bin\cygsvn_subr-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_subr-1-0.dll" v0.0 ts=2015-09-26 16:46
   85k 2015/09/26 C:\cygwin\bin\cygsvn_swig_py-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_swig_py-1-0.dll" v0.0 ts=2015-09-26 16:56
  691k 2015/09/26 C:\cygwin\bin\cygsvn_wc-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_wc-1-0.dll" v0.0 ts=2015-09-26 16:47
  394k 2015/03/18 C:\cygwin\bin\cygsybdb-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygsybdb-5.dll" v0.0 ts=2015-03-18 21:33
   63k 2015/10/08 C:\cygwin\bin\cygsynctex-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygsynctex-1.dll" v0.0 ts=2015-10-08 20:15
  229k 2013/04/25 C:\cygwin\bin\cygt1-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygt1-5.dll" v0.0 ts=2013-04-25 17:20
   59k 2012/10/02 C:\cygwin\bin\cygtasn1-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygtasn1-3.dll" v0.0 ts=2012-10-01 16:28
   69k 2015/08/28 C:\cygwin\bin\cygtasn1-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygtasn1-6.dll" v0.0 ts=2015-08-28 09:48
   60k 2013/01/16 C:\cygwin\bin\cygtdb-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygtdb-1.dll" v0.0 ts=2013-01-16 11:12
  183k 2015/10/08 C:\cygwin\bin\cygtexlua52-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygtexlua52-5.dll" v0.0 ts=2015-10-08 20:06
  442k 2015/10/08 C:\cygwin\bin\cygtexluajit-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygtexluajit-2.dll" v0.0 ts=2015-10-08 20:07
   34k 2014/11/12 C:\cygwin\bin\cygthai-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygthai-0.dll" v0.0 ts=2014-11-12 05:16
   54k 2015/06/09 C:\cygwin\bin\cygtic-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygtic-10.dll" v0.0 ts=2015-06-10 00:19
   48k 2009/11/20 C:\cygwin\bin\cygtic-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygtic-9.dll" v0.0 ts=2009-11-20 19:10
   54k 2015/06/09 C:\cygwin\bin\cygticw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygticw-10.dll" v0.0 ts=2015-06-10 00:33
  378k 2014/05/15 C:\cygwin\bin\cygtiff-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiff-5.dll" v0.0 ts=1970-01-01 00:00
  441k 2015/06/01 C:\cygwin\bin\cygtiff-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiff-6.dll" v0.0 ts=2015-06-01 21:52
   13k 2014/05/15 C:\cygwin\bin\cygtiffxx-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiffxx-5.dll" v0.0 ts=1970-01-01 00:00
   11k 2015/06/01 C:\cygwin\bin\cygtiffxx-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiffxx-6.dll" v0.0 ts=2015-06-01 21:52
   68k 2010/01/21 C:\cygwin\bin\cygUil-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygUil-2.dll" v0.0 ts=2010-01-21 07:33
  349k 2015/01/02 C:\cygwin\bin\cygUil-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygUil-4.dll" v0.0 ts=2015-01-02 18:29
   81k 2015/02/11 C:\cygwin\bin\cygusb0.dll - os=4.0 img=1.0 sys=4.0
                  "cygusb0.dll" v0.0 ts=2015-02-11 01:42
  138k 2013/06/12 C:\cygwin\bin\cygustr-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygustr-1.dll" v0.0 ts=2013-06-12 09:41
   16k 2015/03/23 C:\cygwin\bin\cyguuid-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyguuid-1.dll" v0.0 ts=2015-03-23 09:55
  163k 2015/03/08 C:\cygwin\bin\cygvorbis-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygvorbis-0.dll" v0.0 ts=2015-03-08 00:32
  550k 2015/03/08 C:\cygwin\bin\cygvorbisenc-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygvorbisenc-2.dll" v0.0 ts=2015-03-08 00:32
   33k 2015/03/08 C:\cygwin\bin\cygvorbisfile-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygvorbisfile-3.dll" v0.0 ts=2015-03-08 00:32
 1663k 2015/10/01 C:\cygwin\bin\cygvpx-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygvpx-1.dll" v0.0 ts=2015-10-01 21:40
    8k 2015/09/28 C:\cygwin\bin\cygvtv-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygvtv-0.dll" v0.0 ts=2015-09-27 23:13
    8k 2015/09/28 C:\cygwin\bin\cygvtv_stubs-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygvtv_stubs-0.dll" v0.0 ts=2015-09-27 23:13
  357k 2015/03/26 C:\cygwin\bin\cygwebp-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygwebp-5.dll" v0.0 ts=2015-03-26 16:05
  206k 2015/03/26 C:\cygwin\bin\cygwebpdecoder-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygwebpdecoder-1.dll" v0.0 ts=2015-03-26 16:05
   14k 2015/03/26 C:\cygwin\bin\cygwebpdemux-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygwebpdemux-1.dll" v0.0 ts=2015-03-26 16:05
   29k 2015/03/26 C:\cygwin\bin\cygwebpmux-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygwebpmux-1.dll" v0.0 ts=2015-03-26 16:05
 3043k 2013/11/29 C:\cygwin\bin\cygwin1-bkp.dll - os=4.0 img=1.0 sys=4.0
                  "cygwin1.dll" v0.0 ts=2013-11-29 10:25
  160k 2014/03/23 C:\cygwin\bin\cygwind-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygwind-0.dll" v0.0 ts=2014-03-23 23:01
    9k 2009/10/14 C:\cygwin\bin\cygWindowsWM-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygWindowsWM-7.dll" v0.0 ts=2009-10-14 18:48
  319k 2013/07/29 C:\cygwin\bin\cygWINGs-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygWINGs-2.dll" v0.0 ts=2013-07-29 03:48
  308k 2015/02/08 C:\cygwin\bin\cygWINGs-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygWINGs-3.dll" v0.0 ts=2015-02-08 11:19
   12k 2015/02/08 C:\cygwin\bin\cygWMaker-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygWMaker-1.dll" v0.0 ts=2015-02-08 11:19
  317k 2015/06/30 C:\cygwin\bin\cygwmf-0-2-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygwmf-0-2-7.dll" v0.0 ts=2015-06-30 05:55
  105k 2015/06/30 C:\cygwin\bin\cygwmflite-0-2-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygwmflite-0-2-7.dll" v0.0 ts=2015-06-30 05:55
   30k 2013/11/15 C:\cygwin\bin\cygwrap-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygwrap-0.dll" v0.0 ts=2013-11-15 20:13
   74k 2013/07/29 C:\cygwin\bin\cygwraster-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygwraster-3.dll" v0.0 ts=2013-07-29 03:47
   75k 2015/02/08 C:\cygwin\bin\cygwraster-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygwraster-5.dll" v0.0 ts=2015-02-08 11:18
   95k 2013/07/29 C:\cygwin\bin\cygWUtil-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygWUtil-2.dll" v0.0 ts=2013-07-29 03:48
   92k 2015/02/08 C:\cygwin\bin\cygWUtil-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygWUtil-5.dll" v0.0 ts=2015-02-08 11:18
 1173k 2015/03/26 C:\cygwin\bin\cygX11-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygX11-6.dll" v0.0 ts=2015-03-26 15:27
    8k 2015/03/26 C:\cygwin\bin\cygX11-xcb-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygX11-xcb-1.dll" v0.0 ts=2015-03-26 15:27
   10k 2013/06/06 C:\cygwin\bin\cygXau-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXau-6.dll" v0.0 ts=2013-06-06 06:29
  251k 2009/10/19 C:\cygwin\bin\cygXaw-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw-6.dll" v0.0 ts=2009-10-18 22:55
  378k 2014/01/15 C:\cygwin\bin\cygXaw-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw-7.dll" v0.0 ts=2014-01-15 03:07
  360k 2005/10/27 C:\cygwin\bin\cygXaw-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw-8.dll" v0.0 ts=2005-10-26 18:45
  254k 2010/05/18 C:\cygwin\bin\cygXaw3d-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw3d-7.dll" v0.0 ts=2010-05-18 23:11
  266k 2012/05/21 C:\cygwin\bin\cygXaw3d-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw3d-8.dll" v0.0 ts=2012-05-21 22:20
  105k 2015/09/07 C:\cygwin\bin\cygxcb-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-1.dll" v0.0 ts=2015-09-07 07:07
   12k 2015/09/07 C:\cygwin\bin\cygxcb-composite-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-composite-0.dll" v0.0 ts=2015-09-07 07:07
   11k 2015/09/07 C:\cygwin\bin\cygxcb-damage-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-damage-0.dll" v0.0 ts=2015-09-07 07:07
   11k 2015/09/07 C:\cygwin\bin\cygxcb-dpms-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-dpms-0.dll" v0.0 ts=2015-09-07 07:07
   42k 2014/08/10 C:\cygwin\bin\cygxcb-ewmh-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-ewmh-2.dll" v0.0 ts=1970-01-01 00:00
   73k 2015/09/07 C:\cygwin\bin\cygxcb-glx-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-glx-0.dll" v0.0 ts=2015-09-07 07:07
   19k 2014/08/10 C:\cygwin\bin\cygxcb-icccm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-icccm-4.dll" v0.0 ts=1970-01-01 00:00
   14k 2012/09/28 C:\cygwin\bin\cygxcb-image-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-image-0.dll" v0.0 ts=2012-09-28 17:59
    9k 2012/09/28 C:\cygwin\bin\cygxcb-keysyms-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-keysyms-1.dll" v0.0 ts=2012-09-28 18:05
   43k 2015/09/07 C:\cygwin\bin\cygxcb-randr-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-randr-0.dll" v0.0 ts=2015-09-07 07:07
   15k 2015/09/07 C:\cygwin\bin\cygxcb-record-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-record-0.dll" v0.0 ts=2015-09-07 07:07
   32k 2015/09/07 C:\cygwin\bin\cygxcb-render-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-render-0.dll" v0.0 ts=2015-09-07 07:07
   14k 2014/08/10 C:\cygwin\bin\cygxcb-render-util-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-render-util-0.dll" v0.0 ts=1970-01-01 00:00
   14k 2015/09/07 C:\cygwin\bin\cygxcb-res-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-res-0.dll" v0.0 ts=2015-09-07 07:07
   11k 2015/09/07 C:\cygwin\bin\cygxcb-screensaver-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-screensaver-0.dll" v0.0 ts=2015-09-07 07:07
   13k 2015/09/07 C:\cygwin\bin\cygxcb-shape-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-shape-0.dll" v0.0 ts=2015-09-07 07:07
   12k 2015/09/07 C:\cygwin\bin\cygxcb-shm-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-shm-0.dll" v0.0 ts=2015-09-07 07:07
   17k 2013/08/14 C:\cygwin\bin\cygxcb-sync-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-sync-0.dll" v0.0 ts=2013-08-14 19:53
   21k 2015/09/07 C:\cygwin\bin\cygxcb-sync-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-sync-1.dll" v0.0 ts=2015-09-07 07:07
   14k 2012/09/28 C:\cygwin\bin\cygxcb-util-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-util-1.dll" v0.0 ts=2012-09-28 17:51
   24k 2015/09/07 C:\cygwin\bin\cygxcb-xfixes-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-xfixes-0.dll" v0.0 ts=2015-09-07 07:07
   11k 2015/09/07 C:\cygwin\bin\cygxcb-xinerama-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-xinerama-0.dll" v0.0 ts=2015-09-07 07:07
   76k 2015/09/07 C:\cygwin\bin\cygxcb-xinput-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-xinput-0.dll" v0.0 ts=2015-09-07 07:07
   87k 2015/09/07 C:\cygwin\bin\cygxcb-xkb-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-xkb-1.dll" v0.0 ts=2015-09-07 07:07
   10k 2015/09/07 C:\cygwin\bin\cygxcb-xtest-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-xtest-0.dll" v0.0 ts=2015-09-07 07:07
   10k 2010/11/01 C:\cygwin\bin\cygXcomposite-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXcomposite-1.dll" v0.0 ts=2010-11-01 01:59
   35k 2013/06/06 C:\cygwin\bin\cygXcursor-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXcursor-1.dll" v0.0 ts=2013-06-06 21:33
   37k 2013/08/04 C:\cygwin\bin\cygxcwm-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcwm-0.dll" v0.0 ts=2013-08-04 11:19
    9k 2013/04/08 C:\cygwin\bin\cygXdamage-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXdamage-1.dll" v0.0 ts=2013-04-08 22:37
   46k 2015/07/19 C:\cygwin\bin\cygxdelta-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygxdelta-2.dll" v0.0 ts=2015-07-19 14:56
   22k 2015/03/26 C:\cygwin\bin\cygXdmcp-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXdmcp-6.dll" v0.0 ts=2015-03-26 15:38
   62k 2014/08/10 C:\cygwin\bin\cygXext-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXext-6.dll" v0.0 ts=1970-01-01 00:00
   19k 2013/06/06 C:\cygwin\bin\cygXfixes-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygXfixes-3.dll" v0.0 ts=2013-06-06 20:37
  216k 2015/03/17 C:\cygwin\bin\cygXfont-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXfont-1.dll" v0.0 ts=2015-03-17 16:50
   77k 2014/08/10 C:\cygwin\bin\cygXft-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXft-2.dll" v0.0 ts=1970-01-01 00:00
   58k 2014/08/10 C:\cygwin\bin\cygXi-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXi-6.dll" v0.0 ts=1970-01-01 00:00
    9k 2013/06/06 C:\cygwin\bin\cygXinerama-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXinerama-1.dll" v0.0 ts=2013-06-06 21:38
  233k 2015/07/16 C:\cygwin\bin\cygxkbcommon-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxkbcommon-0.dll" v0.0 ts=2015-07-16 23:13
   29k 2015/07/16 C:\cygwin\bin\cygxkbcommon-x11-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxkbcommon-x11-0.dll" v0.0 ts=2015-07-16 23:13
  119k 2012/05/23 C:\cygwin\bin\cygxkbfile-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxkbfile-1.dll" v0.0 ts=2012-05-23 05:41
 1173k 2010/01/21 C:\cygwin\bin\cygXm-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXm-2.dll" v0.0 ts=2010-01-21 07:32
 2352k 2015/01/02 C:\cygwin\bin\cygXm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygXm-4.dll" v0.0 ts=2015-01-02 18:27
  395k 2015/02/12 C:\cygwin\bin\cygXmHTML-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygXmHTML-0.dll" v0.0 ts=2015-02-11 14:42
 1242k 2014/10/19 C:\cygwin\bin\cygxml2-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygxml2-2.dll" v0.0 ts=2014-10-19 09:00
   88k 2014/01/15 C:\cygwin\bin\cygXmu-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXmu-6.dll" v0.0 ts=2014-01-15 02:52
   12k 2014/01/15 C:\cygwin\bin\cygXmuu-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXmuu-1.dll" v0.0 ts=2014-01-15 02:52
   26k 2005/10/27 C:\cygwin\bin\cygXp-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXp-6.dll" v0.0 ts=2005-10-26 18:27
   60k 2014/01/15 C:\cygwin\bin\cygXpm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygXpm-4.dll" v0.0 ts=2014-01-15 02:25
   35k 2014/01/15 C:\cygwin\bin\cygXrandr-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXrandr-2.dll" v0.0 ts=2014-01-15 00:57
   35k 2013/06/14 C:\cygwin\bin\cygXrender-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXrender-1.dll" v0.0 ts=2013-06-14 10:01
    9k 2013/06/06 C:\cygwin\bin\cygXRes-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXRes-1.dll" v0.0 ts=2013-06-06 22:14
  227k 2015/03/18 C:\cygwin\bin\cygxslt-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxslt-1.dll" v0.0 ts=2015-03-19 00:47
    9k 2012/05/23 C:\cygwin\bin\cygXss-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXss-1.dll" v0.0 ts=2012-05-23 05:56
  320k 2014/08/10 C:\cygwin\bin\cygXt-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXt-6.dll" v0.0 ts=1970-01-01 00:00
   19k 2013/06/06 C:\cygwin\bin\cygXtst-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXtst-6.dll" v0.0 ts=2013-06-06 20:43
  114k 2014/12/08 C:\cygwin\bin\cygyaml-0-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygyaml-0-2.dll" v0.0 ts=2014-12-08 18:29
   83k 2014/11/19 C:\cygwin\bin\cygz.dll - os=4.0 img=1.0 sys=4.0
                  "cygz.dll" v0.0 ts=2014-11-19 22:57
   74k 2015/03/26 C:\cygwin\bin\cygzip-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygzip-2.dll" v0.0 ts=2015-03-26 20:05
   25k 2013/05/30 C:\cygwin\bin\cygzzip-0-13.dll - os=4.0 img=1.0 sys=4.0
                  "cygzzip-0-13.dll" v0.0 ts=2013-05-30 03:44
   12k 2013/05/30 C:\cygwin\bin\cygzzipfseeko-0-13.dll - os=4.0 img=1.0 sys=4.0
                  "cygzzipfseeko-0-13.dll" v0.0 ts=2013-05-30 03:44
   14k 2013/05/30 C:\cygwin\bin\cygzzipmmapped-0-13.dll - os=4.0 img=1.0 sys=4.0
                  "cygzzipmmapped-0-13.dll" v0.0 ts=2013-05-30 03:44
    8k 2013/05/30 C:\cygwin\bin\cygzzipwrap-0-13.dll - os=4.0 img=1.0 sys=4.0
                  "cygzzipwrap-0-13.dll" v0.0 ts=2013-05-30 03:44
 3399k 2015/08/20 C:\cygwin\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0
                  "cygwin1.dll" v0.0 ts=2015-08-20 10:40
    Cygwin DLL version info:
        DLL version: 2.2.1
        DLL epoch: 19
        DLL old termios: 5
        DLL malloc env: 28
        Cygwin conv: 181
        API major: 0
        API minor: 289
        Shared data: 5
        DLL identifier: cygwin1
        Mount registry: 3
        Cygwin registry name: Cygwin
        Installations name: Installations
        Cygdrive default prefix: 
        Build date: 
        Shared id: cygwin1S5

   56k 2004/03/11 C:\cygwin\usr\X11R6\bin\cygXft-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXft-1.dll" v0.0 ts=2003-11-18 01:42

Potential app conflicts:

ZoneAlarm Personal Firewall
Detected: HKLM Registry Key.


Service             : cron                
Display name        : Cron daemon
Current State       : Running
Controls Accepted   : Stop
Command             : /usr/sbin/cron -n
stdin path          : /dev/null
stdout path         : /var/log/cron.log
stderr path         : /var/log/cron.log
Environment         : CYGWIN=" " 
Process Type        : Own Process
Startup             : Automatic
Account             : .\cyg_server

Service             : cygserver           
Display name        : CYGWIN cygserver
Current State       : Running
Controls Accepted   : Stop
Command             : /usr/sbin/cygserver
stdin path          : /dev/null
stdout path         : /var/log/cygserver.log
stderr path         : /var/log/cygserver.log
Process Type        : Own Process
Startup             : Automatic
Account             : LocalSystem


Cygwin Package Information
Last downloaded files to: C:\Users\Chef\Downloads\cygwin-cache
Last downloaded files from: http://ftp-stud.hs-esslingen.de/pub/Mirrors/sources.redhat.com/cygwin/

Package                                   Version                 Status
_autorebase                               001002-1                OK
_update-info-dir                          01442-1                 OK
adwaita-icon-theme                        3.14.1-1                OK
adwaita-themes                            3.14.2.3-2              OK
aewm++                                    1.1.2-1                 OK
aewm++-goodies                            1.0-2                   OK
alternatives                              1.3.30c-10              OK
antiword                                  0.37-1                  OK
appres                                    1.0.4-1                 OK
aspell                                    0.60.6.1-3              OK
aspell-de                                 20030222.1-3            OK
aspell-en                                 7.1.0-2                 OK
asymptote                                 2.35-1                  OK
at-spi2-core                              2.14.1-1                OK
attr                                      2.4.46-1                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
aview                                     1.3.0rc1-2              OK
base-cygwin                               3.8-1                   OK
base-files                                4.2-4                   OK
bash                                      4.3.42-4                OK
bash-completion                           1.3-1                   OK
bc                                        1.06.95-2               OK
bdftopcf                                  1.0.4-3                 OK
beforelight                               1.0.4-1                 OK
biber                                     2.1-1                   OK
bigreqsproto                              1.1.2-1                 OK
binutils                                  2.25-4                  OK
bitmap                                    1.0.7-1                 OK
bzip2                                     1.0.6-2                 OK
bzr                                       2.6.0-2                 OK
ca-certificates                           2.5-1                   OK
cabextract                                1.6-1                   OK
cantarell-fonts                           0.0.16-2                OK
cgoban                                    1.9.14-6                OK
cmake                                     3.3.1-2                 OK
compface                                  1.5.2-12                OK
compositeproto                            0.4.2-1                 OK
coreutils                                 8.24-3                  OK
cpio                                      2.11-3                  OK
cron                                      4.1-60                  OK
crypt                                     1.2-1                   OK
csih                                      0.9.8-6                 OK
ctags                                     5.8-1                   OK
cvs                                       1.12.13-10              OK
cygport                                   0.20.2-1                OK
cygrunsrv                                 1.62-1                  OK
cygutils                                  1.4.14-1                OK
cygwin                                    2.2.1-1                 OK
cygwin-devel                              2.2.1-1                 OK
cygwin-doc                                2.1.0-1                 OK
cygwin-x-doc                              1.1.20150922-1          OK
damageproto                               1.2.1-1                 OK
dash                                      0.5.8-3                 OK
dbus                                      1.8.16-1                OK
dbus-x11                                  1.8.16-1                OK
dconf-service                             0.22.0-1                OK
ddd                                       3.3.12-3                OK
desktop-file-utils                        0.21-1                  OK
dialog                                    1.2-20150225-2          OK
diffstat                                  1.60-1                  OK
diffutils                                 3.3-3                   OK
dmxproto                                  2.3.1-1                 OK
dos2unix                                  7.3.1-1                 OK
doxygen                                   1.8.10-1                OK
dri-drivers                               11.0.3-1                OK
ed                                        1.11-1                  OK
editres                                   1.0.6-1                 OK
editrights                                1.03-1                  OK
fbpanel                                   6.1-6                   OK
fetchmail                                 6.3.21-1                OK
file                                      5.24-1                  OK
findutils                                 4.5.12-1                OK
fixesproto                                5.0-1                   OK
Empty package fltk
fltk                                      1.3.2.9965-1            OK
Empty package font-adobe-dpi100
font-adobe-dpi100                         7.5-2                   OK
Empty package font-adobe-dpi75
font-adobe-dpi75                          7.5-2                   OK
Empty package font-adobe-utopia-dpi100
font-adobe-utopia-dpi100                  7.5-2                   OK
Empty package font-adobe-utopia-dpi75
font-adobe-utopia-dpi75                   7.5-2                   OK
Empty package font-adobe-utopia-type1
font-adobe-utopia-type1                   7.5-2                   OK
Empty package font-alias
font-alias                                7.5-2                   OK
Empty package font-arabic-misc
font-arabic-misc                          7.5-2                   OK
Empty package font-bh-dpi100
font-bh-dpi100                            7.5-2                   OK
Empty package font-bh-dpi75
font-bh-dpi75                             7.5-2                   OK
Empty package font-bh-lucidatypewriter-dpi100
font-bh-lucidatypewriter-dpi100           7.5-2                   OK
Empty package font-bh-lucidatypewriter-dpi75
font-bh-lucidatypewriter-dpi75            7.5-2                   OK
Empty package font-bh-ttf
font-bh-ttf                               7.5-2                   OK
Empty package font-bh-type1
font-bh-type1                             7.5-2                   OK
Empty package font-bitstream-dpi100
font-bitstream-dpi100                     7.5-2                   OK
Empty package font-bitstream-dpi75
font-bitstream-dpi75                      7.5-2                   OK
font-bitstream-speedo                     1.0.1-1                 OK
Empty package font-bitstream-type1
font-bitstream-type1                      7.5-2                   OK
font-bitstream-vera-ttf                   1.10-1                  OK
Empty package font-cantarell-otf
font-cantarell-otf                        0.0.16-2                OK
Empty package font-cronyx-cyrillic
font-cronyx-cyrillic                      7.5-2                   OK
Empty package font-cursor-misc
font-cursor-misc                          7.5-2                   OK
Empty package font-daewoo-misc
font-daewoo-misc                          7.5-2                   OK
Empty package font-dec-misc
font-dec-misc                             7.5-2                   OK
Empty package font-encodings
font-encodings                            7.5-2                   OK
Empty package font-ibm-type1
font-ibm-type1                            7.5-2                   OK
Empty package font-isas-misc
font-isas-misc                            7.5-2                   OK
Empty package font-jis-misc
font-jis-misc                             7.5-2                   OK
Empty package font-micro-misc
font-micro-misc                           7.5-2                   OK
Empty package font-misc-cyrillic
font-misc-cyrillic                        7.5-2                   OK
Empty package font-misc-ethiopic
font-misc-ethiopic                        7.5-2                   OK
Empty package font-misc-meltho
font-misc-meltho                          7.5-2                   OK
Empty package font-misc-misc
font-misc-misc                            7.5-2                   OK
Empty package font-mutt-misc
font-mutt-misc                            7.5-2                   OK
Empty package font-schumacher-misc
font-schumacher-misc                      7.5-2                   OK
Empty package font-screen-cyrillic
font-screen-cyrillic                      7.5-2                   OK
Empty package font-sony-misc
font-sony-misc                            7.5-2                   OK
Empty package font-sun-misc
font-sun-misc                             7.5-2                   OK
font-tektronix-misc                       2.6-4                   OK
font-util                                 1.3.1-2                 OK
Empty package font-winitzki-cyrillic
font-winitzki-cyrillic                    7.5-2                   OK
Empty package font-xfree86-type1
font-xfree86-type1                        7.5-2                   OK
fontconfig                                2.11.1-3                OK
fontsproto                                2.1.3-1                 OK
fonttosfnt                                1.0.4-1                 OK
freetype2-demos                           2.5.5-2                 OK
fvwm                                      2.6.5-2                 OK
gamin                                     0.1.10-15               OK
gawk                                      4.1.3-1                 OK
gcc-core                                  4.9.3-1                 OK
gcc-g++                                   4.9.3-1                 OK
gcc4-core                                 4.7.3-2                 OK
gcc4-g++                                  4.7.3-2                 OK
gccmakedep                                1.0.3-1                 OK
gconf-desktop-schemas                     2.32.1-3                OK
GConf2                                    3.2.6-2                 OK
gcr                                       3.14.0-2                OK
gdb                                       7.8-2                   OK
gdbm                                      1.8.3-20                OK
gdk-pixbuf2.0-svg                         2.40.9-1                OK
getent                                    2.18.90-4               OK
gettext                                   0.19.5.1-2              OK
ghostscript                               9.15-2                  OK
ghostscript-fonts-other                   6.0-1                   OK
ghostscript-fonts-std                     8.11-1                  OK
girepository-Atk1.0                       2.14.0-1                OK
girepository-cairo1.0                     1.42.0-1                OK
girepository-GdkPixbuf2.0                 2.31.7-1                OK
girepository-GLib2.0                      1.42.0-1                OK
girepository-Gtk2.0                       2.24.28-2               OK
girepository-Gtk3.0                       3.14.13-1               OK
girepository-Pango1.0                     1.36.8-1                OK
girepository-x11                          1.42.0-1                OK
git                                       2.5.3-1                 OK
Empty package glib
glib                                      1.2.10-11               OK
glib2.0-networking                        2.42.1-1                OK
glproto                                   1.4.17-1                OK
gmp                                       6.0.0a-2                OK
gnome-icon-theme                          3.10.0-1                OK
gnome-keyring                             3.14.0-2                OK
gnome-menus                               3.13.3-3                OK
gnugo                                     3.8-3                   OK
gnupg                                     1.4.19-2                OK
gperf                                     3.0.4-2                 OK
grandr                                    0.1-1                   OK
grep                                      2.21-2                  OK
groff                                     1.22.3-1                OK
gsettings-desktop-schemas                 3.14.2-1                OK
gsl                                       1.16-1                  OK
Empty package gtk+
gtk+                                      1.2.10-11               OK
Empty package gtk-engines
gtk-engines                               0.12-11                 OK
gtk-update-icon-cache                     3.14.13-1               OK
gtk1.2-engines                            0.12-11                 OK
gtk2.0-canberra-module                    0.30-1                  OK
gtk2.0-demo                               2.24.28-2               OK
gtk2.0-engines-pixmap                     2.24.28-2               OK
gtk2.0-gail                               2.24.28-2               OK
gtk3-canberra-module                      0.30-1                  OK
gtk3-demo                                 3.14.13-1               OK
gv                                        3.7.4-1                 OK
gvfs                                      1.22.4-1                OK
gzip                                      1.6-1                   OK
harfbuzz                                  1.0.5-1                 OK
hdf5                                      1.8.15-1                OK
hicolor-icon-theme                        0.12-1                  OK
hostname                                  3.13-1                  OK
iceauth                                   1.0.6-1                 OK
ico                                       1.0.4-1                 OK
icon-naming-utils                         0.8.90-1                OK
icu                                       4.8.1-1                 OK
ImageMagick                               6.9.1.3-3               OK
imake                                     1.0.7-1                 OK
inetutils                                 1.9.1-2                 OK
inetutils-server                          1.9.1-2                 OK
info                                      6.0-1                   OK
inputproto                                2.3.1-1                 OK
ipc-utils                                 1.0-1                   OK
iso-codes                                 3.56-1                  OK
jgraph                                    8.4-1                   OK
kbproto                                   1.0.6-1                 OK
keychain                                  2.7.1-1                 OK
khronos-opengl-registry                   20150605_svn27684-2     OK
less                                      471-1                   OK
lftp                                      4.6.3a-1                OK
libaa1                                    1.4rc5-12               OK
libAfterImage0                            1.18-1                  OK
libapr1                                   1.5.2-2                 OK
libaprutil1                               1.5.4-2                 OK
libarchive13                              3.1.2-3                 OK
libarchive2                               2.8.3-1                 OK
libargp                                   20110921-2              OK
libasn1_8                                 1.5.3-1                 OK
libaspell15                               0.60.6.1-3              OK
libasyncns0                               0.8-1                   OK
libatk-bridge2.0-devel                    2.14.1-1                OK
libatk-bridge2.0_0                        2.14.1-1                OK
libatk1.0-devel                           2.14.0-1                OK
libatk1.0_0                               2.14.0-1                OK
libatomic1                                4.9.3-1                 OK
libatspi-devel                            2.14.1-1                OK
libatspi0                                 2.14.1-1                OK
libattr1                                  2.4.46-1                OK
libaudio-devel                            1.9.3-1                 OK
libaudio2                                 1.9.3-1                 OK
libautotrace-devel                        0.31.1-16               OK
libautotrace3                             0.31.1-16               OK
libavahi-client3                          0.6.31-2                OK
libavahi-common3                          0.6.31-2                OK
libavahi-glib1                            0.6.31-2                OK
libblkid1                                 2.25.2-2                OK
libbrlapi                                 4.2-3                   OK
libbz2-devel                              1.0.6-2                 OK
libbz2_1                                  1.0.6-2                 OK
libcairo-devel                            1.14.2-1                OK
libcairo2                                 1.14.2-1                OK
libcanberra-devel                         0.30-1                  OK
libcanberra-gtk-devel                     0.30-1                  OK
libcanberra-gtk0                          0.30-1                  OK
libcanberra-gtk3-devel                    0.30-1                  OK
libcanberra-gtk3_0                        0.30-1                  OK
libcanberra0                              0.30-1                  OK
libcatgets1                               1.1-2                   OK
libcharset1                               1.14-3                  OK
libclang                                  3.5.2-1                 OK
libcloog-isl4                             0.18.0-2                OK
libcloog0                                 0.15.11-1               OK
libcom_err2                               1.42.12-2               OK
libcompface-devel                         1.5.2-12                OK
libcompface0                              1.5.2-12                OK
libcroco0.6_3                             0.6.8-1                 OK
libcurl-devel                             7.45.0-1                OK
libcurl4                                  7.45.0-1                OK
libdatrie1                                0.2.8-1                 OK
libdb4.5                                  4.5.20.2-3              OK
libdb4.8                                  4.8.30-1                OK
libdb4.8-devel                            4.8.30-1                OK
libdbus-glib_1_2                          0.102-1                 OK
libdbus1-devel                            1.8.16-1                OK
libdbus1_3                                1.8.16-1                OK
libdialog12                               1.2-20150225-2          OK
libdmx-devel                              1.1.3-1                 OK
libdmx1                                   1.1.3-1                 OK
libedit0                                  20130712-1              OK
libEGL-devel                              11.0.3-1                OK
libEGL1                                   11.0.3-1                OK
libelf0                                   0.8.13-2                OK
libEMF-devel                              1.0.7-2                 OK
libEMF1                                   1.0.7-2                 OK
libexif12                                 0.6.21-1                OK
libexpat-devel                            2.1.0-3                 OK
libexpat1                                 2.1.0-3                 OK
Empty package libexpat1-devel
libexpat1-devel                           2.1.0-3                 OK
libfam0                                   0.1.10-15               OK
libffi-devel                              3.2.1-1                 OK
libffi4                                   4.5.3-3                 OK
libffi6                                   3.2.1-1                 OK
libfftw3-devel                            3.3.4-2                 OK
libfftw3-omp3                             3.3.4-2                 OK
libfftw3_3                                3.3.4-2                 OK
libFLAC8                                  1.3.1-1                 OK
libfltk-devel                             1.3.3-1                 OK
libfltk-doc                               1.3.2.9965-1            OK
libfltk1.1                                1.1.10-1                OK
libfltk1.1-gdi                            1.1.10-1                OK
libfltk1.3                                1.3.3-1                 OK
libfontconfig-devel                       2.11.1-3                OK
libfontconfig1                            2.11.1-3                OK
libfontenc-devel                          1.1.2-1                 OK
libfontenc1                               1.1.2-1                 OK
libfpx-devel                              1.3.1.4-1               OK
libfpx1                                   1.3.1.4-1               OK
libfreetype-devel                         2.5.5-2                 OK
libfreetype6                              2.5.5-2                 OK
libfribidi0                               0.19.2-1                OK
libgailutil-devel                         2.24.28-2               OK
libgailutil18                             2.24.28-2               OK
libgailutil3-devel                        3.14.13-1               OK
libgailutil3_0                            3.14.13-1               OK
libgc1                                    7.2d-1                  OK
libgcc1                                   4.9.3-1                 OK
libgcj-common                             4.9.3-1                 OK
libgcj15                                  4.9.3-1                 OK
libgck1_0                                 3.14.0-2                OK
libgconf2_4                               3.2.6-2                 OK
libgcr3-common                            3.14.0-2                OK
libgcr3_1                                 3.14.0-2                OK
libgcrypt-devel                           1.6.3-1                 OK
libgcrypt11                               1.5.3-2                 OK
libgcrypt20                               1.6.3-1                 OK
libgd-devel                               2.1.1-1                 OK
libgd2                                    2.0.36RC1-15            OK
libgd3                                    2.1.1-1                 OK
libgdbm-devel                             1.8.3-20                OK
libgdbm4                                  1.8.3-20                OK
libgdk_imlib1                             1.9.15-15               OK
libgdk_pixbuf2.0-devel                    2.31.7-1                OK
libgdk_pixbuf2.0_0                        2.31.7-1                OK
libgdk_pixbuf_xlib2.0_0                   2.31.7-1                OK
libgeoclue0                               0.12.99-2               OK
libgfortran3                              4.9.3-1                 OK
libggi2                                   2.2.2-4                 OK
libggi2-display-x                         2.2.2-4                 OK
libggiwmh0                                0.3.2-4                 OK
libggiwmh0-display-x                      0.3.2-4                 OK
libgif-devel                              4.1.6-10                OK
libgif4                                   4.1.6-10                OK
libgii1                                   1.0.2-4                 OK
libgii1-input-x                           1.0.2-4                 OK
libgirepository1.0_1                      1.42.0-1                OK
libGL-devel                               11.0.3-1                OK
libGL1                                    11.0.3-1                OK
libglade2.0_0                             2.6.4-2                 OK
Empty package libglapi-devel
libglapi-devel                            11.0.3-1                OK
libglapi0                                 11.0.3-1                OK
libGLESv1_CM1                             10.3.7-1                OK
libGLESv2_2                               11.0.3-1                OK
libGLEW1.11                               1.11.0-1                OK
libglib1.2-devel                          1.2.10-12               OK
libglib1.2_0                              1.2.10-12               OK
libglib2.0-devel                          2.42.2-1                OK
libglib2.0_0                              2.42.2-1                OK
libGLU-devel                              9.0.0-1                 OK
libGLU1                                   9.0.0-1                 OK
libglut3                                  2.8.1-1                 OK
libGLw-devel                              8.0.0-1                 OK
libGLw1                                   8.0.0-1                 OK
libgmp-devel                              6.0.0a-2                OK
libgmp10                                  6.0.0a-2                OK
libgmp3                                   4.3.2-1                 OK
libgmpxx4                                 6.0.0a-2                OK
libgnome-keyring0                         3.12.0-2                OK
libgnome-menu3_0                          3.13.3-3                OK
libgnutls26                               2.12.20-1               OK
libgnutls28                               3.3.17-1                OK
libgomp1                                  4.9.3-1                 OK
libgpg-error-devel                        1.18-1                  OK
libgpg-error0                             1.18-1                  OK
libGraphicsMagick3                        1.3.21-3                OK
libgraphite2-devel                        1.2.3-1                 OK
libgraphite2_3                            1.2.3-1                 OK
libgs-devel                               9.15-2                  OK
libgs9                                    9.15-2                  OK
libgsm1                                   1.0.13-3                OK
libgssapi3                                1.5.3-1                 OK
libgssapi_krb5_2                          1.13.2-1                OK
libgstinterfaces0.10-devel                0.10.36-2               OK
libgstinterfaces0.10_0                    0.10.36-2               OK
libgstinterfaces1.0-devel                 1.4.5-1                 OK
libgstinterfaces1.0_0                     1.4.5-1                 OK
libgstreamer0.10-devel                    0.10.36-2               OK
libgstreamer0.10_0                        0.10.36-2               OK
libgstreamer1.0-devel                     1.4.5-1                 OK
libgstreamer1.0_0                         1.4.5-1                 OK
libgtk1.2-devel                           1.2.10-13               OK
libgtk1.2_0                               1.2.10-13               OK
libgtk2.0-devel                           2.24.28-2               OK
libgtk2.0_0                               2.24.28-2               OK
libgtk3-devel                             3.14.13-1               OK
libgtk3_0                                 3.14.13-1               OK
libguile17                                1.8.8-1                 OK
libharfbuzz-devel                         1.0.5-1                 OK
libharfbuzz-icu0                          1.0.5-1                 OK
libharfbuzz0                              1.0.5-1                 OK
libhdf5-devel                             1.8.15-1                OK
libhdf5_10                                1.8.15-1                OK
libheimbase1                              1.5.3-1                 OK
libheimntlm0                              1.5.3-1                 OK
libhogweed2                               2.7-2                   OK
libhogweed2_2                             2.5-1                   OK
libhx509_5                                1.5.3-1                 OK
libICE-devel                              1.0.9-1                 OK
libICE6                                   1.0.9-1                 OK
libiconv                                  1.14-3                  OK
libiconv-devel                            1.14-3                  OK
libiconv2                                 1.14-3                  OK
libicu-devel                              56.1-1                  OK
libicu48                                  4.8.1-1                 OK
libicu54                                  54.1-1                  OK
libicu55                                  55.1-1                  OK
libicu56                                  56.1-1                  OK
libid3tag0                                0.15.1b-10              OK
libIDL2_0                                 0.8.14-2                OK
libidn-devel                              1.29-1                  OK
libidn11                                  1.29-1                  OK
libImlib2_1                               1.4.6-2                 OK
libintl-devel                             0.19.5.1-2              OK
libintl8                                  0.19.5.1-2              OK
libiodbc2                                 3.52.8-2                OK
libisl10                                  0.11.1-2                OK
libisl13                                  0.14.1-1                OK
libjasper1                                1.900.1-15              OK
libjbig-devel                             2.0-14                  OK
libjbig2                                  2.0-14                  OK
libjpeg-devel                             1.4.2-1                 OK
libjpeg62                                 6b-21                   OK
libjpeg7                                  7-10                    OK
libjpeg8                                  1.4.2-1                 OK
libjson-c-common                          0.11-2                  OK
libjson-c2                                0.11-2                  OK
libjson-glib1.0_0                         1.0.2-1                 OK
libjson0                                  0.9-1                   OK
libk5crypto3                              1.13.2-1                OK
libkafs0                                  1.5.3-1                 OK
libkpathsea-devel                         20150521-3              OK
libkpathsea6                              20150521-3              OK
libkrb5_26                                1.5.3-1                 OK
libkrb5_3                                 1.13.2-1                OK
libkrb5support0                           1.13.2-1                OK
liblapack0                                3.5.0r1524-1            OK
liblcms-devel                             1.19-5                  OK
liblcms1                                  1.19-5                  OK
liblcms2-devel                            2.6-1                   OK
liblcms2_2                                2.6-1                   OK
libllvm3.1                                3.1-3                   OK
libllvm3.4                                3.4.2-5                 OK
libllvm3.5                                3.5.2-1                 OK
libltdl7                                  2.4.6-1                 OK
liblzma-devel                             5.2.1-1                 OK
liblzma1                                  4.999.9beta-11          OK
liblzma5                                  5.2.1-1                 OK
liblzo2_2                                 2.08-1                  OK
libMagick-devel                           6.9.1.3-3               OK
libMagickC++6_5                           6.9.0.0-4               OK
libMagickC++6_6                           6.9.1.3-3               OK
libMagickCore5                            6.7.6.3-3               OK
Empty package libMagickCore6
libMagickCore6                            6.9.1.3-3               OK
libMagickCore6_2                          6.9.1.3-3               OK
libMagickWand6_2                          6.9.1.3-3               OK
libmcpp0                                  2.7.2-2                 OK
libming-devel                             0.4.7-1                 OK
libming1                                  0.4.7-1                 OK
libmng-devel                              1.0.10-4                OK
libmng1                                   1.0.10-4                OK
libmpc1                                   0.8-1                   OK
libmpc3                                   1.0.3-1                 OK
libmpfr1                                  2.4.1-4                 OK
libmpfr4                                  3.1.3-1                 OK
libmspack0                                0.5-0.1.alpha           OK
libmysqlclient18                          5.5.45-1                OK
libncurses-devel                          5.9-20150530-1          OK
libncurses10                              5.9-20150530-1          OK
libncurses8                               5.5-10                  OK
libncurses9                               5.7-16                  OK
Empty package libncursesw-devel
libncursesw-devel                         5.9-20150530-1          OK
libncursesw10                             5.9-20150530-1          OK
libneon27                                 0.30.1-1                OK
libnetpbm10                               10.71.02-1              OK
libnettle4                                2.7-2                   OK
libnettle4_4                              2.5-1                   OK
libogg0                                   1.3.1-1                 OK
libonig2                                  5.9.6-1                 OK
libopenjpeg1                              1.5.2-2                 OK
libopenldap2_3_0                          2.3.43-3                OK
libopenldap2_4_2                          2.4.40-2                OK
libopenssl098                             0.9.8zf-1               OK
libopenssl100                             1.0.2d-1                OK
libOpenVG-devel                           10.3.7-1                OK
libOpenVG1                                10.3.7-1                OK
libORBit2_0                               2.14.19-2               OK
liborc0.4_0                               0.4.23-1                OK
libOSMesa-devel                           11.0.3-1                OK
libOSMesa7                                7.11.2-1                OK
libOSMesa8                                11.0.3-1                OK
libp11-kit0                               0.22.1-1                OK
libpango1.0-devel                         1.36.8-1                OK
libpango1.0_0                             1.36.8-1                OK
libpaper-common                           1.1.24-2                OK
libpaper-devel                            1.1.24-2                OK
libpaper1                                 1.1.24-2                OK
libpcre-devel                             8.37-2                  OK
libpcre0                                  8.21-2                  OK
libpcre1                                  8.37-2                  OK
libpcre16_0                               8.37-2                  OK
libpcre32_0                               8.37-2                  OK
libpcrecpp0                               8.37-2                  OK
libpcreposix0                             8.37-2                  OK
libphonon4                                4.8.3-1                 OK
libpipeline1                              1.4.0-1                 OK
libpixman1-devel                          0.32.6-1                OK
libpixman1_0                              0.32.6-1                OK
libplotter-devel                          2.6-4                   OK
libplotter2                               2.6-4                   OK
libpng-devel                              1.6.17-1                OK
Empty package libpng-doc
libpng-doc                                1.6.17-1                OK
libpng12                                  1.2.53-2                OK
libpng14                                  1.4.12-3                OK
libpng14-devel                            1.4.12-3                OK
libpng15                                  1.5.22-1                OK
libpng16                                  1.6.17-1                OK
libpng16-devel                            1.6.17-1                OK
libpoppler46                              0.26.5-3                OK
libpoppler49                              0.30.0-2                OK
libpoppler55                              0.36.0-1                OK
Empty package libpopt0
libpopt0                                  1.16-1                  OK
libppl                                    0.10.2-1                OK
libppl9                                   0.11.2-1                OK
libppl_c4                                 0.11.2-1                OK
libpq                                     8.2.11-1                OK
libpq5                                    9.4.4-2                 OK
libproxy1                                 0.4.11-5                OK
libpstoedit0                              3.70-1                  OK
libptexenc-devel                          20150521-3              OK
libptexenc1                               20150521-3              OK
libpulse-mainloop-glib0                   5.0-2                   OK
libpulse0                                 5.0-2                   OK
libpwl5                                   0.11.2-1                OK
libqscintilla2-common                     2.8.4-4                 OK
libqscintilla2-devel                      2.8.4-4                 OK
libqscintilla2_11                         2.8.4-4                 OK
libqscintilla2_9                          2.7.2-1                 OK
libqt3                                    3.3.8b-17               OK
libqt3-devel                              3.3.8b-17               OK
libQt3Support4                            4.8.7-1                 OK
libQt3Support4-devel                      4.8.7-1                 OK
libQt5Core-devel                          5.4.2-2                 OK
libQt5Core5                               5.4.2-2                 OK
libQt5Gui-devel                           5.4.2-2                 OK
libQt5Gui5                                5.4.2-2                 OK
libQt5Positioning-devel                   5.4.2-1                 OK
libQt5Positioning5                        5.4.2-1                 OK
libQt5Quick-devel                         5.4.2-1                 OK
libQt5Quick5                              5.4.2-1                 OK
libQt5Script-devel                        5.4.2-1                 OK
libQt5Script5                             5.4.2-1                 OK
libQt5Sql-devel                           5.4.2-2                 OK
libQt5Sql5                                5.4.2-2                 OK
libQt5WebChannel-devel                    5.4.2-1                 OK
libQt5WebChannel5                         5.4.2-1                 OK
libQt5WebKit-devel                        5.4.2-1                 OK
libQt5WebKit5                             5.4.2-1                 OK
libQt5XmlPatterns5                        5.4.2-1                 OK
libQtCore4                                4.8.7-1                 OK
libQtCore4-devel                          4.8.7-1                 OK
libQtDBus4                                4.8.7-1                 OK
libQtDBus4-devel                          4.8.7-1                 OK
libQtDeclarative4                         4.8.7-1                 OK
libQtDeclarative4-devel                   4.8.7-1                 OK
libQtDesigner4                            4.8.7-1                 OK
libQtDesigner4-devel                      4.8.7-1                 OK
libQtGui4                                 4.8.7-1                 OK
libQtGui4-devel                           4.8.7-1                 OK
libQtHelp4                                4.8.7-1                 OK
libQtHelp4-devel                          4.8.7-1                 OK
libQtMultimedia4                          4.8.7-1                 OK
libQtMultimedia4-devel                    4.8.7-1                 OK
libQtNetwork4                             4.8.7-1                 OK
libQtNetwork4-devel                       4.8.7-1                 OK
libQtOpenGL4                              4.8.7-1                 OK
libQtOpenGL4-devel                        4.8.7-1                 OK
libQtOpenVG4                              4.8.4-2                 OK
libQtOpenVG4-devel                        4.8.4-2                 OK
libQtScript4                              4.8.7-1                 OK
libQtScript4-devel                        4.8.7-1                 OK
libQtScriptTools4                         4.8.7-1                 OK
libQtScriptTools4-devel                   4.8.7-1                 OK
libQtSql4                                 4.8.7-1                 OK
libQtSql4-devel                           4.8.7-1                 OK
libQtSvg4                                 4.8.7-1                 OK
libQtSvg4-devel                           4.8.7-1                 OK
libQtTest4                                4.8.7-1                 OK
libQtTest4-devel                          4.8.7-1                 OK
libQtWebKit4                              4.10.4-2                OK
libQtWebKit4-devel                        4.10.4-2                OK
libQtXml4                                 4.8.7-1                 OK
libQtXml4-devel                           4.8.7-1                 OK
libQtXmlPatterns4                         4.8.7-1                 OK
libQtXmlPatterns4-devel                   4.8.7-1                 OK
libquadmath0                              4.9.3-1                 OK
libqzeitgeist1                            0.8.0-2                 OK
libreadline6                              5.2.14-12               OK
libreadline7                              6.3.8-1                 OK
librest0.7_0                              0.7.93-1                OK
libroken18                                1.5.3-1                 OK
librsvg2-devel                            2.40.9-1                OK
librsvg2_2                                2.40.9-1                OK
libsasl2_3                                2.1.26-9                OK
libsecret1_0                              0.18-2                  OK
libserf1_0                                1.3.8-1                 OK
libsigsegv2                               2.10-2                  OK
libslang2                                 2.3.1pre17-1            OK
libSM-devel                               1.2.2-1                 OK
libSM6                                    1.2.2-1                 OK
libsmartcols1                             2.25.2-2                OK
libsndfile1                               1.0.25-2                OK
libsoup-gnome2.4_1                        2.48.1-1                OK
libsoup2.4_1                              2.48.1-1                OK
libsqlite3-devel                          3.8.11.1-1              OK
libsqlite3_0                              3.8.11.1-1              OK
libssh2_1                                 1.5.0-1                 OK
libssp0                                   4.9.3-1                 OK
libstartup-notification1-devel            0.12-2                  OK
libstartup-notification1_0                0.12-2                  OK
libstdc++6                                4.9.3-1                 OK
Empty package libstdc++6-devel
libstdc++6-devel                          4.8.3-4                 OK
libsybdb5                                 0.91.112-1              OK
libsynctex1                               20150521-3              OK
libtasn1_3                                2.14-1                  OK
libtasn1_6                                4.5-1                   OK
libtdb1                                   1.2.11-2                OK
libtexlua52_5                             20150521-3              OK
libtexluajit2                             20150521-3              OK
libthai0                                  0.1.21-1                OK
libtiff-devel                             4.0.3-3                 OK
libtiff5                                  3.9.7-4                 OK
libtiff6                                  4.0.3-3                 OK
libtool                                   2.4.6-1                 OK
Empty package libusb-win32
libusb-win32                              1.2.6.0-2               OK
libusb0                                   1.2.6.0-2               OK
libustr1                                  1.0.4-12                OK
libuuid-devel                             2.25.2-2                OK
libuuid1                                  2.25.2-2                OK
libvorbis                                 1.3.5-1                 OK
libvorbis0                                1.3.5-1                 OK
libvorbisenc2                             1.3.5-1                 OK
libvorbisfile3                            1.3.5-1                 OK
libvpx-devel                              1.3.0-2                 OK
libvpx1                                   1.3.0-2                 OK
libvtv0                                   5.2.0-1                 OK
libwebp-devel                             0.4.3-1                 OK
libwebp5                                  0.4.3-1                 OK
libwebpdecoder1                           0.4.3-1                 OK
libwebpdemux1                             0.4.3-1                 OK
libwebpmux1                               0.4.3-1                 OK
libwind0                                  1.5.3-1                 OK
libWindowsWM-devel                        1.0.1-1                 OK
libWindowsWM7                             1.0.1-1                 OK
libWINGs-devel                            0.95.6-3                OK
libWINGs2                                 0.95.4-1                OK
libWINGs3                                 0.95.6-3                OK
libWMaker-devel                           0.95.6-3                OK
libWMaker1                                0.95.6-3                OK
libwmf027                                 0.2.8.4-15              OK
libwrap0                                  7.6-22                  OK
libwraster-devel                          0.95.6-3                OK
libwraster3                               0.95.4-1                OK
libwraster5                               0.95.6-3                OK
libX11-devel                              1.6.3-1                 OK
libX11-xcb-devel                          1.6.3-1                 OK
libX11-xcb1                               1.6.3-1                 OK
libX11_6                                  1.6.3-1                 OK
libXau-devel                              1.0.8-1                 OK
libXau6                                   1.0.8-1                 OK
libXaw-devel                              1.0.12-1                OK
libXaw3d-devel                            1.6.2-1                 OK
libXaw3d7                                 1.5D-10                 OK
libXaw3d8                                 1.6.2-1                 OK
libXaw6                                   1.0.7-1                 OK
libXaw7                                   1.0.12-1                OK
libXaw8                                   6.8.99.901-1            OK
libxcb-composite-devel                    1.11.1-1                OK
libxcb-composite0                         1.11.1-1                OK
libxcb-damage-devel                       1.11.1-1                OK
libxcb-damage0                            1.11.1-1                OK
libxcb-devel                              1.11.1-1                OK
libxcb-doc                                1.11.1-1                OK
libxcb-dpms-devel                         1.11.1-1                OK
libxcb-dpms0                              1.11.1-1                OK
libxcb-ewmh-devel                         0.4.1-1                 OK
libxcb-ewmh2                              0.4.1-1                 OK
libxcb-glx-devel                          1.11.1-1                OK
libxcb-glx0                               1.11.1-1                OK
libxcb-icccm-devel                        0.4.1-1                 OK
libxcb-icccm4                             0.4.1-1                 OK
libxcb-image-devel                        0.3.9-1                 OK
libxcb-image0                             0.3.9-1                 OK
libxcb-keysyms-devel                      0.3.9-1                 OK
libxcb-keysyms1                           0.3.9-1                 OK
libxcb-randr-devel                        1.11.1-1                OK
libxcb-randr0                             1.11.1-1                OK
libxcb-record-devel                       1.11.1-1                OK
libxcb-record0                            1.11.1-1                OK
libxcb-render-devel                       1.11.1-1                OK
libxcb-render-util-devel                  0.3.9-1                 OK
libxcb-render-util0                       0.3.9-1                 OK
libxcb-render0                            1.11.1-1                OK
libxcb-res-devel                          1.11.1-1                OK
libxcb-res0                               1.11.1-1                OK
libxcb-screensaver-devel                  1.11.1-1                OK
libxcb-screensaver0                       1.11.1-1                OK
libxcb-shape-devel                        1.11.1-1                OK
libxcb-shape0                             1.11.1-1                OK
libxcb-shm-devel                          1.11.1-1                OK
libxcb-shm0                               1.11.1-1                OK
libxcb-sync-devel                         1.11.1-1                OK
libxcb-sync0                              1.9.1-2                 OK
libxcb-sync1                              1.11.1-1                OK
libxcb-util-devel                         0.3.9-1                 OK
libxcb-util1                              0.3.9-1                 OK
libxcb-xfixes-devel                       1.11.1-1                OK
libxcb-xfixes0                            1.11.1-1                OK
libxcb-xinerama-devel                     1.11.1-1                OK
libxcb-xinerama0                          1.11.1-1                OK
libxcb-xinput-devel                       1.11.1-1                OK
libxcb-xinput0                            1.11.1-1                OK
libxcb-xkb1                               1.11.1-1                OK
libxcb-xtest-devel                        1.11.1-1                OK
libxcb-xtest0                             1.11.1-1                OK
libxcb1                                   1.11.1-1                OK
libXcomposite-devel                       0.4.3-1                 OK
libXcomposite1                            0.4.3-1                 OK
libXcursor-devel                          1.1.14-1                OK
libXcursor1                               1.1.14-1                OK
libxcwm-devel                             20130802-1              OK
libxcwm0                                  20130802-1              OK
libXdamage-devel                          1.1.4-1                 OK
libXdamage1                               1.1.4-1                 OK
libxdelta2                                1.1.4-2                 OK
libXdmcp-devel                            1.1.2-1                 OK
libXdmcp6                                 1.1.2-1                 OK
libXext-devel                             1.3.3-1                 OK
libXext6                                  1.3.3-1                 OK
libXfixes-devel                           5.0.1-1                 OK
libXfixes3                                5.0.1-1                 OK
libXfont-devel                            1.5.1-1                 OK
libXfont1                                 1.5.1-1                 OK
libXft-devel                              2.3.2-1                 OK
libXft1                                   1.0.0-1                 OK
libXft2                                   2.3.2-1                 OK
libXi-devel                               1.7.4-1                 OK
libXi6                                    1.7.4-1                 OK
libXinerama-devel                         1.1.3-1                 OK
libXinerama1                              1.1.3-1                 OK
libxkbcommon0                             0.4.3-1                 OK
libxkbfile-devel                          1.0.8-1                 OK
libxkbfile1                               1.0.8-1                 OK
libXm-devel                               2.3.4-3                 OK
libXm2                                    0.95.2-2                OK
libXm4                                    2.3.4-3                 OK
libXmHTML0                                1.1.7-13                OK
libxml2                                   2.9.2-1                 OK
libxml2-devel                             2.9.2-1                 OK
libXmu-devel                              1.1.2-1                 OK
libXmu6                                   1.1.2-1                 OK
libXmuu1                                  1.1.2-1                 OK
libXp6                                    6.8.99.901-1            OK
libXpm-devel                              3.5.11-1                OK
libXpm4                                   3.5.11-1                OK
libXrandr-devel                           1.4.2-1                 OK
libXrandr2                                1.4.2-1                 OK
libXrender-devel                          0.9.8-1                 OK
libXrender1                               0.9.8-1                 OK
libXRes-devel                             1.0.7-1                 OK
libXRes1                                  1.0.7-1                 OK
libxslt                                   1.1.28-2                OK
libxslt-devel                             1.1.28-2                OK
libXss-devel                              1.2.2-1                 OK
libXss1                                   1.2.2-1                 OK
libXt-devel                               1.1.4-2                 OK
libXt6                                    1.1.4-2                 OK
libXtst-devel                             1.2.2-1                 OK
libXtst6                                  1.2.2-1                 OK
libyaml0_2                                0.1.6-2                 OK
libzip-devel                              0.11.2-2                OK
libzip2                                   0.11.2-2                OK
libzzip0.13                               0.13.62-1               OK
lighttpd                                  1.4.37-1                OK
listres                                   1.0.3-1                 OK
lndir                                     1.0.3-1                 OK
login                                     1.11-1                  OK
lua                                       5.2.4-1                 OK
lua5.1                                    5.1.5-3                 OK
luit                                      20130217-1              OK
lynx                                      2.8.7-1                 OK
lyx                                       2.1.4-1                 OK
m4                                        1.4.17-2                OK
make                                      4.1-1                   OK
makedepend                                1.0.5-1                 OK
Empty package man
man                                       2.7.4-1                 OK
man-db                                    2.7.4-1                 OK
mcpp                                      2.7.2-2                 OK
mercurial                                 3.5.2-1                 OK
mesa                                      11.0.3-1                OK
mesa-demos                                8.2.0-2                 OK
mintty                                    2.1.5-0                 OK
mkcomposecache                            1.2.1-1                 OK
mkfontdir                                 1.0.7-1                 OK
mkfontscale                               1.1.1-1                 OK
mksh                                      50f-1                   OK
motif                                     2.3.4-3                 OK
nas                                       1.9.3-1                 OK
ncurses                                   5.9-20150530-1          OK
ncurses-demo                              5.9-20150530-1          OK
netpbm                                    10.71.02-1              OK
obconf                                    2.0.4-1                 OK
oclock                                    1.0.3-1                 OK
openbox                                   3.5.2-4                 OK
openssh                                   7.1p1-1                 OK
openssl                                   1.0.2d-1                OK
openssl-devel                             1.0.2d-1                OK
ORBit2                                    2.14.19-2               OK
p11-kit                                   0.22.1-1                OK
p11-kit-trust                             0.22.1-1                OK
patch                                     2.7.4-1                 OK
pdftk                                     2.02-1                  OK
perl                                      5.22.0-1                OK
perl-Archive-Zip                          1.50-1                  OK
perl-B-Generate                           1.53-2                  OK
perl-Business-ISBN                        2.09-2                  OK
perl-Business-ISBN-Data                   20140910.002-2          OK
perl-Business-ISMN                        1.13-2                  OK
perl-Business-ISSN                        0.91-2                  OK
perl-Capture-Tiny                         0.30-2                  OK
perl-Carp                                 1.3301-2                OK
perl-common-sense                         3.74-1                  OK
perl-Compress-Bzip2                       2.22-2                  OK
perl-Config-Perl-V                        0.24-2                  OK
perl-Config-Tiny                          2.22-2                  OK
perl-CPAN-DistnameInfo                    0.12-5                  OK
perl-CPAN-Reporter                        1.2015-1                OK
perl-CPAN-Testers-Report                  1.999003-2              OK
perl-Data-Alias                           1.18-2                  OK
perl-Data-Compare                         1.25-2                  OK
perl-Data-Dump                            1.23-1                  OK
perl-Data-GUID                            0.048-2                 OK
perl-Data-OptList                         0.109-2                 OK
perl-Data-UUID                            1.221-1                 OK
perl-Date-Simple                          3.03-2                  OK
perl-Devel-Autoflush                      0.06-2                  OK
perl-Devel-Symdump                        2.15-1                  OK
perl-Digest-HMAC                          1.03-5                  OK
perl-Digest-SHA                           5.95-2                  OK
perl-Encode-Locale                        1.05-1                  OK
perl-Error                                0.17024-1               OK
perl-Exporter-Tiny                        0.042-2                 OK
perl-File-Copy-Recursive                  0.38-5                  OK
perl-File-Find-Rule                       0.33-5                  OK
perl-File-HomeDir                         1.00-3                  OK
perl-File-Listing                         6.04-5                  OK
perl-File-pushd                           1.009-2                 OK
perl-File-Slurp                           9999.19-5               OK
perl-File-Slurp-Tiny                      0.004-1                 OK
perl-File-Which                           1.19-1                  OK
perl-Graphics-Magick                      1.3.21-3                OK
perl-HTML-Parser                          3.71-3                  OK
perl-HTML-Tagset                          3.20-5                  OK
perl-HTTP-Cookies                         6.01-5                  OK
perl-HTTP-Daemon                          6.01-5                  OK
perl-HTTP-Date                            6.02-5                  OK
perl-HTTP-Message                         6.11-1                  OK
perl-HTTP-Negotiate                       6.01-5                  OK
perl-IO-CaptureOutput                     1.1104-2                OK
perl-IO-HTML                              1.001-2                 OK
perl-IO-Prompt-Tiny                       0.003-2                 OK
perl-IO-Socket-INET6                      2.72-2                  OK
perl-IO-Socket-SSL                        2.019-1                 OK
perl-IO-String                            1.08-5                  OK
perl-IO-Tty                               1.12-2                  OK
perl-IPC-Cmd                              0.92-2                  OK
perl-IPC-Run                              0.94-2                  OK
perl-IPC-Run3                             0.048-2                 OK
perl-JSON                                 2.90-3                  OK
perl-JSON-XS                              3.01-3                  OK
perl-libwww-perl                          6.13-2                  OK
perl-List-AllUtils                        0.09-2                  OK
perl-List-MoreUtils                       0.413-1                 OK
perl-Log-Log4perl                         1.46-2                  OK
perl-LWP-MediaTypes                       6.02-5                  OK
perl-LWP-Protocol-https                   6.06-2                  OK
perl-Metabase-Client-Simple               0.010-2                 OK
perl-Metabase-Fact                        0.024-2                 OK
perl-MIME-Base32                          1.02-1                  OK
perl-MIME-Charset                         1.012-2                 OK
perl-Module-ScanDeps                      1.19-1                  OK
perl-Module-Signature                     0.79-1                  OK
perl-Mozilla-CA                           20150826-1              OK
perl-Net-DNS                              1.02-1                  OK
perl-Net-HTTP                             6.09-1                  OK
perl-Net-IP                               1.26-3                  OK
perl-Net-SSLeay                           1.71-1                  OK
perl-Number-Compare                       0.03-5                  OK
perl-PadWalker                            2.1-2                   OK
perl-PAR-Dist                             0.49-3                  OK
perl-Params-Util                          1.07-5                  OK
perl-Pod-Coverage                         0.23-3                  OK
perl-Pod-Escapes                          1.07-2                  OK
perl-Pod-Simple                           3.31-1                  OK
perl-Probe-Perl                           0.03-3                  OK
perl-Proc-ProcessTable                    0.53-1                  OK
perl-Regexp-Common                        2013031301-3            OK
perl-Scalar-List-Utils                    1.42-2                  OK
perl-SGMLSpm                              1.03ii-4                OK
perl-Socket                               2.020-1                 OK
perl-Socket6                              0.25-2                  OK
perl-Sub-Exporter                         0.987-3                 OK
perl-Sub-Install                          0.928-2                 OK
perl-Tee                                  0.14-5                  OK
perl-Term-ReadLine-Gnu                    1.27-1                  OK
perl-Term-ReadLine-Perl                   1.0303-5                OK
perl-TermReadKey                          2.33-1                  OK
perl-Test-NoWarnings                      1.04-4                  OK
perl-Test-Pod                             1.51-1                  OK
perl-Test-Pod-Coverage                    1.10-2                  OK
perl-Test-Reporter                        1.62-2                  OK
perl-Test-Reporter-Transport-Metabase     1.999009-2              OK
perl-Test-Simple                          1.001014-2              OK
perl-Text-BibTeX                          0.71-1                  OK
perl-Text-Glob                            0.09-5                  OK
perl-Text-Roman                           3.5-1                   OK
perl-Tk                                   804.033-1               OK
perl-Types-Serialiser                     1.0-3                   OK
perl-Unicode-Collate                      1.14-1                  OK
perl-Unicode-LineBreak                    2015.07.16-1            OK
perl-Unicode-Normalize                    1.17-1                  OK
perl-URI                                  1.69-1                  OK
perl-Win32-GUI                            1.06-4                  OK
perl-WWW-RobotRules                       6.02-5                  OK
Empty package perl-XML-LibXML
perl-XML-LibXML                           2.0122-1                OK
perl-XML-LibXML-Simple                    0.95-2                  OK
perl-XML-LibXSLT                          1.94-2                  OK
perl-XML-NamespaceSupport                 1.11-5                  OK
perl-XML-Parser                           2.44-2                  OK
perl-XML-SAX                              0.99-5                  OK
perl-XML-SAX-Base                         1.08-5                  OK
perl-XML-SAX-Expat                        0.51-2                  OK
perl-XML-Simple                           2.20-4                  OK
perl-XML-Writer                           0.625-1                 OK
perl-YAML                                 1.15-2                  OK
perl_autorebase                           5.22.0-1                OK
perl_base                                 5.22.0-1                OK
perl_manpages                             5.22.0-1                OK
perl_vendor                               5.14.4-1                OK
ping                                      1.0.2-1                 OK
poppler-data                              0.4.6-1                 OK
popt                                      1.16-1                  OK
presentproto                              1.0-1                   OK
preview-latex                             11.88-2                 OK
printproto                                1.0.4-1                 OK
procmail                                  3.22-15                 OK
procps                                    3.2.8-4                 OK
pstoedit-devel                            3.70-1                  OK
python                                    2.7.10-1                OK
python-beautifulsoup                      3.2.1-1                 OK
python-bsddb3                             6.1.0-1                 OK
python-cairo                              1.10.0-2                OK
python-cffi                               0.9.2-1                 OK
python-chardet                            2.2.1-1                 OK
python-dbus                               1.2.0-2                 OK
python-dbus-devel                         1.2.0-2                 OK
python-docutils                           0.12-1                  OK
python-gi                                 3.14.0-2                OK
python-gi-common                          3.14.0-2                OK
python-gobject                            2.28.6-5                OK
python-imaging                            2.8.1-1                 OK
python-lxml                               3.4.4-1                 OK
python-numpy                              1.9.2-1                 OK
python-ply                                3.6-1                   OK
python-pycparser                          2.12-1                  OK
python-pygments                           1.6-1                   OK
python-pyqt4                              4.11.4-1                OK
python-pyqt4-qsci                         2.8.4-4                 OK
python-pyrex                              0.9.9-3                 OK
python-setuptools                         15.2-1                  OK
python-sip                                4.16.8-1                OK
python-tkinter                            2.7.10-1                OK
python-xdg                                0.25-3                  OK
python3                                   3.4.3-1                 OK
python3-bsddb3                            6.1.0-1                 OK
python3-cairo                             1.10.0-4                OK
python3-dbus                              1.2.0-2                 OK
python3-gi                                3.14.0-2                OK
python3-lxml                              3.4.4-1                 OK
python3-pyqt4                             4.11.4-1                OK
python3-pyqt4-qsci                        2.8.4-4                 OK
python3-sip                               4.16.8-1                OK
python3-tkinter                           3.4.3-1                 OK
qt3-devel-tools                           3.3.8b-17               OK
qt3-doc                                   3.3.8b-17               OK
qt3-qtconfig                              3.3.8b-17               OK
qt4-designer-plugin-webkit                4.8.7-1                 OK
qt4-devel-tools                           4.8.7-1                 OK
qt4-doc                                   4.8.7-1                 OK
qt4-qtconfig                              4.8.7-1                 OK
qt4-qtdemo                                4.8.4-2                 OK
qt5-linguist-tools                        5.4.2-1                 OK
randrproto                                1.4.1-1                 OK
rcs                                       5.9.4-1                 OK
rebase                                    4.4.1-1                 OK
recordproto                               1.14.2-1                OK
rendercheck                               1.4-1                   OK
renderproto                               0.11.1-1                OK
resourceproto                             1.2.0-1                 OK
rgb                                       1.0.5-1                 OK
rsh                                       0.17-2                  OK
rstart                                    1.0.5-1                 OK
rsync                                     3.1.1-1                 OK
ruby                                      2.2.3-1                 OK
ruby-io-console                           0.4.2-2                 OK
ruby-json                                 1.8.2-1                 OK
ruby-minitest4                            4.7.5-1                 OK
ruby-psych                                2.0.13-1                OK
ruby-rake                                 10.4.2-1                OK
ruby-rdoc                                 4.2.0-1                 OK
rubygems                                  2.4.8-1                 OK
run                                       1.3.4-2                 OK
run2                                      0.4.2-2                 OK
rxvt                                      20050409-21             OK
rxvt-unicode                              9.20-2                  OK
Empty package rxvt-unicode-common
rxvt-unicode-common                       9.20-2                  OK
Empty package rxvt-unicode-X
rxvt-unicode-X                            9.20-2                  OK
scrnsaverproto                            1.2.2-2                 OK
sed                                       4.2.2-3                 OK
sessreg                                   1.0.8-1                 OK
setxkbmap                                 1.3.0-1                 OK
shared-mime-info                          1.4-1                   OK
sharutils                                 4.15.2-1                OK
shutdown                                  1.10-1                  OK
smproxy                                   1.0.5-1                 OK
sound-theme-freedesktop                   0.7-1                   OK
ssmtp                                     2.64-8                  OK
subversion                                1.9.2-1                 OK
subversion-python                         1.9.2-1                 OK
sxpm                                      3.5.11-1                OK
t1lib5                                    5.1.2-12                OK
tar                                       1.28-1                  OK
tcl                                       8.5.18-1                OK
tcl-tix                                   8.4.3-2                 OK
tcl-tk                                    8.5.18-1                OK
tcm                                       2.20-3                  OK
tcsh                                      6.19.00-2               OK
ted                                       2.23-3                  OK
termcap                                   5.7_20091114-14         OK
terminfo                                  5.9-20150530-1          OK
terminfo-extra                            5.9-20150530-1          OK
terminfo0                                 5.5_20061104-12         OK
texinfo                                   6.0-1                   OK
texinfo-tex                               6.0-1                   OK
texlive                                   20150521-3              OK
texlive-collection-basic                  20150617-3              OK
texlive-collection-basic-doc              20150521-1              OK
texlive-collection-bibtexextra            20150521-1              OK
texlive-collection-bibtexextra-doc        20150521-1              OK
texlive-collection-binextra               20150521-1              OK
texlive-collection-binextra-doc           20150521-1              OK
texlive-collection-context                20150521-1              OK
texlive-collection-context-doc            20150521-1              OK
texlive-collection-fontsextra             20150521-1              OK
texlive-collection-fontsextra-doc         20150521-1              OK
texlive-collection-fontsrecommended       20150521-1              OK
texlive-collection-fontsrecommended-doc   20150521-1              OK
texlive-collection-fontutils              20150521-1              OK
texlive-collection-fontutils-doc          20150521-1              OK
texlive-collection-formatsextra           20150521-1              OK
texlive-collection-games                  20150521-1              OK
texlive-collection-genericextra           20150521-1              OK
texlive-collection-genericextra-doc       20150521-1              OK
texlive-collection-genericrecommended     20150521-1              OK
texlive-collection-genericrecommended-doc 20150521-1              OK
texlive-collection-htmlxml                20150521-1              OK
texlive-collection-humanities             20150521-1              OK
texlive-collection-humanities-doc         20150521-1              OK
texlive-collection-langafrican            20150521-1              OK
texlive-collection-langarabic             20150521-1              OK
texlive-collection-langchinese            20150521-1              OK
texlive-collection-langcjk                20150521-1              OK
texlive-collection-langcyrillic           20150521-1              OK
texlive-collection-langczechslovak        20150521-1              OK
texlive-collection-langenglish            20150521-1              OK
texlive-collection-langeuropean           20150521-1              OK
texlive-collection-langfrench             20150521-1              OK
texlive-collection-langgerman             20150521-1              OK
texlive-collection-langgreek              20150521-1              OK
texlive-collection-langindic              20150521-1              OK
texlive-collection-langitalian            20150521-1              OK
texlive-collection-langjapanese           20150521-1              OK
texlive-collection-langkorean             20150521-1              OK
texlive-collection-langother              20150521-1              OK
texlive-collection-langpolish             20150521-1              OK
texlive-collection-langportuguese         20150521-1              OK
texlive-collection-langspanish            20150521-1              OK
texlive-collection-latex                  20150521-1              OK
texlive-collection-latex-doc              20150521-1              OK
texlive-collection-latexextra             20150521-1              OK
texlive-collection-latexextra-doc         20150521-1              OK
texlive-collection-latexrecommended       20150521-1              OK
texlive-collection-latexrecommended-doc   20150521-1              OK
texlive-collection-luatex                 20150521-1              OK
texlive-collection-luatex-doc             20150521-1              OK
texlive-collection-mathextra              20150521-1              OK
texlive-collection-mathextra-doc          20150521-1              OK
texlive-collection-metapost               20150521-1              OK
texlive-collection-metapost-doc           20150521-1              OK
texlive-collection-music                  20150521-1              OK
texlive-collection-music-doc              20150521-1              OK
texlive-collection-omega                  20150521-1              OK
texlive-collection-pictures               20150521-1              OK
texlive-collection-pictures-doc           20150521-1              OK
texlive-collection-plainextra             20150521-1              OK
texlive-collection-pstricks               20150521-1              OK
texlive-collection-pstricks-doc           20150521-1              OK
texlive-collection-publishers             20150521-1              OK
texlive-collection-publishers-doc         20150521-1              OK
texlive-collection-science                20150521-1              OK
texlive-collection-science-doc            20150521-1              OK
texlive-collection-xetex                  20150521-1              OK
texlive-collection-xetex-doc              20150521-1              OK
time                                      1.7-4                   OK
transfig                                  3.2.5e-2                OK
transset                                  1.0.1-1                 OK
twm                                       1.0.8-1                 OK
tzcode                                    2015g-1                 OK
unzip                                     6.0-15                  OK
util-linux                                2.25.2-2                OK
vala-libcanberra                          0.30-1                  OK
viewres                                   1.0.4-1                 OK
vim                                       7.4.891-1               OK
vim-common                                7.4.891-1               OK
vim-minimal                               7.4.891-1               OK
Empty package w32api
w32api                                    9999-1                  OK
w32api-headers                            4.0.4-1                 OK
w32api-runtime                            4.0.4-1                 OK
w3m                                       0.5.3-2                 OK
w3m-img                                   0.5.3-2                 OK
wget                                      1.16.3-1                OK
which                                     2.20-2                  OK
WindowMaker                               0.95.6-3                OK
windows-default-manifest                  6.4-1                   OK
windowswmproto                            1.0.4-1                 OK
wtf                                       0.0.4-7                 OK
Empty package X-start-menu-icons
X-start-menu-icons                        20150706-1              OK
x11perf                                   1.5.4-1                 OK
xauth                                     1.0.9-1                 OK
xbiff                                     1.0.3-1                 OK
xbitmaps                                  1.1.1-1                 OK
xbrlapi                                   4.2-3                   OK
xcalc                                     1.0.5-1                 OK
xcb-proto                                 1.11-1                  OK
xclip                                     0.12-2                  OK
xclipboard                                1.1.3-1                 OK
xclock                                    1.0.7-1                 OK
xcmiscproto                               1.2.2-2                 OK
xcmsdb                                    1.0.4-1                 OK
xcompmgr                                  1.1.6-1                 OK
xconsole                                  1.0.6-1                 OK
xcursor-themes                            1.0.4-1                 OK
xcursorgen                                1.0.6-2                 OK
xdbedizzy                                 1.1.0-1                 OK
xdelta                                    3.0.9-1                 OK
xdg-user-dirs                             0.15-1                  OK
xditview                                  1.0.3-1                 OK
xdpyinfo                                  1.3.1-1                 OK
xedit                                     1.2.2-1                 OK
xemacs                                    21.4.24-1               OK
xemacs-emacs-common                       21.4.24-1               OK
xemacs-mule-sumo                          2010.07.27-1            OK
xemacs-sumo                               2010.07.27-1            OK
xemacs-tags                               21.4.24-1               OK
xev                                       1.2.1-1                 OK
xextproto                                 7.3.0-1                 OK
xeyes                                     1.1.1-1                 OK
xf86-video-dummy                          0.3.7-3                 OK
xf86-video-nested                         0.1.0-6                 OK
xf86bigfontproto                          1.2.0-1                 OK
xfd                                       1.1.2-1                 OK
xfig                                      3.2.5c-2                OK
xfig-lib                                  3.2.5c-2                OK
xfindproxy                                1.0.2-1                 OK
xfontsel                                  1.0.5-1                 OK
xfwp                                      1.0.2-1                 OK
xgc                                       1.0.4-1                 OK
xgraph                                    12.1-3                  OK
xhost                                     1.0.6-1                 OK
xineramaproto                             1.2.1-1                 OK
xinit                                     1.3.4-9                 OK
xinput                                    1.6.1-1                 OK
xkbcomp                                   1.2.4-1                 OK
xkbevd                                    1.1.3-1                 OK
xkbprint                                  1.0.3-1                 OK
xkbutils                                  1.0.4-1                 OK
xkeyboard-config                          2.14-1                  OK
xkill                                     1.0.4-1                 OK
xlaunch                                   20150224-2              OK
xload                                     1.1.2-1                 OK
xloadimage                                4.1-3                   OK
xlogo                                     1.0.4-1                 OK
xlsatoms                                  1.1.1-1                 OK
xlsclients                                1.1.3-1                 OK
xlsfonts                                  1.0.4-1                 OK
xmag                                      1.0.4-1                 OK
xman                                      1.1.4-1                 OK
xmessage                                  1.0.4-1                 OK
xmh                                       1.0.2-1                 OK
XmHTML                                    1.1.7-13                OK
XmHTML-devel                              1.1.7-13                OK
xmodmap                                   1.0.8-1                 OK
xmon                                      1.5.6-3                 OK
xmore                                     1.0.2-1                 OK
xorg-cf-files                             1.0.5-2                 OK
xorg-docs                                 1.7-1                   OK
xorg-scripts                              1.0.1-1                 OK
xorg-server                               1.17.2-4                OK
xorg-server-common                        1.17.2-4                OK
xorg-server-devel                         1.17.2-4                OK
xorg-server-dmx                           1.17.2-4                OK
xorg-server-extra                         1.17.2-4                OK
xorg-sgml-doctools                        1.11-1                  OK
xorg-util-macros                          1.19.0-1                OK
xorg-x11-fonts-cyrillic                   7.5-2                   OK
xorg-x11-fonts-dpi100                     7.5-2                   OK
xorg-x11-fonts-dpi75                      7.5-2                   OK
xorg-x11-fonts-ethiopic                   7.5-2                   OK
xorg-x11-fonts-misc                       7.5-2                   OK
xorg-x11-fonts-Type1                      7.5-2                   OK
xpdf                                      3.03-4                  OK
xpr                                       1.0.4-1                 OK
xprop                                     1.2.2-1                 OK
xproto                                    7.0.26-1                OK
xproxymanagementprotocol                  1.0.3-1                 OK
xrandr                                    1.4.3-1                 OK
xrdb                                      1.1.0-1                 OK
xrefresh                                  1.0.5-1                 OK
xrx                                       1.0.4-1                 OK
xscope                                    1.4-1                   OK
xset                                      1.2.3-1                 OK
xsetmode                                  1.0.0-1                 OK
xsetroot                                  1.1.0-1                 OK
xsm                                       1.0.3-1                 OK
xsri                                      2.1.0-10                OK
xstdcmap                                  1.0.3-1                 OK
xterm                                     320-1                   OK
XtoW                                      20130802-2              OK
xtrans                                    1.3.5-1                 OK
xwd                                       1.0.6-1                 OK
xwin-xdg-menu                             20150708-1              OK
xwinclip                                  1.17.2-4                OK
xwininfo                                  1.1.3-1                 OK
xwinwm                                    0.0.5-2                 OK
xwud                                      1.0.4-1                 OK
xxd                                       7.4.891-1               OK
xz                                        5.2.1-1                 OK
zlib                                      1.2.8-3                 OK
zlib-devel                                1.2.8-3                 OK
zlib0                                     1.2.8-3                 OK
Use -h to see help about each section

------------------------ End of "Cygcheck.out" -------------------------

--
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] 27+ messages in thread

* Re: How to correctly rebase?
  2015-10-18 11:15               ` Dr Rainer Woitok
@ 2015-10-18 11:59                 ` Achim Gratz
  2015-10-18 12:45                 ` Ken Brown
                                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 27+ messages in thread
From: Achim Gratz @ 2015-10-18 11:59 UTC (permalink / raw)
  To: cygwin

Dr Rainer Woitok writes:
> Didn't help in my case.  What I will try next:
>
> 1. Forget all my own libraries and only rebase Cygwin's.

You also need to stop the cygserver and cron daemons you installed as a
service.

> 2. If that doesn't help: repeat step 1 but with ZoneAlarm disabled.

With these things simply disabling them (and reboot) doesn't help and
you'd have to uninstall.


Regards,
Achim.
-- 
+<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+

SD adaptations for KORG EX-800 and Poly-800MkII V0.9:
http://Synth.Stromeko.net/Downloads.html#KorgSDada

--
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] 27+ messages in thread

* Re: How to correctly rebase?
  2015-10-18 11:15               ` Dr Rainer Woitok
  2015-10-18 11:59                 ` Achim Gratz
@ 2015-10-18 12:45                 ` Ken Brown
  2015-10-18 16:20                 ` Dr Rainer Woitok
  2015-10-19 23:59                 ` Warren Young
  3 siblings, 0 replies; 27+ messages in thread
From: Ken Brown @ 2015-10-18 12:45 UTC (permalink / raw)
  To: cygwin, Rainer.Woitok

On 10/18/2015 7:14 AM, Dr Rainer Woitok wrote:
> Ken and Others,
>
> On Friday, 2015-10-16 11:07:58 -0400, Ken Brown wrote:
>
>> On 10/16/2015 8:58 AM, Ken Brown wrote:
>> ...
>>> As Warren and Achim have both suggested, you may just have too many DLLs for
>>> 32-bit Cygwin.
>
> Just to make sure: Are we talking  about Windows and Windows application
> DLLs PLUS Cygwin and  Cygwin application DLLs?   Or are we  just talking
> about Cygwin and Cygwin application DLLs?

Just Cygwin and Cygwin application DLLs.

>>>                  Can you uninstall some unneeded packages?
>
> I'm sure I can.  In the course of  using Cygwin I've installed plenty of
> packages and  have also uninstalled  some again.   And each  package in-
> stalled has also  installed all the packages  it depends on,  while each
> package deinstalled has naturally left all its dependees on my system.
>
> Question:  is there some command  line tool which lists all dependencies
> for a given package?   I could then  write a small  shell script to find
> out the list of  packages which are not  required by any  other package.
> And if I then  find packages  in this list  which I don't  require, too,
> I've found some candidates ...

Install the cygcheck-dep package and use the script /usr/bin/cygcheck-dep.

>>>                                                             Or switch to 64-bit
>>> Cygwin?
>
> Well, it's a bit strange: the hardware in fact IS 64 bit,  but the Vista
> running on it is 32 bit,  because this laptop  is a convertible and some
> of the tablet  specific drivers,  for instance for the stylus,  were (at
> least five years ago) only available as 32  bit versions.  So the quest-
> ion is:  what does 64 bit Cygwin require?   Only any Windows on a 64 bit
> hardware or a 64 bit Windows on a 64  bit hardware?   I suspect it's the
> latter ...

Yes, I think so.

>>> By the way, I don't think you have yet attached cygcheck output as requested in
>>> http://cygwin.com/problems.html:
>
> You are right.  That was mainly because my initial problem wasn't of the
> kind "What's wrong with my Cygwin installation?"  but rather of the kind
> "What's wrong with my way to rebase my Cygwin DLLs?".  I've appended the
> output below,  and I really hope  you're right,  and somebody  will spot
> something there ...

In the future, please follow the instructions, which say to send the cygcheck 
output as an *attachment*.  This is to avoid bogus hits when people search the 
archives.

The only things that jump out at me are the ZoneAlarm warning (which you already 
know about) and the fact that you do indeed have a large number of packages 
installed.

Ken

--
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] 27+ messages in thread

* Re: How to correctly rebase?
  2015-10-18 11:15               ` Dr Rainer Woitok
  2015-10-18 11:59                 ` Achim Gratz
  2015-10-18 12:45                 ` Ken Brown
@ 2015-10-18 16:20                 ` Dr Rainer Woitok
  2015-10-19 23:59                 ` Warren Young
  3 siblings, 0 replies; 27+ messages in thread
From: Dr Rainer Woitok @ 2015-10-18 16:20 UTC (permalink / raw)
  To: cygwin

On Sunday, 2015-10-18 13:14:36 +0200, I myself wrote:

> ...
>                          What I will try next:
> 
> 1. Forget all my own libraries and only rebase Cygwin's.

Well, I only removed some of them from  "/var/lib/rebase/user.d/Rainer",
and after rebasing  and rebooting  the fork  error now  appeared in some
Perl DLL called from my start-up scripts.  So I removed a few more of my
own DLLs from  "/var/lib/rebase/user.d/Rainer",  and after  rebasing and
rebooting the fork error was gone or had moved to some library I'm using
at least less often than the Perl or Python libraries!

> 2. If that doesn't help: repeat step 1 but with ZoneAlarm disabled.

So at least in that particular case it wasn't at all ZoneAlarm's fault.

Next I'll check  what Cygwin  packages are  really needed  and will thus
hopefully cut down the number of Cygwin DLLs.

Boy, am I glad!  Seven days without -- of all things! -- Mercurial!

Many thanks to all the kind people sharing their knowledge :-)

Sincerely,
  Rainer

--
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] 27+ messages in thread

* Re: How to correctly rebase?
  2015-10-18 11:15               ` Dr Rainer Woitok
                                   ` (2 preceding siblings ...)
  2015-10-18 16:20                 ` Dr Rainer Woitok
@ 2015-10-19 23:59                 ` Warren Young
  2015-10-20 16:55                   ` Dr Rainer Woitok
  3 siblings, 1 reply; 27+ messages in thread
From: Warren Young @ 2015-10-19 23:59 UTC (permalink / raw)
  To: cygwin, Rainer.Woitok

On Oct 18, 2015, at 5:14 AM, Dr Rainer Woitok wrote:
> 
>>> Or switch to 64-bit Cygwin?
> 
> what does 64 bit Cygwin require?   Only any Windows on a 64 bit
> hardware or a 64 bit Windows on a 64  bit hardware?   I suspect it's the
> latter …

You are correct: 64-bit Cygwin requires 64-bit Windows.

(But 32-bit Cygwin will still run on 64-bit Windows, which is why we don’t ask if you’re running 64-bit Windows.)

As for your driver problems, have you checked whether newer versions of 64-bit Windows include the necessary drivers?

While it may be true that your hardware requires third-party 32-bit only drivers under Vista, it may also be the case that later version of Windows have native support for that hardware, so Microsoft has ported the driver to 64-bit.

Vista has been out of primary support for 3.5 years now.  It’s long past time to upgrade anyway.

If upgrading the OS simply is not an option, you might at least refresh your current Cygwin installation:

1. Stop all Cygwin processes

2. Rename c:\cygwin to something else

3. With an Explorer window showing the contents of c:\old-cygwin\bin, reinstall Cygwin to c:\cygwin, adding only the packages you know you need right now.

4. After starting the new Cygwin instance, copy over /cygdrive/c/cygwin/home/Chef and whatever else is unique about c:\old-cygwin.

If nothing else, this would have gotten you back into action a lot faster than the 7 days you’ve been fighting with your current installation.

> I've appended the output below

I’ll echo Ken: you were asked to *attach* the output to the message, not paste it in at the end.  In addition to not reducing the SNR of search results, attachments make it easier to read your message, since most readers won’t want to scroll past pages and pages of details about your system.

> Service             : cron                
> Display name        : Cron daemon
> Current State       : Running

Someone else caught this, but I’ll repeat it: Until the Cygwin cron service is stopped, Cygwin is still running, so a rebaseall will not be as effective as it should be.

> Service             : cygserver           
> Display name        : CYGWIN cygserver
> Current State       : Running

Ditto.
--
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] 27+ messages in thread

* Re: How to correctly rebase?
  2015-10-19 23:59                 ` Warren Young
@ 2015-10-20 16:55                   ` Dr Rainer Woitok
  0 siblings, 0 replies; 27+ messages in thread
From: Dr Rainer Woitok @ 2015-10-20 16:55 UTC (permalink / raw)
  To: Warren Young; +Cc: cygwin

Warren,

On Monday, 2015-10-19 17:59:23 -0600, you wrote:

> ...
> If nothing else, this would have gotten you back into action a lot faster than the 7 days you’ve been fighting with your current installation.

In hindsight,  yes maybe.  But it's a long  known corollary to  Murphy's
Law that when  you're searching for some solution  you'll always find in
the last place you look for it.

> ...
> > Service             : cron                
> > Display name        : Cron daemon
> > Current State       : Running
> 
> Someone else caught this, but I’ll repeat it: Until the Cygwin cron
> service is stopped, Cygwin is still running, so a rebaseall will not
> be as effective as it should be.

Well, for me it's  quite normal that  "cygserver" and "cron" are running
when I'm reading or  writing mail  or even when  I'm running "cygcheck".
However,  this doesn't necessarily mean  that they were running  while I
tried to rebase.

Sincerely,
  Rainer

--
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] 27+ messages in thread

* Re: How to correctly rebase?
  2015-10-16 20:11         ` Warren Young
@ 2015-12-18 16:28           ` Achim Gratz
  0 siblings, 0 replies; 27+ messages in thread
From: Achim Gratz @ 2015-12-18 16:28 UTC (permalink / raw)
  To: cygwin

Warren Young writes:
> How about something like 
>
>     find /usr -name ${extensions} | grep -vP '(?<!octave)mex' | ditto-for-oct
>
> The syntax isn’t vetted, but basically I’m saying that GNU grep’s
> Perl-compatible regex mode supports negative lookbehind, which seems
> like it should do what you want here.

I can't use that with -regex in find, I'll have to stick to egrep
compatible syntax.  But lookbehind isn't really necessary in this case,
so it seems that this might work, albeit certainly slower than before.
I'll have to check which prefixes can possibly have these files in order
to let the regex engine bail out as early as possible without
backtracking too much.


Regards,
Achim.
-- 
+<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+

DIY Stuff:
http://Synth.Stromeko.net/DIY.html

--
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] 27+ messages in thread

end of thread, other threads:[~2015-12-18 16:28 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-14 14:26 How to correctly rebase? Dr Rainer Woitok
2015-10-14 17:27 ` Warren Young
2015-10-14 19:27   ` Achim Gratz
2015-10-14 21:30     ` Warren Young
2015-10-14 22:08       ` Warren Young
2015-10-14 22:37         ` Warren Young
2015-10-15  7:53           ` Achim Gratz
2015-10-15  7:15       ` Achim Gratz
2015-10-15 13:16   ` Dr Rainer Woitok
2015-10-15 20:54     ` Warren Young
2015-10-15 21:10       ` Ken Brown
2015-10-16 12:57         ` Dr Rainer Woitok
2015-10-16 12:58           ` Ken Brown
2015-10-16 15:08             ` Ken Brown
2015-10-16 15:16               ` cyg Simple
2015-10-16 15:29                 ` Ken Brown
2015-10-16 15:50               ` Andrey Repin
2015-10-18 11:15               ` Dr Rainer Woitok
2015-10-18 11:59                 ` Achim Gratz
2015-10-18 12:45                 ` Ken Brown
2015-10-18 16:20                 ` Dr Rainer Woitok
2015-10-19 23:59                 ` Warren Young
2015-10-20 16:55                   ` Dr Rainer Woitok
2015-10-16  7:21       ` Achim Gratz
2015-10-16 20:11         ` Warren Young
2015-12-18 16:28           ` Achim Gratz
2015-10-14 19:58 ` Achim Gratz

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).