public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* Utility to dereference Windows shortcuts?
@ 2003-08-11 23:58 Tom Cyglist
  2003-08-12  1:27 ` Igor Pechtchanski
  0 siblings, 1 reply; 9+ messages in thread
From: Tom Cyglist @ 2003-08-11 23:58 UTC (permalink / raw)
  To: cygwin

I understand that Windows shortcuts and symlinks are
different and the reasons why they are different.
However, I want to be able to process files pointed to
by Windows shortcuts using Cygwin utilities. In order
to be able to do this, I need a utility that will take
a Windows shortcut name, xxx.lnk, and return either a
Cygwin (preferred) or Windows path to the target of
the shortcut. I could then do something like:

cyg_utility `shortcut_deref win_shortcut.lnk`

Does this utility exist? If not, does anyone have
sufficient information on the Windows shortcut
structure to allow me to write one?

Thanks.

__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com

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

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

* Re: Utility to dereference Windows shortcuts?
  2003-08-11 23:58 Utility to dereference Windows shortcuts? Tom Cyglist
@ 2003-08-12  1:27 ` Igor Pechtchanski
  2003-08-12 20:34   ` Rob
                     ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Igor Pechtchanski @ 2003-08-12  1:27 UTC (permalink / raw)
  To: Tom Cyglist; +Cc: cygwin

On Mon, 11 Aug 2003, Tom Cyglist wrote:

> I understand that Windows shortcuts and symlinks are different and the
> reasons why they are different. However, I want to be able to process
> files pointed to by Windows shortcuts using Cygwin utilities. In order
> to be able to do this, I need a utility that will take a Windows
> shortcut name, xxx.lnk, and return either a Cygwin (preferred) or
> Windows path to the target of the shortcut. I could then do something
> like:
>
> cyg_utility `shortcut_deref win_shortcut.lnk`
>
> Does this utility exist? If not, does anyone have sufficient information
> on the Windows shortcut structure to allow me to write one?
>
> Thanks.

Take a look at the source of mkshortcut in the cygutils package.  If you
do write a "readshortcut" program, please consider submitting it to Chuck
Wilson for inclusion into the cygutils package (as a complement to
mkshortcut).
	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


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

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

* Re: Utility to dereference Windows shortcuts?
  2003-08-12  1:27 ` Igor Pechtchanski
@ 2003-08-12 20:34   ` Rob
  2003-08-12 23:36     ` Igor Pechtchanski
  2003-09-18 17:20   ` Rob S.i.k.l.o.s.
  2003-10-04 14:47   ` postgresql setup on cygwin --- initdb fails Terrence Brannon
  2 siblings, 1 reply; 9+ messages in thread
From: Rob @ 2003-08-12 20:34 UTC (permalink / raw)
  To: cygwin; +Cc: Tom Cyglist

> > I understand that Windows shortcuts and symlinks are different and the
> > reasons why they are different. However, I want to be able to process
> > files pointed to by Windows shortcuts using Cygwin utilities. In order
> > to be able to do this, I need a utility that will take a Windows
> > shortcut name, xxx.lnk, and return either a Cygwin (preferred) or
> > Windows path to the target of the shortcut. I could then do something
> > like:
> >
> > cyg_utility `shortcut_deref win_shortcut.lnk`
> >
> > Does this utility exist? If not, does anyone have sufficient information
> > on the Windows shortcut structure to allow me to write one?
> >
> > Thanks.
>
> Take a look at the source of mkshortcut in the cygutils package.  If you
> do write a "readshortcut" program, please consider submitting it to Chuck
> Wilson for inclusion into the cygutils package (as a complement to
> mkshortcut).
> Igor
> -- 

I'm working on this.  The functionality is pretty much done and working, in
addition to cygutils integration.  Now I just have to make it presentable.

This will either be done in a couple days, or in a couple of weeks (getting
married this weekend).

If you want something basic that you can use in the meanwhile, I can post a
binary somewhere.

Rob Siklos.


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

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

* Re: Utility to dereference Windows shortcuts?
  2003-08-12 20:34   ` Rob
@ 2003-08-12 23:36     ` Igor Pechtchanski
  0 siblings, 0 replies; 9+ messages in thread
From: Igor Pechtchanski @ 2003-08-12 23:36 UTC (permalink / raw)
  To: Rob; +Cc: cygwin

On Tue, 12 Aug 2003, Rob wrote:

> > > I understand that Windows shortcuts and symlinks are different and the
> > > reasons why they are different. However, I want to be able to process
> > > files pointed to by Windows shortcuts using Cygwin utilities. In order
> > > to be able to do this, I need a utility that will take a Windows
> > > shortcut name, xxx.lnk, and return either a Cygwin (preferred) or
> > > Windows path to the target of the shortcut. I could then do something
> > > like:
> > >
> > > cyg_utility `shortcut_deref win_shortcut.lnk`
> > >
> > > Does this utility exist? If not, does anyone have sufficient information
> > > on the Windows shortcut structure to allow me to write one?
> > >
> > > Thanks.
> >
> > Take a look at the source of mkshortcut in the cygutils package.  If you
> > do write a "readshortcut" program, please consider submitting it to Chuck
> > Wilson for inclusion into the cygutils package (as a complement to
> > mkshortcut).
> > Igor
>
> I'm working on this.  The functionality is pretty much done and working, in
> addition to cygutils integration.  Now I just have to make it presentable.
>
> This will either be done in a couple days, or in a couple of weeks (getting
> married this weekend).
>
> If you want something basic that you can use in the meanwhile, I can post a
> binary somewhere.
>
> Rob Siklos.

Rob,

Better post the source when it's ready... ;-)  Until then, I believe
people can make do with rudimentary tools, such as the "Shortcut
Properties" feature of Windows Explorer.
	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


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

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

* Re: Utility to dereference Windows shortcuts?
  2003-08-12  1:27 ` Igor Pechtchanski
  2003-08-12 20:34   ` Rob
