public inbox for cygwin-xfree@sourceware.org
help / color / mirror / Atom feed
* Re: cygwin/xfree86/emacs problems after upgrading
@ 2004-02-05  0:18 Harold L Hunt II
  2004-02-05  0:48 ` Igor Pechtchanski
  0 siblings, 1 reply; 8+ messages in thread
From: Harold L Hunt II @ 2004-02-05  0:18 UTC (permalink / raw)
  To: cygx

Igor,

> This (and the existence of CYGWIN_ROOT in your environment) is an artifact
> of using startxwin.bat.  Unless you have a default directory for the
> Cygwin root, you can't use that file OOTB -- you'll have to edit it and
> replace "\cygwin" with the value of your Cygwin root (in your case,
> "d:\ProgramFiles\Cygwin".
> 
>> CYGWIN_ROOT = `\cygwin'
> 

Well, you can always just set CYGWIN_ROOT to \ProgramFiles\Cygwin, with 
no leading drive letter and colon.  I think you probably knew that 
already...  I am still amazed at the number of times I have seen people 
go in and change \cygwin to c:\cygwin when they have problems... even 
after reading my comment immediately above it that describes why doing 
this is not necessary.  Sheesh, I thought it was a quite beautiful trick 
to allow the path to be set correctly no matter what drive the cygwin 
folder is on.  :)

Harold


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

* Re: cygwin/xfree86/emacs problems after upgrading
  2004-02-05  0:18 cygwin/xfree86/emacs problems after upgrading Harold L Hunt II
@ 2004-02-05  0:48 ` Igor Pechtchanski
  2004-02-26 17:46   ` Takuma Murakami
  0 siblings, 1 reply; 8+ messages in thread
From: Igor Pechtchanski @ 2004-02-05  0:48 UTC (permalink / raw)
  To: cygx

On Wed, 4 Feb 2004, Harold L Hunt II wrote:

> Igor,
>
> > This (and the existence of CYGWIN_ROOT in your environment) is an artifact
> > of using startxwin.bat.  Unless you have a default directory for the
> > Cygwin root, you can't use that file OOTB -- you'll have to edit it and
> > replace "\cygwin" with the value of your Cygwin root (in your case,
> > "d:\ProgramFiles\Cygwin".
> >
> >> CYGWIN_ROOT = `\cygwin'
> >
>
> Well, you can always just set CYGWIN_ROOT to \ProgramFiles\Cygwin, with
> no leading drive letter and colon.  I think you probably knew that
> already...  I am still amazed at the number of times I have seen people
> go in and change \cygwin to c:\cygwin when they have problems... even
> after reading my comment immediately above it that describes why doing
> this is not necessary.  Sheesh, I thought it was a quite beautiful trick
> to allow the path to be set correctly no matter what drive the cygwin
> folder is on.  :)
>
> Harold

Yes, it's a neat trick *if* the only thing people changed was the install
drive.  If they change the path, all bets are off.  I'm surprised you
don't actually customize startxwin.bat (and similar files, like
startxdmcp.bat) in a postinstall script (which can run under a Cygwin
shell, and thus know the root of the install).  You could choose a
template value, e.g. "%$CYGWIN_ROOT$%", and replace that with "`cygpath -w
/`" using, say, sed.  If you're interested, I could whip up an example
postinstall script for you in the next week or so.
	Igor
-- 
				http://cs.nyu.edu/~pechtcha/
      |\      _,,,---,,_		pechtcha@cs.nyu.edu
ZZZzz /,`.-'`'    -.  ;-;;,_		igor@watson.ibm.com
     |,4-  ) )-,_. ,\ (  `'-'		Igor Pechtchanski, Ph.D.
    '---''(_/--'  `-'\_) fL	a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

"I have since come to realize that being between your mentor and his route
to the bathroom is a major career booster."  -- Patrick Naughton


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

* Re: cygwin/xfree86/emacs problems after upgrading
  2004-02-05  0:48 ` Igor Pechtchanski
@ 2004-02-26 17:46   ` Takuma Murakami
  2004-02-26 20:53     ` Igor Pechtchanski
  0 siblings, 1 reply; 8+ messages in thread
From: Takuma Murakami @ 2004-02-26 17:46 UTC (permalink / raw)
  To: cygwin-xfree

Igor,

> Yes, it's a neat trick *if* the only thing people changed was the install
> drive.  If they change the path, all bets are off.  I'm surprised you
> don't actually customize startxwin.bat (and similar files, like
> startxdmcp.bat) in a postinstall script (which can run under a Cygwin
> shell, and thus know the root of the install).  You could choose a
> template value, e.g. "%$CYGWIN_ROOT$%", and replace that with "`cygpath -w
> /`" using, say, sed.  If you're interested, I could whip up an example
> postinstall script for you in the next week or so.

I'm interested in that trick out of curiosity.
Could you show me your boilerplate?

Takuma Murakami


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

* Re: cygwin/xfree86/emacs problems after upgrading
  2004-02-26 17:46   ` Takuma Murakami
@ 2004-02-26 20:53     ` Igor Pechtchanski
  2004-02-27  8:41       ` Igor Pechtchanski
  0 siblings, 1 reply; 8+ messages in thread
From: Igor Pechtchanski @ 2004-02-26 20:53 UTC (permalink / raw)
  To: cygwin-xfree

On Thu, 26 Feb 2004, Takuma Murakami wrote:

> Igor,
>
> > Yes, it's a neat trick *if* the only thing people changed was the install
> > drive.  If they change the path, all bets are off.  I'm surprised you
> > don't actually customize startxwin.bat (and similar files, like
> > startxdmcp.bat) in a postinstall script (which can run under a Cygwin
> > shell, and thus know the root of the install).  You could choose a
> > template value, e.g. "%$CYGWIN_ROOT$%", and replace that with "`cygpath -w
> > /`" using, say, sed.  If you're interested, I could whip up an example
> > postinstall script for you in the next week or so.
>
> I'm interested in that trick out of curiosity.
> Could you show me your boilerplate?
>
> Takuma Murakami

Well, something like the script below (untested) should do...  This uses
'%$CYGWIN_ROOT$%' as the template string.
HTH,
	Igor

-------------- BEGIN /etc/postinstall/fix-startxwin.sh --------------
#!/bin/sh

fix_cygwin_root() {
  TMPNAME="$1.$$" && \
  mv "$1" "$TMPNAME" && \
  sed 's/%\$CYGWIN_ROOT\$%/"'"`cygpath -w /`"'"/' "$TMPNAME" > "$1" && \
  rm "$TMPNAME"
}

cd /usr/X11R6/bin && \
for i in startxwin.bat startxdmcp.bat; do \
  fix_cygwin_root "$i" \
done
--------- Note: cutting here may damage your screen surface ---------

-- 
				http://cs.nyu.edu/~pechtcha/
      |\      _,,,---,,_		pechtcha@cs.nyu.edu
ZZZzz /,`.-'`'    -.  ;-;;,_		igor@watson.ibm.com
     |,4-  ) )-,_. ,\ (  `'-'		Igor Pechtchanski, Ph.D.
    '---''(_/--'  `-'\_) fL	a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

"I have since come to realize that being between your mentor and his route
to the bathroom is a major career booster."  -- Patrick Naughton


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

* Re: cygwin/xfree86/emacs problems after upgrading
  2004-02-26 20:53     ` Igor Pechtchanski
@ 2004-02-27  8:41       ` Igor Pechtchanski
  0 siblings, 0 replies; 8+ messages in thread
From: Igor Pechtchanski @ 2004-02-27  8:41 UTC (permalink / raw)
  To: cygwin-xfree

On Thu, 26 Feb 2004, Igor Pechtchanski wrote:

> On Thu, 26 Feb 2004, Takuma Murakami wrote:
>
> > Igor,
> >
> > > Yes, it's a neat trick *if* the only thing people changed was the install
> > > drive.  If they change the path, all bets are off.  I'm surprised you
> > > don't actually customize startxwin.bat (and similar files, like
> > > startxdmcp.bat) in a postinstall script (which can run under a Cygwin
> > > shell, and thus know the root of the install).  You could choose a
> > > template value, e.g. "%$CYGWIN_ROOT$%", and replace that with "`cygpath -w
> > > /`" using, say, sed.  If you're interested, I could whip up an example
> > > postinstall script for you in the next week or so.
> >
> > I'm interested in that trick out of curiosity.
> > Could you show me your boilerplate?
> >
> > Takuma Murakami
>
> Well, something like the script below (untested) should do...  This uses
> '%$CYGWIN_ROOT$%' as the template string.
> HTH,
>         Igor
>
> -------------- BEGIN /etc/postinstall/fix-startxwin.sh --------------
> #!/bin/sh
>
> fix_cygwin_root() {
>   TMPNAME="$1.$$" && \
>   mv "$1" "$TMPNAME" && \
>   sed 's/%\$CYGWIN_ROOT\$%/"'"`cygpath -w /`"'"/' "$TMPNAME" > "$1" && \
>   rm "$TMPNAME"
> }
>
> cd /usr/X11R6/bin && \
> for i in startxwin.bat startxdmcp.bat; do \
>   fix_cygwin_root "$i" \
                        ^
s/ \\$/ ; \\/

> done
> --------- Note: cutting here may damage your screen surface ---------

I did say it was untested...
	Igor
-- 
				http://cs.nyu.edu/~pechtcha/
      |\      _,,,---,,_		pechtcha@cs.nyu.edu
ZZZzz /,`.-'`'    -.  ;-;;,_		igor@watson.ibm.com
     |,4-  ) )-,_. ,\ (  `'-'		Igor Pechtchanski, Ph.D.
    '---''(_/--'  `-'\_) fL	a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

"I have since come to realize that being between your mentor and his route
to the bathroom is a major career booster."  -- Patrick Naughton


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

* Re: cygwin/xfree86/emacs problems after upgrading
       [not found] <mailman.1828.1075842639.928.help-gnu-emacs@gnu.org>
@ 2004-02-08  8:51 ` Jari Aalto+mail.linux
  0 siblings, 0 replies; 8+ messages in thread
From: Jari Aalto+mail.linux @ 2004-02-08  8:51 UTC (permalink / raw)
  Cc: cygwin, cygwin-xfree, gnu.emacs.bug, Cygwin Emacs maintainer

This is your copy. Article has been posted to the newsgroup(s).

* Tue 2004-02-03 Thomas L Roche <tlroche <AT> us.ibm.com> gnu.emacs.help
* <http://groups.google.com/groups?oi=djq&as_umsgid=%3Cmailman.1828.1075842639.928.help-gnu-emacs@gnu.org>
| 
| [Cygwin]
| $ emacs --debug-init &
| $ start XWin -multiwindow -clipboard -emulate3buttons
| 
| I typically run 2 emacs windows (second created with C-x 5 b) and 
| 1 xterm, all of which usually overlap ... until the emacs windows
| disappear, apparently randomly, although lately I'm convinced that 
| emacs crashes are more likely when I'm either resizing or 
| minimizing its windows. I've so far run 2 cygwin sessions today,
| once at home (with access to shared drives via a VPN) and once at
| work (directly on ethernet), and the xterm traces have been:

You're not alone. Windowed version of Emacs doesn't work under latest
Cygwin/Xfree. It either core dumps or Emacs just kills itself by
removing all frames from the display.

Perhaps Cygwin Emacs maintainer have ideas. I've CC'd him.

Jari


-- 
http://tiny-tools.sourceforge.net/
Swatch @time   http://www.mir.com.my/iTime/itime.htm
               http://www.ryanthiessen.com/swatch/resources.htm
Use Licenses!  http://www.linuxjournal.com/article.php?sid=6225
Which Licence? http://www.linuxjournal.com/article.php?sid=4825
OSI Licences   http://www.opensource.org/licenses/


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

* Re: cygwin/xfree86/emacs problems after upgrading
  2004-02-03 21:10 Thomas L Roche
@ 2004-02-04 21:21 ` Igor Pechtchanski
  0 siblings, 0 replies; 8+ messages in thread
From: Igor Pechtchanski @ 2004-02-04 21:21 UTC (permalink / raw)
  To: Thomas L Roche; +Cc: cygwin, cygwin-xfree

On Tue, 3 Feb 2004, Thomas L Roche wrote:

> [snip]
> Note that I run emacs via
>
> emacs --debug-init &
>
> from bash in an xterm which I launch with
>
> start XWin -multiwindow -clipboard -emulate3buttons

Not quite.  Judging from your cygcheck output, you use startxwin.bat.
More below.

> [snip]
> However I'm also, again only since upgrading, having problems with
> unzip, e.g.
>
> >   inflating:
> /d/eclipse/builds/20040121_1953-WB213-AD-V512D-00/eclipse/plugins/com.ibm.etools.j2ee.ui/build/pluginBuild/commonbld/com/ibm/etools/ejb/ui/presentation/EJBEditorOutlineContentProvider.class
>
> >     735 [main] unzip 1820 cmalloc: cmalloc returned NULL
> > error:  zipfile probably corrupt (segmentation violation)
>
> which I get even unzip'ing a known-good file (i.e. one that I unzip'ed
> successfully before upgrading from 1.5.5-1).

Do you have a small testcase that would allow others to reproduce this?
Perhaps a (small) sample .zip file?

> [snip]
> So it seems plausible that there is also a (base) cygwin problem, which
> might be causing the emacs and unzip problems. Or that the emacs and
> unzip problems are unrelated.