@ 2003-09-18 17:20   ` Rob S.i.k.l.o.s.
  2003-10-04 14:47   ` postgresql setup on cygwin --- initdb fails Terrence Brannon
  2 siblings, 0 replies; 9+ messages in thread
From: Rob S.i.k.l.o.s. @ 2003-09-18 17:20 UTC (permalink / raw)
  To: cygwin, Tom Cyglist

> > I understand that Windows shortcuts and symlinks are different and the
> > reasons why they are different. However, I want to be able to process
> > files pointed to by Windows shortcuts using Cygwin utilities. In order
> > to be able to do this, I need a utility that will take a Windows
> > shortcut name, xxx.lnk, and return either a Cygwin (preferred) or
> > Windows path to the target of the shortcut. I could then do something
> > like:
> >
> > cyg_utility `shortcut_deref win_shortcut.lnk`
> >
> > Does this utility exist? If not, does anyone have sufficient information
> > on the Windows shortcut structure to allow me to write one?
> >
> > Thanks.
>
> Take a look at the source of mkshortcut in the cygutils package.  If you
> do write a "readshortcut" program, please consider submitting it to Chuck
> Wilson for inclusion into the cygutils package (as a complement to
> mkshortcut).
> Igor

FYI, the work on this is all done and submitted (as of a couple weeks ago).
readshortcut (part of the cygutils package) is available in the cygutils cvs
tree, and will be included in the next cygutils release.

Rob.


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

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

* postgresql setup on cygwin --- initdb fails
  2003-08-12  1:27 ` Igor Pechtchanski
  2003-08-12 20:34   ` Rob
  2003-09-18 17:20   ` Rob S.i.k.l.o.s.
@ 2003-10-04 14:47   ` Terrence Brannon
  2003-10-04 15:19     ` Jason Tishler
  2 siblings, 1 reply; 9+ messages in thread
From: Terrence Brannon @ 2003-10-04 14:47 UTC (permalink / raw)
  To: cygwin

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

Hi all,

cygcheck -s -v -r >  cygcheck.out attached.

I typed postmaster and was told I need to set PGDATA. So I created a 
directory

/usr/local/psql

and set PGDATA to that.

I then typed initdb and had the following error:

$ source ~/.bashrc
source: not found
$ cd
$ . ./.bashrc
$ echo $PGDATA
/usr/local/psql
$ initdb
The files belonging to this database system will be owned by user 
"metaperl".
This user must also own the server process.

The database cluster will be initialized with locale C.

Fixing permissions on existing directory /usr/local/psql... ok
creating directory /usr/local/psql/base... ok
creating directory /usr/local/psql/global... ok
creating directory /usr/local/psql/pg_xlog... ok
creating directory /usr/local/psql/pg_clog... ok
creating template1 database in /usr/local/psql/base/1... 
IpcSemaphoreCreate: semget(key=1, num=17, 03600) failed: Function not 
implemented

initdb failed.


What do I need to do to get the World's Most Advanced Open Source 
Database Running :)




[-- Attachment #2: cygcheck.out --]
[-- Type: text/plain, Size: 34891 bytes --]


Cygwin Win95/NT Configuration Diagnostics
Current System Time: Sat Oct 04 07:26:36 2003

Windows XP Professional Ver 5.1 Build 2600 Service Pack 1

Path:	C:\cygwin\usr\X11R6\bin
	C:\cygwin\usr\local\bin
	C:\cygwin\bin
	C:\cygwin\bin
	C:\cygwin\usr\X11R6\bin
	c:\Tcl\bin
	c:\WINDOWS\system32
	c:\WINDOWS
	c:\WINDOWS\System32\Wbem

Output from C:\cygwin\bin\id.exe (nontsec)
UID: 1004(metaperl) GID: 513(None)
513(None)

Output from C:\cygwin\bin\id.exe (ntsec)
UID: 1004(metaperl) GID: 513(None)
513(None)            544(Administrators)  
545(Users)

SysDir: C:\WINDOWS\System32
WinDir: C:\WINDOWS

HOME = `C:\cygwin\home\metaperl'
MAKE_MODE = `unix'
PWD = `/usr/local/psql'
USER = `metaperl'

ALLUSERSPROFILE = `C:\Documents and Settings\All Users'
APPDATA = `C:\Documents and Settings\Terrence Brannon\Application Data'
COLUMNS = `80'
COMMONPROGRAMFILES = `C:\Program Files\Common Files'
COMPUTERNAME = `MOKSHA'
COMSPEC = `C:\WINDOWS\system32\cmd.exe'
CVS_RSH = `/bin/ssh'
DISPLAY = `127.0.0.1:0.0'
EMACS = `t'
HOMEDRIVE = `C:'
HOMEPATH = `\Documents and Settings\Terrence Brannon'
HOSTNAME = `moksha'
INFOPATH = `/usr/local/info:/usr/info:/usr/share/info:/usr/autotool/devel/info:/usr/autotool/stable/info:'
LOGNAME = `metaperl'
LOGONSERVER = `\\MOKSHA'
MANPATH = `/usr/local/man:/usr/man:/usr/share/man:/usr/autotool/devel/man::/usr/ssl/man'
NUMBER_OF_PROCESSORS = `2'
OS = `Windows_NT'
PATHEXT = `.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.tcl'
PGDATA = `/usr/local/psql'
PROCESSOR_ARCHITECTURE = `x86'
PROCESSOR_IDENTIFIER = `x86 Family 15 Model 2 Stepping 9, GenuineIntel'
PROCESSOR_LEVEL = `15'
PROCESSOR_REVISION = `0209'
PROGRAMFILES = `C:\Program Files'
PROMPT = `$P$G'
PS1 = `\[\033]0;\w\007
\033[32m\]\u@\h \[\033[33m\w\033[0m\]
$ '
SESSIONNAME = `Console'
SHLVL = `2'
SYSTEMDRIVE = `C:'
SYSTEMROOT = `C:\WINDOWS'
TEMP = `c:\DOCUME~1\TERREN~1\LOCALS~1\Temp'
TERM = `dumb'
TERMCAP = `'
TEXMF = `{/usr/share/lilypond/1.8.2,/usr/share/texmf}'
TMP = `c:\DOCUME~1\TERREN~1\LOCALS~1\Temp'
USERDOMAIN = `MOKSHA'
USERNAME = `Terrence Brannon'
USERPROFILE = `C:\Documents and Settings\Terrence Brannon'
WINDIR = `C:\WINDOWS'
WINDOWID = `2097166'
_ = `-a'

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'
  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\mounts v2\/usr/X11R6/lib/X11/fonts
  (default) = `C:\cygwin\usr\X11R6\lib\X11\fonts'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Program Options

c:  hd  NTFS   38154Mb  28% CP CS UN PA FC     
d:  cd  CDFS     338Mb 100%    CS UN           20031004060049

C:\cygwin                          /                         system  binmode
C:\cygwin/bin                      /usr/bin                  system  binmode
C:\cygwin/lib                      /usr/lib                  system  binmode
C:\cygwin\usr\X11R6\lib\X11\fonts  /usr/X11R6/lib/X11/fonts  system  binmode
.                                  /cygdrive                 system  binmode,cygdrive

Found: C:\cygwin\bin\awk.exe
Found: C:\cygwin\bin\bash.exe
Found: C:\cygwin\bin\cat.exe
Found: C:\cygwin\bin\cp.exe
Found: C:\cygwin\bin\cpp.exe
Found: C:\cygwin\bin\find.exe
Found: C:\cygwin\bin\gcc.exe
Found: C:\cygwin\bin\gdb.exe
Found: C:\cygwin\bin\grep.exe
Found: C:\cygwin\bin\ld.exe
Found: C:\cygwin\bin\ls.exe
Found: C:\cygwin\bin\make.exe
Found: C:\cygwin\bin\mv.exe
Found: C:\cygwin\bin\rm.exe
Found: C:\cygwin\bin\sed.exe
Found: C:\cygwin\bin\sh.exe
Found: C:\cygwin\bin\tar.exe

  673k 2003/09/20 C:\cygwin\usr\X11R6\bin\cygdps-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygdps-1.dll" v0.0 ts=2003/9/19 23:37
  184k 2003/09/20 C:\cygwin\usr\X11R6\bin\cygdpstk-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygdpstk-1.dll" v0.0 ts=2003/9/19 23:37
  176k 2003/09/20 C:\cygwin\usr\X11R6\bin\cygfontconfig-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfontconfig-1.dll" v0.0 ts=2003/9/19 23:38
  340k 2003/09/20 C:\cygwin\usr\X11R6\bin\cygfreetype-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygfreetype-9.dll" v0.0 ts=2003/9/19 23:38
  520k 2003/09/20 C:\cygwin\usr\X11R6\bin\cygGL-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygGL-1.dll" v0.0 ts=2003/9/19 23:35
  593k 2003/09/20 C:\cygwin\usr\X11R6\bin\cygGLU-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygGLU-1.dll" v0.0 ts=2003/9/19 23:36
  111k 2003/09/20 C:\cygwin\usr\X11R6\bin\cygICE-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygICE-6.dll" v0.0 ts=2003/9/19 23:28
   25k 2003/09/20 C:\cygwin\usr\X11R6\bin\cygoldX-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygoldX-6.dll" v0.0 ts=2003/9/19 23:27
 1511k 2003/09/20 C:\cygwin\usr\X11R6\bin\cygOSMesa-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygOSMesa-4.dll" v0.0 ts=2003/9/19 23:35
   41k 2002/05/14 C:\cygwin\usr\X11R6\bin\cygPropList-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygPropList-0.dll" v0.0 ts=2002/5/13 20:13
   40k 2003/09/20 C:\cygwin\usr\X11R6\bin\cygpsres-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygpsres-1.dll" v0.0 ts=2003/9/19 23:37
   54k 2003/09/20 C:\cygwin\usr\X11R6\bin\cygSM-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygSM-6.dll" v0.0 ts=2003/9/19 23:28
 1073k 2003/09/20 C:\cygwin\usr\X11R6\bin\cygX11-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygX11-6.dll" v0.0 ts=2003/9/19 23:27
  701k 2003/09/23 C:\cygwin\usr\X11R6\bin\cygXaw3d-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw3d-1.dll" v0.0 ts=2003/9/23 0:34
   68k 2003/09/20 C:\cygwin\usr\X11R6\bin\cygXcursor-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXcursor-1.dll" v0.0 ts=2003/9/19 23:39
   84k 2003/09/20 C:\cygwin\usr\X11R6\bin\cygXext-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXext-6.dll" v0.0 ts=2003/9/19 23:28
   99k 2003/09/20 C:\cygwin\usr\X11R6\bin\cygXft-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXft-1.dll" v0.0 ts=2003/9/19 23:39
  118k 2003/09/20 C:\cygwin\usr\X11R6\bin\cygXft-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXft-2.dll" v0.0 ts=2003/9/19 23:39
   53k 2003/09/20 C:\cygwin\usr\X11R6\bin\cygXi-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXi-6.dll" v0.0 ts=2003/9/19 23:30
   29k 2003/09/20 C:\cygwin\usr\X11R6\bin\cygXmuu-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXmuu-1.dll" v0.0 ts=2003/9/19 23:29
   59k 2003/09/20 C:\cygwin\usr\X11R6\bin\cygXp-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXp-6.dll" v0.0 ts=2003/9/19 23:31
   83k 2003/09/20 C:\cygwin\usr\X11R6\bin\cygXpm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygXpm-4.dll" v0.0 ts=2003/9/19 23:29
   34k 2003/09/20 C:\cygwin\usr\X11R6\bin\cygXrandr-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXrandr-2.dll" v0.0 ts=2003/9/19 23:39
   49k 2003/09/20 C:\cygwin\usr\X11R6\bin\cygXrender-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXrender-1.dll" v0.0 ts=2003/9/19 23:38
  386k 2003/09/20 C:\cygwin\usr\X11R6\bin\cygXTrap-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXTrap-6.dll" v0.0 ts=2003/9/19 23:39
   38k 2003/09/20 C:\cygwin\usr\X11R6\bin\cygXtst-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXtst-6.dll" v0.0 ts=2003/9/19 23:30
   34k 2003/09/20 C:\cygwin\usr\X11R6\bin\cygXv-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXv-1.dll" v0.0 ts=2003/9/19 23:31
  802k 2003/09/15 C:\cygwin\bin\cygaspell-15.dll - os=4.0 img=1.0 sys=4.0
                  "cygaspell-15.dll" v0.0 ts=2003/9/15 5:32
   61k 2003/08/09 C:\cygwin\bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygbz2-1.dll" v0.0 ts=2003/8/8 23:35
   54k 2002/01/27 C:\cygwin\bin\cygbz21.0.dll - os=4.0 img=1.0 sys=4.0
                  "cygbz21.0.dll" v0.0 ts=2002/1/26 17:07
   14k 2003/08/10 C:\cygwin\bin\cygcharset-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygcharset-1.dll" v0.0 ts=2003/8/10 13:57
  842k 2003/09/30 C:\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 9:49
  645k 2003/04/11 C:\cygwin\bin\cygcrypto.dll - os=4.0 img=1.0 sys=4.0
                  "cygcrypto.dll" v0.0 ts=2003/4/11 3:37
  551k 2003/04/02 C:\cygwin\bin\cygcurl-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygcurl-2.dll" v0.0 ts=2003/4/2 13:09
   28k 2003/08/11 C:\cygwin\bin\cygcygipc-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygcygipc-2.dll" v0.0 ts=2003/8/10 17:54
  380k 2002/07/24 C:\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 9:24
  831k 2003/09/20 C:\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 14:51
  326k 2002/06/26 C:\cygwin\bin\cygdb2.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb2.dll" v0.0 ts=2002/6/26 10:48
  487k 2002/07/24 C:\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 9:25
 1080k 2003/09/20 C:\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 14:53
  132k 2003/07/12 C:\cygwin\bin\cygexpat-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygexpat-0.dll" v0.0 ts=2003/7/12 4:33
   64k 2003/09/23 C:\cygwin\bin\cygexslt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygexslt-0.dll" v0.0 ts=2003/9/23 12:13
   45k 2001/04/25 C:\cygwin\bin\cygform5.dll - os=4.0 img=1.0 sys=4.0
                  "cygform5.dll" v0.0 ts=2001/4/24 22:28
   35k 2002/01/09 C:\cygwin\bin\cygform6.dll - os=4.0 img=1.0 sys=4.0
                  "cygform6.dll" v0.0 ts=2002/1/8 22:03
   48k 2003/08/09 C:\cygwin\bin\cygform7.dll - os=4.0 img=1.0 sys=4.0
                  "cygform7.dll" v0.0 ts=2003/8/9 2:25
   28k 2003/07/20 C:\cygwin\bin\cyggdbm-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm-3.dll" v0.0 ts=2003/7/20 0:58
   30k 2003/08/11 C:\cygwin\bin\cyggdbm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm-4.dll" v0.0 ts=2003/8/10 19:12
   19k 2003/03/22 C:\cygwin\bin\cyggdbm.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm.dll" v0.0 ts=2002/2/19 19:05
   15k 2003/07/20 C:\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 1:00
   15k 2003/08/11 C:\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 19:13
   69k 2003/08/10 C:\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 15:10
   12k 2003/08/10 C:\cygwin\bin\cyggettextpo-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggettextpo-0.dll" v0.0 ts=2003/8/10 15:11
  134k 2003/08/10 C:\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 15:10
  167k 2003/09/09 C:\cygwin\bin\cyggmp-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggmp-3.dll" v0.0 ts=2003/9/9 15:03
  489k 2003/08/09 C:\cygwin\bin\cygguile-12.dll - os=4.0 img=1.0 sys=4.0
                  "cygguile-12.dll" v0.0 ts=2003/8/9 7:17
  489k 2003/07/28 C:\cygwin\bin\cygguile-12abi13.dll - os=4.0 img=1.0 sys=4.0
                  "cygguile-12abi13.dll" v0.0 ts=2003/7/28 11:18
   24k 2003/08/09 C:\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 7:16
   24k 2003/07/28 C:\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 10:48
   62k 2003/08/09 C:\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 7:17
   62k 2003/07/28 C:\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 11:18
   23k 2003/08/09 C:\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 7:17
   23k 2003/07/28 C:\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 11:18
   11k 2003/08/09 C:\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 7:17
   11k 2003/07/28 C:\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 11:18
   17k 2001/06/28 C:\cygwin\bin\cyghistory4.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory4.dll" v0.0 ts=2001/1/6 20:34
   29k 2003/08/10 C:\cygwin\bin\cyghistory5.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory5.dll" v0.0 ts=2003/8/10 16:16
  306k 2002/04/27 C:\cygwin\bin\cyghttpd.dll - os=4.0 img=1.0 sys=4.0
                  "cyghttpd.dll" v0.0 ts=2002/4/27 6:23
  958k 2003/08/10 C:\cygwin\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygiconv-2.dll" v0.0 ts=2003/8/10 13:57
   22k 2001/12/13 C:\cygwin\bin\cygintl-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-1.dll" v0.0 ts=2001/12/13 1:28
   37k 2003/08/10 C:\cygwin\bin\cygintl-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-2.dll" v0.0 ts=2003/8/10 14:50
   21k 2001/06/20 C:\cygwin\bin\cygintl.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl.dll" v0.0 ts=2001/6/20 10:09
   12k 2003/02/17 C:\cygwin\bin\cygioperm-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygioperm-0.dll" v0.0 ts=2003/2/17 11:58
   48k 2003/08/10 C:\cygwin\bin\cygjbig1.dll - os=4.0 img=1.0 sys=4.0
                  "cygjbig1.dll" v0.0 ts=2003/8/10 16:58
  132k 2003/08/11 C:\cygwin\bin\cygjpeg-62.dll - os=4.0 img=1.0 sys=4.0
                  "cygjpeg-62.dll" v0.0 ts=2003/8/10 17:37
  119k 2002/02/09 C:\cygwin\bin\cygjpeg6b.dll - os=4.0 img=1.0 sys=4.0
                  "cygjpeg6b.dll" v0.0 ts=2002/2/8 21:19
   60k 2003/09/17 C:\cygwin\bin\cygkpathsea-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygkpathsea-3.dll" v0.0 ts=2003/9/17 9:37
   60k 2003/07/27 C:\cygwin\bin\cygkpathsea-3abi13.dll - os=4.0 img=1.0 sys=4.0
                  "cygkpathsea-3abi13.dll" v0.0 ts=2003/7/27 13:23
   32k 2003/08/18 C:\cygwin\bin\cygltdl-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygltdl-3.dll" v0.0 ts=2003/8/17 22:35
   26k 2001/04/25 C:\cygwin\bin\cygmenu5.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu5.dll" v0.0 ts=2001/4/24 22:27
   20k 2002/01/09 C:\cygwin\bin\cygmenu6.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu6.dll" v0.0 ts=2002/1/8 22:03
   29k 2003/08/09 C:\cygwin\bin\cygmenu7.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu7.dll" v0.0 ts=2003/8/9 2:25
  453k 2003/07/27 C:\cygwin\bin\cygnaim_core-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygnaim_core-0.dll" v0.0 ts=2003/7/26 22:46
  156k 2001/04/25 C:\cygwin\bin\cygncurses++5.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++5.dll" v0.0 ts=2001/4/24 22:29
  175k 2002/01/09 C:\cygwin\bin\cygncurses++6.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++6.dll" v0.0 ts=2002/1/8 22:03
  226k 2001/04/25 C:\cygwin\bin\cygncurses5.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses5.dll" v0.0 ts=2001/4/24 22:17
  202k 2002/01/09 C:\cygwin\bin\cygncurses6.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses6.dll" v0.0 ts=2002/1/8 22:03
  224k 2003/08/09 C:\cygwin\bin\cygncurses7.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses7.dll" v0.0 ts=2003/8/9 2:24
   15k 2001/04/25 C:\cygwin\bin\cygpanel5.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel5.dll" v0.0 ts=2001/4/24 22:27
   12k 2002/01/09 C:\cygwin\bin\cygpanel6.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel6.dll" v0.0 ts=2002/1/8 22:03
   19k 2003/08/09 C:\cygwin\bin\cygpanel7.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel7.dll" v0.0 ts=2003/8/9 2:24
   67k 2003/09/10 C:\cygwin\bin\cygpcre-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcre-0.dll" v0.0 ts=2003/9/10 7:25
   63k 2003/04/11 C:\cygwin\bin\cygpcre.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcre.dll" v0.0 ts=2003/4/11 1:31
   15k 2003/09/10 C:\cygwin\bin\cygpcreposix-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcreposix-0.dll" v0.0 ts=2003/9/10 7:25
   61k 2003/04/11 C:\cygwin\bin\cygpcreposix.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcreposix.dll" v0.0 ts=2003/4/11 1:31
 1100k 2003/08/29 C:\cygwin\bin\cygperl5_8_0.dll - os=4.0 img=1.0 sys=4.0
                  "cygperl5_8_0.dll" v0.0 ts=2003/8/29 3:20
  168k 2003/08/10 C:\cygwin\bin\cygpng10.dll - os=4.0 img=1.0 sys=4.0
                  "cygpng10.dll" v0.0 ts=2003/8/10 15:31
  173k 2003/08/10 C:\cygwin\bin\cygpng12.dll - os=4.0 img=1.0 sys=4.0
                  "cygpng12.dll" v0.0 ts=2003/8/10 15:35
  170k 2002/01/21 C:\cygwin\bin\cygpng2.dll - os=4.0 img=1.0 sys=4.0
                  "cygpng2.dll" v0.0 ts=2002/1/20 17:05
   22k 2002/06/09 C:\cygwin\bin\cygpopt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpopt-0.dll" v0.0 ts=2002/6/8 22:45
  108k 2001/06/28 C:\cygwin\bin\cygreadline4.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline4.dll" v0.0 ts=2001/1/6 20:34
  148k 2003/08/10 C:\cygwin\bin\cygreadline5.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline5.dll" v0.0 ts=2003/8/10 16:16
  689k 2003/08/11 C:\cygwin\bin\cygruby18.dll - os=4.0 img=1.0 sys=4.0
                  "cygruby18.dll" v0.0 ts=2003/8/11 6:27
  171k 2003/09/30 C:\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 9:49
  165k 2003/04/11 C:\cygwin\bin\cygssl.dll - os=4.0 img=1.0 sys=4.0
                  "cygssl.dll" v0.0 ts=2003/4/11 3:37
  254k 2003/09/18 C:\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 8:52
  281k 2003/02/24 C:\cygwin\bin\cygtiff3.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiff3.dll" v0.0 ts=2003/2/23 20:58
  282k 2003/08/11 C:\cygwin\bin\cygtiff4.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiff4.dll" v0.0 ts=2003/8/10 19:32
   25k 2002/07/14 C:\cygwin\bin\cygungif-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygungif-4.dll" v0.0 ts=2002/7/14 7:58
 2689k 2002/11/16 C:\cygwin\bin\cygxerces-c21.dll - os=4.0 img=1.0 sys=4.0
                  "cygxerces-c21.dll" v0.0 ts=2002/11/15 20:07
 2984k 2003/02/07 C:\cygwin\bin\cygxerces-c22.dll - os=4.0 img=1.0 sys=4.0
                  "cygxerces-c22.dll" v0.0 ts=2003/2/7 10:50
 3088k 2003/06/11 C:\cygwin\bin\cygxerces-c23.dll - os=4.0 img=1.0 sys=4.0
                  "cygxerces-c23.dll" v0.0 ts=2003/6/11 16:40
 1074k 2003/09/23 C:\cygwin\bin\cygxml2-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygxml2-2.dll" v0.0 ts=2003/9/23 10:52
   50k 2003/08/09 C:\cygwin\bin\cygXpm-noX4.dll - os=4.0 img=1.0 sys=4.0
                  "cygXpm-noX4.dll" v0.0 ts=2003/8/9 0:21
   54k 2003/08/09 C:\cygwin\bin\cygXpm-X4.dll - os=4.0 img=1.0 sys=4.0
                  "cygXpm-X4.dll" v0.0 ts=2003/8/9 0:22
  196k 2003/09/23 C:\cygwin\bin\cygxslt-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxslt-1.dll" v0.0 ts=2003/9/23 11:58
    7k 2003/09/23 C:\cygwin\bin\cygxsltbreakpoint-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxsltbreakpoint-1.dll" v0.0 ts=2003/9/23 12:06
   60k 2003/08/09 C:\cygwin\bin\cygz.dll - os=4.0 img=1.0 sys=4.0
                  "cygz.dll" v0.0 ts=2003/8/8 23:28
  949k 2003/09/20 C:\cygwin\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0
                  "cygwin1.dll" v0.0 ts=2003/9/20 13:31
    Cygwin DLL version info:
        DLL version: 1.5.5
        DLL epoch: 19
        DLL bad signal mask: 19005
        DLL old termios: 5
        DLL malloc env: 28
        API major: 0
        API minor: 94
        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: Sat Sep 20 16:31:15 EDT 2003
        CVS tag: cr-0x9b
        Shared id: cygwin1S3


Cygwin Package Information
Last downloaded files to: C:\Program Files\Common Files\mozilla.org\GRE\1.5_2003092514
Last downloaded files from: ftp://cygwin.mirrors.pair.com

Package                 Version            
_update-info-dir        00221-1            
a2ps                    4.13-1             
agetty                  2.1-1              
apache                  1.3.24-5           
ash                     20020731-3         
aspell                  0.50.3-1           
aspell-doc              0.50.3-1           
aspell-en               0.51.0-1           
astyle                  1.15.3-3           
autoconf                2.57a-1            
autoconf-devel          2.57-2             
autoconf-stable         2.13-5             
automake                1.7.5a-1           
automake-devel          1.7.6-2            
automake-stable         1.4p5-6            
base-files              2.6-1              
base-passwd             1.1-1              
bash                    2.05b-15           
bc                      1.06-1             
binutils                20030901-1         
bison                   20030307-1         
byacc                   1.9-1              
bzip2                   1.0.2-5            
c-client                2002e-1            
ccache                  2.2-1              
ccdoc                   0.8.39-1           
cgoban                  1.9.14-1           
chkconfig               1.2.24h-1          
clear                   1.0-1              
clisp                   2.31-2             
cmake                   1.6.7-1            
cocom                   0.995-1            
compface                1.4-5              
cpio                    2.5-3              
cron                    3.0.1-11           
crypt                   1.0-2              
ctags                   5.5-4              
curl                    7.10.4-1           
curl-devel              7.10.4-1           
cvs                     1.11.6-3           
cygipc                  2.01-2             
cygrunsrv               0.96-2             
cygutils                1.2.1-2            
cygwin                  1.5.5-1            
cygwin-doc              1.3-6              
db2                     2.7.7-4            
db3.1                   3.1.17-2           
db4.1                   4.1.25-1           
dejagnu                 20021217-2         
diffutils               2.8.4-1            
docbook-xml42           4.2-1              
docbook-xsl             1.62.3-1           
doxygen                 1.2.18-1           
dpkg                    1.10.4-2           
ed                      0.2-1              
editrights              1.01-1             
ELFIO                   1.0.0-1            
emacs                   21.2-12            
emacs-el                21.2-12            
emacs-X11               21.2-12            
enscript                1.6.3-3            
exim                    4.24-1             
expat                   1.95.6-2           
expect                  20030128-1         
fetchmail               6.2.4-1            
figlet                  2.2-1              
file                    4.03-2             
fileutils               4.1-2              
findutils               4.1.7-4            
flex                    2.5.4a-3           
fortune                 1.8-2              
fvwm                    2.4.7-2            
gawk                    3.1.3-3            
gcc                     3.3.1-2            
gcc-mingw               20030911-3         
gcc2                    2.95.3-10          
gdb                     20030919-1         
gdbm                    1.8.3-7            
gettext                 0.12.1-3           
gettext-devel           0.12.1-3           
ghostscript             7.05-2             
ghostscript-base        7.05-2             
ghostscript-x11         7.05-2             
gmp                     4.1.2-1            
gnugo                   3.4-1              
gnupg                   1.2.2-3            
gperf                   2.7.2-1            
grace                   5.1.12-1           
grep                    2.5-1              
groff                   1.18.1-2           
gsl                     1.4-1              
guile                   1.6.4-12           
guile-devel             1.6.4-12           
guile-doc               1.6.4-12           
gzip                    1.3.5-1            
indent                  2.2.8-1            
inetutils               1.3.2-25           
initscripts             0.9-1              
ioperm                  0.4-1              
irc                     20010101-3         
jbigkit                 1.5-3              
jgraph                  8.3-1              
jpeg                    6b-11              
keychain                1.9-1              
less                    381-1              
lesstif                 0.93.91-1          
libaspell15             0.50.3-1           
libbz2_0                1.0.2-1            
libbz2_1                1.0.2-5            
libcharset1             1.9.1-3            
libdb2                  2.7.7-4            
libdb2-devel            2.7.7-4            
libdb3.1                3.1.17-2           
libdb3.1-devel          3.1.17-2           
libdb4.1                4.1.25-1           
libdb4.1-devel          4.1.25-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            
libiconv                1.9.1-3            
libiconv2               1.9.1-3            
libintl                 0.10.38-3          
libintl1                0.10.40-1          
libintl2                0.12.1-3           
libjpeg62               6b-11              
libjpeg6b               6b-8               
libkpathsea3            2.0.2-13           
libkpathsea3abi13       2.0.2-2            
libltdl3                1.5-3              
libncurses-devel        5.3-4              
libncurses5             5.2-1              
libncurses6             5.2-8              
libncurses7             5.3-4              
libpcre                 4.1-1              
libpcre0                4.4-2              
libpng                  1.2.5-4            
libpng10                1.0.15-4           
libpng10-devel          1.0.15-4           
libpng12                1.2.5-4            
libpng12-devel          1.2.5-4            
libpng2                 1.0.12-1           
libpopt0                1.6.4-4            
libPropList             0.10.1-3           
libreadline4            4.1-2              
libreadline5            4.3-5              
libtiff-devel           3.6.0-5            
libtiff3                3.6.0-2            
libtiff4                3.6.0-5            
libtool                 1.5a-1             
libtool-devel           1.5-3              
libtool-stable          1.4.3-2            
libungif                4.1.0-2            
libxerces-c21           2.1.0-1            
libxerces-c22           2.2.0-1            
libxerces-c23           2.3.0-2            
libxml2                 2.5.11-1           
libxslt                 1.0.33-1           
lilypond                1.8.2-1            
lilypond-doc            1.8.2-1            
links                   0.96-1             
login                   1.9-7              
lynx                    2.8.4-7            
m4                      1.4-1              
make                    3.80-1             
man                     1.5j-2             
mc                      4.6.0-4            
mingw-runtime           3.1-1              
mingw-zlib              1.1.4-4            
mktemp                  1.5-3              
mod_auth_mysql          1.11-1             
mod_auth_ntsec          1.7-1              
mod_dav                 1.0.3-1.3.6-1      
mod_php4                4.2.0-2            
mod_ssl                 2.8.8-1.3.24-1     
more                    2.11o-1            
mt                      2.0.1-2            
mutt                    1.4-1              
naim                    0.11.6-2           
nano                    1.2.2-1            
nasm                    0.98.38-1          
ncftp                   3.1.4-1            
ncurses                 5.3-4              
ncurses-demo            5.3-4              
netcat                  1.10-2             
openbox                 0.99.1-3           
opengl                  1.1.0-6            
openssh                 3.7.1p2-1          
openssl                 0.9.7c-1           
openssl-devel           0.9.7c-1           
openssl096              0.9.6j-1           
par                     1.52-1             
patch                   2.5.8-8            
patchutils              0.2.22-2           
pcre                    4.4-2              
pcre-devel              4.4-2              
pcre-doc                4.4-2              
pdksh                   5.2.14-2           
perl                    5.8.0-5            
perl_manpages           5.8.0-5            
pine                    4.58-1             
pinfo                   0.6.8-1            
pkgconfig               0.15.0-4           
popt                    1.6.4-4            
postgresql              7.3.4-2            
procmail                3.22-8             
procps                  010801-2           
proftpd                 1.2.9rc1-3         
psutils                 1.17-1             
python                  2.3-2              
rcs                     5.7-3              
readline                4.3-5              
rebase                  2.2-3              
robots                  2.0-3              
rpm                     4.1-1              
rpm-build               4.1-1              
rpm-doc                 4.1-1              
rsync                   2.5.6-2            
ruby                    1.8.0-1            
rxvt                    2.7.10-3           
sed                     4.0.7-3            
setsid                  0.0-3              
sh-utils                2.0.15-4           
sharutils               4.2.1-3            
shutdown                1.4-1              
splint                  3.1.1-1            
squid                   2.4.STABLE7-1      
ssmtp                   2.38.7-4           
stunnel                 4.04-3             
sunrpc                  4.0-1              
SWI-Prolog              5.2.6-1            
swig                    1.3.19-1           
sysvinit                2.84-4             
tar                     1.13.25-3          
tcltk                   20030901-1         
tcp_wrappers            7.6-1              
tcsh                    6.12.00-7          
termcap                 20021106-2         
terminfo                5.3_20030726-1     
tetex                   2.0.2-13           
tetex-base              2.0.2-13           
tetex-bin               2.0.2-13           
tetex-devel             2.0.2-13           
tetex-doc               2.0.2-13           
tetex-extra             2.0.2-13           
tetex-tiny              2.0.2-13           
tetex-x11               2.0.2-13           
texinfo                 4.2-4              
textutils               2.0.21-1           
tidy                    030901-1           
tiff                    3.6.0-5            
time                    1.7-1              
tin                     1.6.1-1            
transfig                3.2.4-1            
ttcp                    19980512-1         
ucl                     1.01-1             
units                   1.77-1             
unzip                   5.50-5             
upx                     1.24-1             
uw-imap                 2002e-1            
uw-imap-imapd           2002e-1            
uw-imap-util            2002e-1            
vim                     6.2.098-1          
w32api                  2.4-1              
wget                    1.8.2-2            
which                   1.5-2              
whois                   4.6.7-1            
WindowMaker             0.80.0-2           
wtf                     0.0.4-4            
x2x                     1.27-2             
Xaw3d                   1.5E-1             
xerces-c                2.3.0-2            
xerces-c-devel          2.3.0-2            
xerces-c-doc            2.3.0-2            
xfig-base               3.2.4-1            
xfig-bin                3.2.4-1            
xfig-doc                3.2.4-1            
xfig-etc                3.2.4-3            
xfig-lib                3.2.4-2            
xfig-man                3.2.4-1            
XFree86-base            4.3.0-1            
XFree86-bin             4.3.0-4            
XFree86-bin-icons       4.3.0-4            
XFree86-doc             4.3.0-1            
XFree86-etc             4.3.0-3            
XFree86-f100            4.2.0-3            
XFree86-fcyr            4.2.0-3            
XFree86-fenc            4.2.0-3            
XFree86-fnts            4.2.0-3            
XFree86-fscl            4.2.0-3            
XFree86-fsrv            4.3.0-3            
XFree86-html            4.3.0-1            
XFree86-jdoc            4.3.0-1            
XFree86-lib             4.3.0-1            
XFree86-lib-compat      4.3.0-1            
XFree86-man             4.3.0-1            
XFree86-nest            4.3.0-3            
XFree86-prog            4.3.0-6            
XFree86-prt             4.3.0-3            
XFree86-ps              4.3.0-1            
XFree86-startup-scripts 4.2.0-5            
XFree86-vfb             4.3.0-3            
XFree86-xserv           4.3.0-14           
XFree86-xwinclip        4.3.0-1            
xinetd                  2.3.9-1            
xmlto                   0.0.14-1           
xpm-nox                 4.2.0-4            
zip                     2.3-5              
zlib                    1.1.4-4            
zsh                     4.0.7-2            
Use -h to see help about each section


[-- Attachment #3: Type: text/plain, Size: 218 bytes --]

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

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

* Re: postgresql setup on cygwin --- initdb fails
  2003-10-04 14:47   ` postgresql setup on cygwin --- initdb fails Terrence Brannon
@ 2003-10-04 15:19     ` Jason Tishler
  2003-10-04 16:08       ` Terrence Brannon
  0 siblings, 1 reply; 9+ messages in thread
From: Jason Tishler @ 2003-10-04 15:19 UTC (permalink / raw)
  To: cygwin

Terrence,

On Sat, Oct 04, 2003 at 07:33:57AM -0700, Terrence Brannon wrote:
> IpcSemaphoreCreate: semget(key=1, num=17, 03600) failed: Function not
> implemented

Did you forget to start ipc-daemon2?

Please read the README:

    http://www.tishler.net/jason/software/postgresql/postgresql-7.3.4.README

Jason

-- 
PGP/GPG Key: http://www.tishler.net/jason/pubkey.asc or key servers
Fingerprint: 7A73 1405 7F2B E669 C19D  8784 1AFD E4CC ECF4 8EF6

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

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

* Re: postgresql setup on cygwin --- initdb fails
  2003-10-04 15:19     ` Jason Tishler
@ 2003-10-04 16:08       ` Terrence Brannon
  2003-10-04 16:10         ` Igor Pechtchanski
  0 siblings, 1 reply; 9+ messages in thread
From: Terrence Brannon @ 2003-10-04 16:08 UTC (permalink / raw)
  Cc: cygwin

Jason Tishler wrote:

>Terrence,
>
>On Sat, Oct 04, 2003 at 07:33:57AM -0700, Terrence Brannon wrote:
>  
>
>>IpcSemaphoreCreate: semget(key=1, num=17, 03600) failed: Function not
>>implemented
>>    
>>
>
>Did you forget to start ipc-daemon2?
>  
>
No, I didn't forget to read it... I just didn't know where to start with 
getting Postgresql up and running... how was I supposed to know that 
file existed? I mean this in all earnesty.

Is there a common protocol that I can use to be guided through the 
initial usage phase of each module installed on my system? Ie, something 
like

INIT --package=cvs
INIT --package=pgsql

or to find the user's guide for my installed packages?

>Please read the README:
>
>    http://www.tishler.net/jason/software/postgresql/postgresql-7.3.4.README
>
>  
>
will do




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

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

* Re: postgresql setup on cygwin --- initdb fails
  2003-10-04 16:08       ` Terrence Brannon
@ 2003-10-04 16:10         ` Igor Pechtchanski
  0 siblings, 0 replies; 9+ messages in thread
From: Igor Pechtchanski @ 2003-10-04 16:10 UTC (permalink / raw)
  To: Terrence Brannon; +Cc: cygwin

On Sat, 4 Oct 2003, Terrence Brannon wrote:

> Jason Tishler wrote:
>
> >Terrence,
> >
> >On Sat, Oct 04, 2003 at 07:33:57AM -0700, Terrence Brannon wrote:
> >
> >
> >>IpcSemaphoreCreate: semget(key=1, num=17, 03600) failed: Function not
> >>implemented
> >
> >Did you forget to start ipc-daemon2?
>
> No, I didn't forget to read it... I just didn't know where to start with
> getting Postgresql up and running... how was I supposed to know that
> file existed? I mean this in all earnesty.
>
> Is there a common protocol that I can use to be guided through the
> initial usage phase of each module installed on my system? Ie, something
> like
>
> INIT --package=cvs
> INIT --package=pgsql
>
> or to find the user's guide for my installed packages?
>
> >Please read the README:
> >    http://www.tishler.net/jason/software/postgresql/postgresql-7.3.4.README
>
> will do

Terrence,

Most packages come with a Cygwin-specific readme that should be in
/usr/share/doc/Cygwin/pkgname-ver.README.  Older packages may still have
it in /usr/doc/Cygwin/pkgname-ver.README, so check both places when in
doubt.  The Cygwin-specific readme will either tell you what you need to
know, or will refer you to the location of the upstream README (which is
also installed on your system, usually in /usr/{share/,}doc/pkgname-ver/.
	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

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

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

end of thread, other threads:[~2003-10-04 15:32 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-08-11 23:58 Utility to dereference Windows shortcuts? Tom Cyglist
2003-08-12  1:27 ` Igor Pechtchanski
2003-08-12 20:34   ` Rob
2003-08-12 23:36     ` Igor Pechtchanski
2003-09-18 17:20   ` Rob S.i.k.l.o.s.
2003-10-04 14:47   ` postgresql setup on cygwin --- initdb fails Terrence Brannon
2003-10-04 15:19     ` Jason Tishler
2003-10-04 16:08       ` Terrence Brannon
2003-10-04 16:10         ` 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).