They most likely are unrelated.

> What should I try next?

I'd suspect the unzip issue has to do with the path length to the file.
You can try confirming it by creating a file in a deeply nested directory,
putting that one file in a .zip, and then trying to unzip it into some
place even deeper in the directory hierarchy.  Can't help you with the
emacs issue, as I don't use emacs.

> [snip]
> (Note that cygcheck shows
>
>         d:\cygwin\bin
>         d:\cygwin\usr\X11R6\bin
>
> at the head of my PATH; those dirs don't exist, and they're not in my
> windows path.)

This (and the existence of CYGWIN_ROOT in your environment) is an artifact
of using startxwin.bat.  Unless you have a default directory for the
Cygwin root, you can't use that file OOTB -- you'll have to edit it and
replace "\cygwin" with the value of your Cygwin root (in your case,
"d:\ProgramFiles\Cygwin".

> CYGWIN_ROOT = `\cygwin'

Hope this helps,
	Igor
-- 
				http://cs.nyu.edu/~pechtcha/
      |\      _,,,---,,_		pechtcha@cs.nyu.edu
ZZZzz /,`.-'`'    -.  ;-;;,_		igor@watson.ibm.com
     |,4-  ) )-,_. ,\ (  `'-'		Igor Pechtchanski, Ph.D.
    '---''(_/--'  `-'\_) fL	a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

"I have since come to realize that being between your mentor and his route
to the bathroom is a major career booster."  -- Patrick Naughton


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

* cygwin/xfree86/emacs problems after upgrading
@ 2004-02-03 21:10 Thomas L Roche
  2004-02-04 21:21 ` Igor Pechtchanski
  0 siblings, 1 reply; 8+ messages in thread
From: Thomas L Roche @ 2004-02-03 21:10 UTC (permalink / raw)
  To: cygwin, cygwin-xfree, help-gnu-emacs

<Apologies for cross-posting, but I don't know my problems' cause.>

summary: I am still experiencing post-upgrade problems with my
cygwin emacs; output from cygcheck and report-emacs-bug attached.
What to do?

details:

I was annoyed by some shortcomings of my cygwin emacs (21.1? whatever
version was included around the time of cygwin-1.5.5-1), such as lack
of electricity with kill-ring-save and oddity with multiline kill'ing,
so ~29 Jan I upgraded to cygwin-1.5.6-1, emacs-21.2.1, and whatever
the latest XFree86 was then, along with the other goodness cygwin's
setup advised me to get. Since then emacs life has been bad, but I'm
not sure why, since available evidence seems to point in several
directions.

Note that I run emacs via

emacs --debug-init &

from bash in an xterm which I launch with

start XWin -multiwindow -clipboard -emulate3buttons

I typically run 2 emacs windows (second created with C-x 5 b) and 
1 xterm, all of which usually overlap ... until the emacs windows
disappear, apparently randomly, although lately I'm convinced that 
emacs crashes are more likely when I'm either resizing or 
minimizing its windows. I've so far run 2 cygwin sessions today,
once at home (with access to shared drives via a VPN) and once at
work (directly on ethernet), and the xterm traces have been:

home:
bash-2.05b$ emacs --debug-init &
[1] 1643
bash-2.05b$ emacs --debug-init &
[2] 1460
[1]   Segmentation fault      emacs --debug-init
bash-2.05b$ emacs --debug-init &
[3] 1932
[2]   Aborted                 (core dumped) emacs --debug-init
bash-2.05b$ emacs --debug-init &
[4] 308
[3]   Aborted                 (core dumped) emacs --debug-init
bash-2.05b$ X protocol error: BadLength (poly request too large or 
internal Xlib length error) on protocol request 56

work:
bash-2.05b$ emacs --debug-init &
[1] 1868
bash-2.05b$ emacs --debug-init &
[2] 1396
[1]   Segmentation fault      emacs --debug-init
bash-2.05b$ X protocol error: BadLength (poly request too large or 
internal Xlib length error) on protocol request 56
bash-2.05b$ emacs --debug-init &
[3] 1156
[2]   Exit 70                 emacs --debug-init

The X errors tend to make me suspect it. However I'm also, again only
since upgrading, having problems with unzip, e.g.

>   inflating: 
/d/eclipse/builds/20040121_1953-WB213-AD-V512D-00/eclipse/plugins/com.ibm.etools.j2ee.ui/build/pluginBuild/commonbld/com/ibm/etools/ejb/ui/presentation/EJBEditorOutlineContentProvider.class 
 
>     735 [main] unzip 1820 cmalloc: cmalloc returned NULL
> error:  zipfile probably corrupt (segmentation violation)

which I get even unzip'ing a known-good file (i.e. one that I unzip'ed
successfully before upgrading from 1.5.5-1). I noted

Christopher Faylor Sat, 31 Jan 2004 00:43:54 -0500 (EST)
> Changes since 1.5.6-1:

> - Fix malloc overflow problem which caused random SEGVs.
>   (Christopher Faylor)

and installed cygwin 1.5.7-1 (along with other then-updated packages,
which included XFree86) early 1 Feb: this has not solved either the
unzip or the emacs problems. So it seems plausible that there is also
a (base) cygwin problem, which might be causing the emacs and unzip
problems. Or that the emacs and unzip problems are unrelated.

What should I try next? If possible, please post me directly as well
as the list (I'm on the digest). Note that output of report-emacs-bug
(edited for clarity in this context) follows, then output of cygcheck
-srvh (slightly edited for security) follows that to end of post.
(Note that cygcheck shows

        d:\cygwin\bin
        d:\cygwin\usr\X11R6\bin

at the head of my PATH; those dirs don't exist, and they're not in my
windows path.)

output of report-emacs-bug
----------------------------------------------------------------------
In GNU Emacs 21.2.1 (i686-pc-cygwin, X toolkit)
 of 2003-01-23 on DRACO
configured using `configure  --prefix=/usr --bindir=/usr/bin 
--sysconfdir=/etc --libexecdir=/usr/sbin --localstatedir=/var 
--datadir=/usr/share --without-toolkit-scroll-bars'
Important settings:
  value of $LC_ALL: nil
  value of $LC_COLLATE: nil
  value of $LC_CTYPE: nil
  value of $LC_MESSAGES: nil
  value of $LC_MONETARY: nil
  value of $LC_NUMERIC: nil
  value of $LC_TIME: nil
  value of $LANG: nil
  locale-coding-system: nil
  default-enable-multibyte-characters: t

Recent input:
<tab> <tab> C-g C-g C-h a b u g <return> C-x 0 <down> 
<down> <down> <down> <down> <down> <down> <down> <down> 
<down> <down> <down> <down> <down> <down> <down> <down> 
<down> <down> <down> <down> C-SPC <end> <home> C-SPC 
<C-right> <C-right> <C-right> M-w <switch-frame> <M-up> 
<M-up> <M-up> <M-up> <M-up> <M-up> <M-up> <M-up> <M-up> 
<M-up> <M-up> <M-up> <M-up> <M-up> <M-up> <M-up> <M-up> 
<M-up> <M-up> <M-up> <M-up> <M-up> <M-up> <M-up> <M-up> 
<M-up> <M-up> <M-up> <M-up> <M-up> <M-up> <M-up> <M-up> 
<M-up> <M-up> <M-up> <M-up> <M-up> <M-up> <return> 
<up> <S-insert> C-s <switch-frame> M-x r e p o SPC 
r t SPC e m SPC <tab> <return>

Recent messages:
Wrote /t/tlroche/notReallyJunk
call-interactively: Quit
keyboard-quit: Quit
Loading apropos...done
Type C-x 1 to remove help window.  C-M-v to scroll the help.
Mark set [3 times]
Saving file /t/tlroche/notReallyJunk...
Wrote /t/tlroche/notReallyJunk
Making completion list...
Loading emacsbug...done
----------------------------------------------------------------------
output of cygcheck -srvh
----------------------------------------------------------------------
Cygwin Win95/NT Configuration Diagnostics
Current System Time: Tue Feb 03 15:00:22 2004

Windows 2000 Professional Ver 5.0 Build 2195 Service Pack 3

Path:   .
        d:\cygwin\bin
        d:\cygwin\usr\X11R6\bin
        d:\ProgramFiles\Cygwin\bin
        c:\Program Files\IBM\Infoprint Select
        d:\ProgramFiles\Cygwin\usr\X11R6\bin
        c:\WINNT\system32
        c:\WINNT
        c:\WINNT\System32\Wbem
        c:\Program Files\IBM\Trace Facility
        c:\Personal Communications
        d:\ProgramFiles\DiskeeperLite\7.0.414\
        d:\ProgramFiles\Rational\ClearQuest\common
        c:\Infoprint
        .

SysDir: C:\WINNT\System32
WinDir: C:\WINNT

Here's some environment variables that may affect cygwin:
HOME = `v:\tlroche'
PWD = `/d/tlroche/bin'

Here's the rest of your environment variables:
COMMONPROGRAMFILES = `C:\Program Files\Common Files'
COMSPEC = `C:\WINNT\system32\cmd.exe'
CYGWIN_ROOT = `\cygwin'
DISKEEPERICON = `d:\ProgramFiles\DiskeeperLite\7.0.414\'
DISPLAY = `127.0.0.1:0.0'
ECLIPSE_DRIVE_LETTER = `d'
HOMEDRIVE = `v:'
HOMEPATH = `\tlroche'
NUMBER_OF_PROCESSORS = `1'
OS2LIBPATH = `C:\WINNT\system32\os2\dll;'
OS = `Windows_NT'
PATHEXT = `.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH'
PCOMM_ROOT = `C:\Personal Communications'
PDBASE = `C:\PROGRA~1\IBM\INFOPR~1'
PDHOST = ` '
PD_SOCKET = `6874'
PROCESSOR_ARCHITECTURE = `x86'
PROCESSOR_IDENTIFIER = `x86 Family 15 Model 2 Stepping 7, GenuineIntel'
PROCESSOR_LEVEL = `15'
PROCESSOR_REVISION = `0207'
PROGRAMFILES = `C:\Program Files'
PROMPT = `$P$G'
SHELLNOTFORCYGWINEMACS = `D:\ProgramFiles\Cygwin\bin\bash.exe'
SHLVL = `1'
SYSTEMDRIVE = `C:'
SYSTEMROOT = `C:\WINNT'
TEMP = `d:\temp'
TERM = `xterm'
TMP = `d:\temp'
WINDIR = `C:\WINNT'
WINDOWID = `2097166'
_ = `/usr/bin/cygcheck'

Scanning registry for keys with `Cygnus' in them...
HKEY_CURRENT_USER\Software\Cygnus Solutions
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2
  (default) = `/'
  cygdrive flags = 0x0000002a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/
  (default) = `d:\ProgramFiles\Cygwin'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/c
  (default) = `c:'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/d
  (default) = `d:'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/e
  (default) = `e:'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/s
  (default) = `s:'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/t
  (default) = `t:'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/bin
  (default) = `d:\ProgramFiles\Cygwin/bin'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/lib
  (default) = `d:\ProgramFiles\Cygwin/lib'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts 
v2\/usr/X11R6/lib/X11/fonts
  (default) = `d:\ProgramFiles\Cygwin\usr\X11R6\lib\X11\fonts'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/v
  (default) = `v:'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Program Options

Listing available drives...
Drv Type        Size   Free Flags              Name
c:  hd  NTFS   10498Mb  91% CP CS UN PA FC     C
d:  hd  NTFS   46733Mb  68% CP CS UN PA FC     D
e:  cd           N/A    N/A 
f:  net FAT     5041Mb  53% CP    UN           FDRIVE
g:  net FAT    23544Mb  96% CP    UN           GDRIVE
h:  net FAT     4994Mb  86% CP    UN           CDRIVE
i:  net FAT    14450Mb  53% CP    UN           DDRIVE
t:  net NTFS   2219008Mb  65% CP CS    PA        tlroche
v:  net NTFS    4133Mb  91% CP CS UN PA FC 
w:  hd  NTFS   46733Mb  68% CP CS UN PA FC     D
fd=floppy, hd=hard drive, cd=CD-ROM, net=Network Share
CP=Case Preserving, CS=Case Sensitive, UN=Unicode
PA=Persistent ACLS, FC=File Compression, VC=Volume Compression

Mount entries: these map POSIX directories to your NT drives.
-NT-                                            -POSIX- -Type-  -Flags-
d:\ProgramFiles\Cygwin                          / system  binmode
c:                                              /c system  binmode
d:                                              /d system  binmode
e:                                              /e system  binmode
s:                                              /s system  binmode
t:                                              /t system  binmode
d:\ProgramFiles\Cygwin/bin                      /usr/bin system  binmode
d:\ProgramFiles\Cygwin/lib                      /usr/lib system  binmode
d:\ProgramFiles\Cygwin\usr\X11R6\lib\X11\fonts  /usr/X11R6/lib/X11/fonts 
system  binmode
v:                                              /v system  binmode
.                                               / system  binmode,cygdrive

Looking to see where common programs can be found, if at all...
Found: d:\ProgramFiles\Cygwin\bin\awk.exe
Found: d:\ProgramFiles\Cygwin\bin\bash.exe
Found: d:\ProgramFiles\Cygwin\bin\cat.exe
Found: d:\ProgramFiles\Cygwin\bin\cp.exe
Not Found: cpp (good!)
Found: d:\ProgramFiles\Cygwin\bin\find.exe
Not Found: gcc
Not Found: gdb
Found: d:\ProgramFiles\Cygwin\bin\grep.exe
Found: d:\ProgramFiles\Cygwin\bin\ld.exe
Found: d:\ProgramFiles\Cygwin\bin\ls.exe
Not Found: make
Found: d:\ProgramFiles\Cygwin\bin\mv.exe
Found: d:\ProgramFiles\Cygwin\bin\rm.exe
Found: d:\ProgramFiles\Cygwin\bin\sed.exe
Found: d:\ProgramFiles\Cygwin\bin\sh.exe
Found: d:\ProgramFiles\Cygwin\bin\tar.exe

Looking for various Cygnus DLLs...  (-v gives version info)
  802k 2003/09/15 d:\ProgramFiles\Cygwin\bin\cygaspell-15.dll - os=4.0 
img=1.0 sys=4.0
                  "cygaspell-15.dll" v0.0 ts=2003/9/15 8:32
   61k 2003/08/09 d:\ProgramFiles\Cygwin\bin\cygbz2-1.dll - os=4.0 img=1.0 
sys=4.0
                  "cygbz2-1.dll" v0.0 ts=2003/8/9 2:35
    7k 2003/10/19 d:\ProgramFiles\Cygwin\bin\cygcrypt-0.dll - os=4.0 
img=1.0 sys=4.0
                  "cygcrypt-0.dll" v0.0 ts=2003/10/19 3:57
  842k 2003/09/30 d:\ProgramFiles\Cygwin\bin\cygcrypto-0.9.7.dll - os=4.0 
img=1.0 sys=4.0
                  "cygcrypto-0.9.7.dll" v0.0 ts=2003/9/30 12:49
  645k 2003/04/11 d:\ProgramFiles\Cygwin\bin\cygcrypto.dll - os=4.0 
img=1.0 sys=4.0
                  "cygcrypto.dll" v0.0 ts=2003/4/11 6:37
   22k 2003/10/17 d:\ProgramFiles\Cygwin\bin\cygcygipc-2.dll - os=4.0 
img=1.0 sys=4.0
                  "cygcygipc-2.dll" v0.0 ts=2003/10/17 1:24
  380k 2002/07/24 d:\ProgramFiles\Cygwin\bin\cygdb-3.1.dll - os=4.0 
img=1.0 sys=4.0
                  "cygdb-3.1.dll" v0.0 ts=2002/7/24 12:24
  831k 2003/09/20 d:\ProgramFiles\Cygwin\bin\cygdb-4.1.dll - os=4.0 
img=1.0 sys=4.0
                  "cygdb-4.1.dll" v0.0 ts=2003/9/20 17:51
  487k 2002/07/24 d:\ProgramFiles\Cygwin\bin\cygdb_cxx-3.1.dll - os=4.0 
img=1.0 sys=4.0
                  "cygdb_cxx-3.1.dll" v0.0 ts=2002/7/24 12:25
 1080k 2003/09/20 d:\ProgramFiles\Cygwin\bin\cygdb_cxx-4.1.dll - os=4.0 
img=1.0 sys=4.0
                  "cygdb_cxx-4.1.dll" v0.0 ts=2003/9/20 17:53
  155k 2004/01/07 d:\ProgramFiles\Cygwin\bin\cygexpat-0.dll - os=4.0 
img=1.0 sys=4.0
                  "cygexpat-0.dll" v0.0 ts=2004/1/7 11:14
  131k 2003/10/28 d:\ProgramFiles\Cygwin\bin\cygfontconfig-1.dll - os=4.0 
img=1.0 sys=4.0
                  "cygfontconfig-1.dll" v0.0 ts=2003/10/28 17:44
   45k 2001/04/25 d:\ProgramFiles\Cygwin\bin\cygform5.dll - os=4.0 img=1.0 
sys=4.0
                  "cygform5.dll" v0.0 ts=2001/4/25 1:28
   35k 2002/01/09 d:\ProgramFiles\Cygwin\bin\cygform6.dll - os=4.0 img=1.0 
sys=4.0
                  "cygform6.dll" v0.0 ts=2002/1/9 1:03
   48k 2003/08/09 d:\ProgramFiles\Cygwin\bin\cygform7.dll - os=4.0 img=1.0 
sys=4.0
                  "cygform7.dll" v0.0 ts=2003/8/9 5:25
  361k 2003/10/25 d:\ProgramFiles\Cygwin\bin\cygfreetype-6.dll - os=4.0 
img=1.0 sys=4.0
                  "cygfreetype-6.dll" v0.0 ts=2003/10/22 0:18
   28k 2003/07/20 d:\ProgramFiles\Cygwin\bin\cyggdbm-3.dll - os=4.0 
img=1.0 sys=4.0
                  "cyggdbm-3.dll" v0.0 ts=2003/7/20 3:58
   30k 2003/08/11 d:\ProgramFiles\Cygwin\bin\cyggdbm-4.dll - os=4.0 
img=1.0 sys=4.0
                  "cyggdbm-4.dll" v0.0 ts=2003/8/10 22:12
   19k 2003/03/22 d:\ProgramFiles\Cygwin\bin\cyggdbm.dll - os=4.0 img=1.0 
sys=4.0
                  "cyggdbm.dll" v0.0 ts=2002/2/19 22:05
   15k 2003/07/20 d:\ProgramFiles\Cygwin\bin\cyggdbm_compat-3.dll - os=4.0 
img=1.0 sys=4.0
                  "cyggdbm_compat-3.dll" v0.0 ts=2003/7/20 4:00
   15k 2003/08/11 d:\ProgramFiles\Cygwin\bin\cyggdbm_compat-4.dll - os=4.0 
img=1.0 sys=4.0
                  "cyggdbm_compat-4.dll" v0.0 ts=2003/8/10 22:13
   69k 2003/08/10 d:\ProgramFiles\Cygwin\bin\cyggettextlib-0-12-1.dll - 
os=4.0 img=1.0 sys=4.0
                  "cyggettextlib-0-12-1.dll" v0.0 ts=2003/8/10 18:10
   12k 2003/08/10 d:\ProgramFiles\Cygwin\bin\cyggettextpo-0.dll - os=4.0 
img=1.0 sys=4.0
                  "cyggettextpo-0.dll" v0.0 ts=2003/8/10 18:11
  134k 2003/08/10 d:\ProgramFiles\Cygwin\bin\cyggettextsrc-0-12-1.dll - 
os=4.0 img=1.0 sys=4.0
                  "cyggettextsrc-0-12-1.dll" v0.0 ts=2003/8/10 18:10
  489k 2003/08/09 d:\ProgramFiles\Cygwin\bin\cygguile-12.dll - os=4.0 
img=1.0 sys=4.0
                  "cygguile-12.dll" v0.0 ts=2003/8/9 10:17
  489k 2003/07/28 d:\ProgramFiles\Cygwin\bin\cygguile-12abi13.dll - os=4.0 
img=1.0 sys=4.0
                  "cygguile-12abi13.dll" v0.0 ts=2003/7/28 14:18
   24k 2003/08/09 d:\ProgramFiles\Cygwin\bin\cygguile-ltdl-1.dll - os=4.0 
img=1.0 sys=4.0
                  "cygguile-ltdl-1.dll" v0.0 ts=2003/8/9 10:16
   24k 2003/07/28 d:\ProgramFiles\Cygwin\bin\cygguile-ltdl-1abi13.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygguile-ltdl-1abi13.dll" v0.0 ts=2003/7/28 13:48
   62k 2003/08/09 
d:\ProgramFiles\Cygwin\bin\cygguile-srfi-srfi-13-14-v-1-1.dll - os=4.0 
img=1.0 sys=4.0
                  "cygguile-srfi-srfi-13-14-v-1-1.dll" v0.0 ts=2003/8/9 
10:17
   62k 2003/07/28 
d:\ProgramFiles\Cygwin\bin\cygguile-srfi-srfi-13-14-v-1-1abi13.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygguile-srfi-srfi-13-14-v-1-1abi13.dll" v0.0 
ts=2003/7/28 14:18
   23k 2003/08/09 
d:\ProgramFiles\Cygwin\bin\cygguile-srfi-srfi-4-v-1-1.dll - os=4.0 img=1.0 
sys=4.0
                  "cygguile-srfi-srfi-4-v-1-1.dll" v0.0 ts=2003/8/9 10:17
   23k 2003/07/28 
d:\ProgramFiles\Cygwin\bin\cygguile-srfi-srfi-4-v-1-1abi13.dll - os=4.0 
img=1.0 sys=4.0
                  "cygguile-srfi-srfi-4-v-1-1abi13.dll" v0.0 ts=2003/7/28 
14:18
   11k 2003/08/09 d:\ProgramFiles\Cygwin\bin\cygguilereadline-v-12-12.dll 
- os=4.0 img=1.0 sys=4.0
                  "cygguilereadline-v-12-12.dll" v0.0 ts=2003/8/9 10:17
   11k 2003/07/28 
d:\ProgramFiles\Cygwin\bin\cygguilereadline-v-12-12abi13.dll - os=4.0 
img=1.0 sys=4.0
                  "cygguilereadline-v-12-12abi13.dll" v0.0 ts=2003/7/28 
14:18
   17k 2001/06/28 d:\ProgramFiles\Cygwin\bin\cyghistory4.dll - os=4.0 
img=1.0 sys=4.0
                  "cyghistory4.dll" v0.0 ts=2001/1/6 23:34
   29k 2003/08/10 d:\ProgramFiles\Cygwin\bin\cyghistory5.dll - os=4.0 
img=1.0 sys=4.0
                  "cyghistory5.dll" v0.0 ts=2003/8/10 19:16
  958k 2003/08/10 d:\ProgramFiles\Cygwin\bin\cygiconv-2.dll - os=4.0 
img=1.0 sys=4.0
                  "cygiconv-2.dll" v0.0 ts=2003/8/10 16:57
   22k 2001/12/13 d:\ProgramFiles\Cygwin\bin\cygintl-1.dll - os=4.0 
img=1.0 sys=4.0
                  "cygintl-1.dll" v0.0 ts=2001/12/13 4:28
   37k 2003/08/10 d:\ProgramFiles\Cygwin\bin\cygintl-2.dll - os=4.0 
img=1.0 sys=4.0
                  "cygintl-2.dll" v0.0 ts=2003/8/10 17:50
   21k 2001/06/20 d:\ProgramFiles\Cygwin\bin\cygintl.dll - os=4.0 img=1.0 
sys=4.0
                  "cygintl.dll" v0.0 ts=2001/6/20 13:09
  119k 2002/02/09 d:\ProgramFiles\Cygwin\bin\cygjpeg6b.dll - os=4.0 
img=1.0 sys=4.0
                  "cygjpeg6b.dll" v0.0 ts=2002/2/9 0:19
   32k 2003/08/18 d:\ProgramFiles\Cygwin\bin\cygltdl-3.dll - os=4.0 
img=1.0 sys=4.0
                  "cygltdl-3.dll" v0.0 ts=2003/8/18 1:35
   26k 2001/04/25 d:\ProgramFiles\Cygwin\bin\cygmenu5.dll - os=4.0 img=1.0 
sys=4.0
                  "cygmenu5.dll" v0.0 ts=2001/4/25 1:27
   20k 2002/01/09 d:\ProgramFiles\Cygwin\bin\cygmenu6.dll - os=4.0 img=1.0 
sys=4.0
                  "cygmenu6.dll" v0.0 ts=2002/1/9 1:03
   29k 2003/08/09 d:\ProgramFiles\Cygwin\bin\cygmenu7.dll - os=4.0 img=1.0 
sys=4.0
                  "cygmenu7.dll" v0.0 ts=2003/8/9 5:25
  156k 2001/04/25 d:\ProgramFiles\Cygwin\bin\cygncurses++5.dll - os=4.0 
img=1.0 sys=4.0
                  "cygncurses++5.dll" v0.0 ts=2001/4/25 1:29
  175k 2002/01/09 d:\ProgramFiles\Cygwin\bin\cygncurses++6.dll - os=4.0 
img=1.0 sys=4.0
                  "cygncurses++6.dll" v0.0 ts=2002/1/9 1:03
  226k 2001/04/25 d:\ProgramFiles\Cygwin\bin\cygncurses5.dll - os=4.0 
img=1.0 sys=4.0
                  "cygncurses5.dll" v0.0 ts=2001/4/25 1:17
  202k 2002/01/09 d:\ProgramFiles\Cygwin\bin\cygncurses6.dll - os=4.0 
img=1.0 sys=4.0
                  "cygncurses6.dll" v0.0 ts=2002/1/9 1:03
  224k 2003/08/09 d:\ProgramFiles\Cygwin\bin\cygncurses7.dll - os=4.0 
img=1.0 sys=4.0
                  "cygncurses7.dll" v0.0 ts=2003/8/9 5:24
   15k 2001/04/25 d:\ProgramFiles\Cygwin\bin\cygpanel5.dll - os=4.0 
img=1.0 sys=4.0
                  "cygpanel5.dll" v0.0 ts=2001/4/25 1:27
   12k 2002/01/09 d:\ProgramFiles\Cygwin\bin\cygpanel6.dll - os=4.0 
img=1.0 sys=4.0
                  "cygpanel6.dll" v0.0 ts=2002/1/9 1:03
   19k 2003/08/09 d:\ProgramFiles\Cygwin\bin\cygpanel7.dll - os=4.0 
img=1.0 sys=4.0
                  "cygpanel7.dll" v0.0 ts=2003/8/9 5:24
   62k 2003/12/11 d:\ProgramFiles\Cygwin\bin\cygpcre-0.dll - os=4.0 
img=1.0 sys=4.0
                  "cygpcre-0.dll" v0.0 ts=2003/12/11 12:01
   63k 2003/04/11 d:\ProgramFiles\Cygwin\bin\cygpcre.dll - os=4.0 img=1.0 
sys=4.0
                  "cygpcre.dll" v0.0 ts=2003/4/11 4:31
    9k 2003/12/11 d:\ProgramFiles\Cygwin\bin\cygpcreposix-0.dll - os=4.0 
img=1.0 sys=4.0
                  "cygpcreposix-0.dll" v0.0 ts=2003/12/11 12:01
   61k 2003/04/11 d:\ProgramFiles\Cygwin\bin\cygpcreposix.dll - os=4.0 
img=1.0 sys=4.0
                  "cygpcreposix.dll" v0.0 ts=2003/4/11 4:31
 1049k 2003/11/07 d:\ProgramFiles\Cygwin\bin\cygperl5_8_2.dll - os=4.0 
img=1.0 sys=4.0
                  "cygperl5_8_2.dll" v0.0 ts=2003/11/7 6:08
  173k 2003/08/10 d:\ProgramFiles\Cygwin\bin\cygpng12.dll - os=4.0 img=1.0 
sys=4.0
                  "cygpng12.dll" v0.0 ts=2003/8/10 18:35
   22k 2002/06/09 d:\ProgramFiles\Cygwin\bin\cygpopt-0.dll - os=4.0 
img=1.0 sys=4.0
                  "cygpopt-0.dll" v0.0 ts=2002/6/9 1:45
  108k 2001/06/28 d:\ProgramFiles\Cygwin\bin\cygreadline4.dll - os=4.0 
img=1.0 sys=4.0
                  "cygreadline4.dll" v0.0 ts=2001/1/6 23:34
  148k 2003/08/10 d:\ProgramFiles\Cygwin\bin\cygreadline5.dll - os=4.0 
img=1.0 sys=4.0
                  "cygreadline5.dll" v0.0 ts=2003/8/10 19:16
  171k 2003/09/30 d:\ProgramFiles\Cygwin\bin\cygssl-0.9.7.dll - os=4.0 
img=1.0 sys=4.0
                  "cygssl-0.9.7.dll" v0.0 ts=2003/9/30 12:49
  165k 2003/04/11 d:\ProgramFiles\Cygwin\bin\cygssl.dll - os=4.0 img=1.0 
sys=4.0
                  "cygssl.dll" v0.0 ts=2003/4/11 6:37
  254k 2003/09/18 d:\ProgramFiles\Cygwin\bin\cygtidy-0-99-0.dll - os=4.0 
img=1.0 sys=4.0
                  "cygtidy-0-99-0.dll" v0.0 ts=2003/9/18 11:52
  281k 2003/02/24 d:\ProgramFiles\Cygwin\bin\cygtiff3.dll - os=4.0 img=1.0 
sys=4.0
                  "cygtiff3.dll" v0.0 ts=2003/2/23 23:58
 3006k 2003/10/12 d:\ProgramFiles\Cygwin\bin\cygxerces-c23.dll - os=4.0 
img=1.0 sys=4.0
                  "cygxerces-c23.dll" v0.0 ts=2003/10/11 22:36
   61k 2003/12/04 d:\ProgramFiles\Cygwin\bin\cygz.dll - os=4.0 img=1.0 
sys=4.0
                  "cygz.dll" v0.0 ts=2003/12/3 22:03
 1083k 2004/01/31 d:\ProgramFiles\Cygwin\bin\cygwin1.dll - os=4.0 img=1.0 
sys=4.0
                  "cygwin1.dll" v0.0 ts=2004/1/30 19:32
    Cygwin DLL version info:
        DLL version: 1.5.7
        DLL epoch: 19
        DLL bad signal mask: 19005
        DLL old termios: 5
        DLL malloc env: 28
        API major: 0
        API minor: 109
        Shared data: 3
        DLL identifier: cygwin1
        Mount registry: 2
        Cygnus registry name: Cygnus Solutions
        Cygwin registry name: Cygwin
        Program options name: Program Options
        Cygwin mount registry name: mounts v2
        Cygdrive flags: cygdrive flags
        Cygdrive prefix: cygdrive prefix
        Cygdrive default prefix: 
        Build date: Fri Jan 30 19:32:04 EST 2004
        CVS tag: cr-0x9e
        Shared id: cygwin1S3

  237k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygdps-1.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygdps-1.dll" v0.0 ts=2003/11/17 20:41
  121k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygdpstk-1.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygdpstk-1.dll" v0.0 ts=2003/11/17 20:41
  282k 2003/10/28 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygfreetype-9.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygfreetype-9.dll" v0.0 ts=2003/10/18 2:44
  373k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygGL-1.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygGL-1.dll" v0.0 ts=2003/11/17 20:39
  439k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygGLU-1.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygGLU-1.dll" v0.0 ts=2003/11/17 20:40
   74k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygICE-6.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygICE-6.dll" v0.0 ts=2003/11/17 20:30
    9k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygoldX-6.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygoldX-6.dll" v0.0 ts=2003/11/17 20:30
 1271k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygOSMesa-4.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygOSMesa-4.dll" v0.0 ts=2003/11/17 20:39
   20k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygpsres-1.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygpsres-1.dll" v0.0 ts=2003/11/17 20:42
   30k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygSM-6.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygSM-6.dll" v0.0 ts=2003/11/17 20:30
  864k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygX11-6.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygX11-6.dll" v0.0 ts=2003/11/17 20:30
  253k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXaw-6.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXaw-6.dll" v0.0 ts=2003/11/17 20:33
  355k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXaw-7.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXaw-7.dll" v0.0 ts=2003/11/17 20:34
   36k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXcursor-1.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXcursor-1.dll" v0.0 ts=2003/11/17 20:43
   49k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXext-6.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXext-6.dll" v0.0 ts=2003/11/17 20:30
   56k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXft-1.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXft-1.dll" v0.0 ts=2003/11/17 20:42
   74k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXft-2.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXft-2.dll" v0.0 ts=2003/11/17 20:42
   27k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXi-6.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXi-6.dll" v0.0 ts=2003/11/17 20:34
   76k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXmu-6.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXmu-6.dll" v0.0 ts=2003/11/17 20:32
   11k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXmuu-1.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXmuu-1.dll" v0.0 ts=2003/11/17 20:32
   26k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXp-6.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXp-6.dll" v0.0 ts=2003/11/17 20:35
   51k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXpm-4.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXpm-4.dll" v0.0 ts=2003/11/17 20:32
   14k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXrandr-2.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXrandr-2.dll" v0.0 ts=2003/11/17 20:43
   26k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXrender-1.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXrender-1.dll" v0.0 ts=2003/11/17 20:42
  282k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXt-6.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXt-6.dll" v0.0 ts=2003/11/17 20:31
   27k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXTrap-6.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXTrap-6.dll" v0.0 ts=2003/11/17 20:43
   17k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXtst-6.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXtst-6.dll" v0.0 ts=2003/11/17 20:34
   15k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXv-1.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXv-1.dll" v0.0 ts=2003/11/17 20:35

Cygwin Package Information
Last downloaded files to: D:\download\cygwin
Last downloaded files from: ftp://mirrors.rcn.net/pub/sourceware/cygwin

Package                 Version 
_update-info-dir        00226-1 
a2ps                    4.13-1 
ash                     20040127-1 
aspell                  0.50.3-1 
aspell-doc              0.50.3-1 
aspell-en               0.51.0-1 
autoconf                2.59-1 
autoconf-devel          2.59-1 
autoconf-stable         2.13-5 
automake                1.7.9-1 
automake-devel          1.7.9-1 
automake-stable         1.4p6-2 
base-files              2.6-1 
base-passwd             1.1-1 
bash                    2.05b-16 
bc                      1.06-1 
binutils                20030901-1 
bzip2                   1.0.2-5 
chkconfig               1.2.24h-1 
clear                   1.0-1 
cmake                   1.8.3-1 
crypt                   1.1-1 
ctags                   5.5-4 
cvs                     1.11.6-3 
cygipc                  2.02-1 
cygrunsrv               0.97-1 
cygutils                1.2.2-1 
cygwin                  1.5.7-1 
cygwin-doc              1.3-6 
diffutils               2.8.4-1 
editrights              1.01-1 
emacs                   21.2-12 
emacs-el                21.2-12 
emacs-X11               21.2-12 
enscript                1.6.3-3 
expat                   1.95.7-1 
expect                  20030128-1 
fileutils               4.1-2 
findutils               4.1.7-4 
fontconfig              2.2.0-1 
freetype2               2.1.5-1 
gawk                    3.1.3-4 
gdbm                    1.8.3-7 
gettext                 0.12.1-3 
ghostscript             7.05-2 
ghostscript-base        7.05-2 
ghostscript-x11         7.05-2 
gnugo                   3.4-1 
gnupg                   1.2.2-3 
grep                    2.5-1 
groff                   1.18.1-2 
guile                   1.6.4-12 
guile-devel             1.6.4-12 
guile-doc               1.6.4-12 
gzip                    1.3.5-1 
inetutils               1.3.2-25 
initscripts             0.9-1 
less                    381-1 
lftp                    2.6.10-1 
libaspell15             0.50.3-1 
libbz2_1                1.0.2-5 
libdb3.1                3.1.17-2 
libdb4.1                4.1.25-1 
libfontconfig1          2.2.0-1 
libfreetype26           2.1.5-1 
libgdbm                 1.8.0-5 
libgdbm-devel           1.8.3-7 
libgdbm3                1.8.3-3 
libgdbm4                1.8.3-7 
libgettextpo0           0.12.1-3 
libguile12              1.6.4-12 
libguile12abi13         1.6.4-2 
libiconv2               1.9.1-3 
libintl                 0.10.38-3 
libintl1                0.10.40-1 
libintl2                0.12.1-3 
libjpeg6b               6b-8 
libltdl3                1.5-3 
libncurses5             5.2-1 
libncurses6             5.2-8 
libncurses7             5.3-4 
libpcre                 4.1-1 
libpcre0                4.5-1 
libpng12                1.2.5-4 
libpopt0                1.6.4-4 
libreadline4            4.1-2 
libreadline5            4.3-5 
libtiff3                3.6.0-2 
libxerces-c23           2.3.0-4 
login                   1.9-7 
m4                      1.4-1 
man                     1.5k-2 
mc                      4.6.0-4 
mktemp                  1.5-3 
mutt                    1.4.1-2 
nasm                    0.98.38-1 
ncftp                   3.1.4-1 
ncurses                 5.3-4 
openssh                 3.7.1p2-2 
openssl                 0.9.7c-1 
openssl096              0.9.6j-1 
patch                   2.5.8-8 
patchutils              0.2.22-2 
pcre                    4.5-1 
pcre-doc                4.5-1 
perl                    5.8.2-1 
procmail                3.22-8 
psutils                 1.17-1 
python                  2.3.3-1 
readline                4.3-5 
rsync                   2.6.0-1 
rxvt                    2.7.10-3 
sed                     4.0.8-1 
sh-utils                2.0.15-4 
sharutils               4.2.1-3 
ssmtp                   2.60.4-1 
sysvinit                2.84-4 
tar                     1.13.25-5 
tcltk                   20030901-1 
termcap                 20021106-2 
terminfo                5.3_20030726-1 
texinfo                 4.2-4 
textutils               2.0.21-1 
tidy                    030901-1 
unzip                   5.50-5 
uw-imap                 2002e-3 
uw-imap-imapd           2002e-3 
uw-imap-util            2002e-3 
wget                    1.9.1-1 
which                   1.5-2 
xerces-c                2.4.0-4 
xerces-c-devel          2.4.0-4 
xerces-c-doc            2.4.0-4 
XFree86-base            4.3.0-1 
XFree86-bin             4.3.0-8 
XFree86-etc             4.3.0-6 
XFree86-fenc            4.2.0-3 
XFree86-fnts            4.2.0-3 
XFree86-lib             4.3.0-1 
XFree86-lib-compat      4.3.0-2 
XFree86-startup-scripts 4.2.0-5 
XFree86-xserv           4.3.0-44 
xinetd                  2.3.9-1 
zip                     2.3-5 
zlib                    1.2.1-1 


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

end of thread, other threads:[~2004-02-26 17:38 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-02-05  0:18 cygwin/xfree86/emacs problems after upgrading Harold L Hunt II
2004-02-05  0:48 ` Igor Pechtchanski
2004-02-26 17:46   ` Takuma Murakami
2004-02-26 20:53     ` Igor Pechtchanski
2004-02-27  8:41       ` Igor Pechtchanski
     [not found] <mailman.1828.1075842639.928.help-gnu-emacs@gnu.org>
2004-02-08  8:51 ` Jari Aalto+mail.linux
  -- strict thread matches above, loose matches on Subject: below --
2004-02-03 21:10 Thomas L Roche
2004-02-04 21:21 ` Igor Pechtchanski

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