Mail Archives: cygwin/2002/11/19/16:54:15
------=_NextPart_000_00C7_01C28FDB.50181300
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
Trying to build gcc-3.2-3 from scratch. Have the near latest versions of
everything in cygwin (see cygcheck.out).
Used the following configure command line:
/usr/src/gcc-3.2-3/configure --with-program-suffix=-3.2-3-test --prefix=$HOM
E/projects/install 2>&1
My config.status file shows:
#!/bin/sh
# This file was generated automatically by configure. Do not edit.
# This directory was configured as follows:
/usr/src/gcc-3.2-3/configure --with-gcc-version-trigger=/usr/src/gcc-3.2-3/g
cc/version.c --host=i686-pc-cygwin --with-program-suffix=-3.2-3-test --prefi
x=/home/mhcox/projects/install --norecursion
# using "mh-frag"
The build fails on compiling pure.cc in
./i686-pc-cygwin/libstdc++-v3/libsupc++ with the following output:
/bin/sh ../libtool --tag CXX --tag disable-shared --mode=compile
/home/mhcox/projects/build/gcc-3.2-3/gcc/xgcc -shared-libgcc -B/home/mhcox/p
rojects/build/gcc-3.2-3/gcc/ -nostdinc++ -L/home/mhcox/projects/build/gcc-3
.2-3/i686-pc-cygwin/libstdc++-v3/src -L/home/mhcox/projects/build/gcc-3.2-3/
i686-pc-cygwin/libstdc++-v3/src/.libs -B/home/mhcox/projects/install/i686-pc
-cygwin/bin/ -B/home/mhcox/projects/install/i686-pc-cygwin/lib/ -isystem
/home/mhcox/projects/install/i686-pc-cygwin/include -I/usr/src/gcc-3.2-3/lib
stdc++-v3/../gcc -I/usr/src/gcc-3.2-3/libstdc++-v3/../include -I/home/mhcox/
projects/build/gcc-3.2-3/i686-pc-cygwin/libstdc++-v3/include/i686-pc-cygwin
-I/home/mhcox/projects/build/gcc-3.2-3/i686-pc-cygwin/libstdc++-v3/include -
I/usr/src/gcc-3.2-3/libstdc++-v3/libsupc++ -g -O2 -fno-implicit-templates
-Wall -Wno-format -W -Wwrite-strings -Winline -fdiagnostics-show-location=
once -ffunction-sections -fdata-sections -g -c
/usr/src/gcc-3.2-3/libstdc++-v3/libsupc++/pure.cc
/home/mhcox/projects/build/gcc-3.2-3/gcc/xgcc -shared-libgcc -B/home/mhcox/p
rojects/build/gcc-3.2-3/gcc/ -nostdinc++ -L/home/mhcox/projects/build/gcc-3.
2-3/i686-pc-cygwin/libstdc++-v3/src -L/home/mhcox/projects/build/gcc-3.2-3/i
686-pc-cygwin/libstdc++-v3/src/.libs -B/home/mhcox/projects/install/i686-pc-
cygwin/bin/ -B/home/mhcox/projects/install/i686-pc-cygwin/lib/ -isystem
/home/mhcox/projects/install/i686-pc-cygwin/include -I/usr/src/gcc-3.2-3/lib
stdc++-v3/../gcc -I/usr/src/gcc-3.2-3/libstdc++-v3/../include -I/home/mhcox/
projects/build/gcc-3.2-3/i686-pc-cygwin/libstdc++-v3/include/i686-pc-cygwin
-I/home/mhcox/projects/build/gcc-3.2-3/i686-pc-cygwin/libstdc++-v3/include -
I/usr/src/gcc-3.2-3/libstdc++-v3/libsupc++ -g -O2 -fno-implicit-templates -W
all -Wno-format -W -Wwrite-strings -Winline -fdiagnostics-show-location=once
-ffunction-sections -fdata-sections -g -c
/usr/src/gcc-3.2-3/libstdc++-v3/libsupc++/pure.cc -o pure.o
cc1plus: warning: -ffunction-sections may affect debugging on some targets
In file included from /usr/include/unistd.h:8,
from /usr/src/gcc-3.2-3/libstdc++-v3/libsupc++/pure.cc:34:
/usr/src/gcc-3.2-3/include/getopt.h:115: declaration of C function `int
getopt()' conflicts with
/usr/include/sys/unistd.h:125: previous declaration `int getopt(int, char*
const*, const char*)' here
make[4]: *** [pure.lo] Error 1
make[4]: Leaving directory
`/home/mhcox/projects/build/gcc-3.2-3/i686-pc-cygwin/libstdc++-v3/libsupc++'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory
`/home/mhcox/projects/build/gcc-3.2-3/i686-pc-cygwin/libstdc++-v3'
make[2]: *** [all-recursive-am] Error 2
make[2]: Leaving directory
`/home/mhcox/projects/build/gcc-3.2-3/i686-pc-cygwin/libstdc++-v3'
make[1]: *** [all-target-libstdc++-v3] Error 2
make[1]: Leaving directory `/home/mhcox/projects/build/gcc-3.2-3'
make: *** [bootstrap] Error 2
Looking at /usr/src/gcc-3.2-3/include/getopt.h it looks like __GNU_LIBRARY__
and HAVE_DECL_GETOPT are not being defined/set:
#if defined (__STDC__) && __STDC__
/* HAVE_DECL_* is a three-state macro: undefined, 0 or 1. If it is
undefined, we haven't run the autoconf check so provide the
declaration without arguments. If it is 0, we checked and failed
to find the declaration so provide a fully prototyped one. If it
is 1, we found it so don't provide any declaration at all. */
#if defined (__GNU_LIBRARY__) || (defined (HAVE_DECL_GETOPT) &&
!HAVE_DECL_GETOPT)
/* Many other libraries have conflicting prototypes for getopt, with
differences in the consts, in stdlib.h. To avoid compilation
errors, only prototype getopt for the GNU C library. */
extern int getopt (int argc, char *const *argv, const char *shortopts);
#else /* not __GNU_LIBRARY__ */
# if !defined (HAVE_DECL_GETOPT)
extern int getopt (); <<<<<< line 115 (that conflicting getopt() seen by
the compiler)
# endif
#endif /* __GNU_LIBRARY__ */
extern int getopt_long (int argc, char *const *argv, const char *shortopts,
const struct option *longopts, int *longind);
extern int getopt_long_only (int argc, char *const *argv,
const char *shortopts,
const struct option *longopts, int *longind);
/* Internal only. Users should not call this directly. */
extern int _getopt_internal (int argc, char *const *argv,
const char *shortopts,
const struct option *longopts, int *longind,
int long_only);
#else /* not __STDC__ */
extern int getopt ();
extern int getopt_long ();
extern int getopt_long_only ();
extern int _getopt_internal ();
#endif /* __STDC__ */
In the output from configure had the following lines:
...
checking for unistd.h... yes
...
checking whether getopt is declared... yes
Also, the following line is in the config.cache at the top of the tree:
gcc_cv_have_decl_getopt=${gcc_cv_have_decl_getopt='yes'}
but not in ./i686-pc-cygwin (under which libstdc++/libsup++ is built).
I greped through all the config.h files for HAVE_DECL_GETOPT, but could not
find it.
From the output of configure and the config.cache (at the top of the tree)
it looks like
it should have defined it. Also, since it seems like __GNU_LIBRARY__ should
be defined/set
(I'm not sure if libsup++ is part of the GNU library). My guess is that
there's a
problems with the configure script generator or it's input (or, more likely,
I'm not
building it correctly :-). I'm not very familiar with autoconf, autoheader,
etc. so
I hesitate to try to fix it on my own (are there any user guides/tutorials
on using
these tools?).
Also, I think the line 114 in getopt.h should be:
#if !defined(HAVE_DECL_GETOPT) && !defined(__cplusplus)
That way C++ code could include this file without a problem (assuming that
getopt()
is declared somewhere else, e.g. unistd.h)
Mike
------=_NextPart_000_00C7_01C28FDB.50181300
Content-Type: application/octet-stream;
name="cygcheck.out"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment;
filename="cygcheck.out"
=0D
Cygwin Win95/NT Configuration Diagnostics=0D
Current System Time: Tue Nov 19 13:33:33 2002=0D
=0D
Windows 2000 Server Ver 5.0 Build 2195 Service Pack 3=0D
=0D
Path: c:\home\mhcox\bin=0D
C:\cygwin\usr\local\bin=0D
C:\cygwin\usr\autotool\stable\bin=0D
C:\cygwin\bin=0D
C:\cygwin\bin=0D
C:\cygwin\usr\sbin=0D
C:\cygwin\sbin=0D
C:\cygwin\usr\X11R6\bin=0D
.=0D
=0D
SysDir: C:\WINNT\System32=0D
WinDir: C:\WINNT=0D
=0D
HOME =3D `c:\home\mhcox'=0D
MAKE_MODE =3D `unix'=0D
PWD =3D `/home/mhcox/projects/build/gcc-3.2-3'=0D
USER =3D `mhcox'=0D
=0D
ACE_ROOT =3D `/ACE_wrappers'=0D
ALLUSERSPROFILE =3D `C:\Documents and Settings\All Users'=0D
APPDATA =3D `C:\Documents and Settings\mhcox\Application Data'=0D
COMMONPROGRAMFILES =3D `C:\Program Files\Common Files'=0D
COMPUTERNAME =3D `BLUEZOOWS'=0D
COMSPEC =3D `C:\WINNT\system32\cmd.exe'=0D
DXSDKROOT =3D `C:\Program Files\Microsoft SDK\.'=0D
HOMEDRIVE =3D `C:'=0D
HOMEPATH =3D `\Documents and Settings\mhcox'=0D
LOGONSERVER =3D `\\BLUEZOOWS'=0D
MANPATH =3D `:/usr/ssl/man'=0D
NUMBER_OF_PROCESSORS =3D `1'=0D
OLDPWD =3D `/home/mhcox/projects/build'=0D
OS2LIBPATH =3D `C:\WINNT\system32\os2\dll;'=0D
OS =3D `Windows_NT'=0D
PATHEXT =3D `.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH'=0D
PKSFXDATA =3D `C:\Program Files\Common Files\PKWARE\Pksfxs.dat'=0D
PROCESSOR_ARCHITECTURE =3D `x86'=0D
PROCESSOR_IDENTIFIER =3D `x86 Family 6 Model 8 Stepping 3, =
GenuineIntel'=0D
PROCESSOR_LEVEL =3D `6'=0D
PROCESSOR_REVISION =3D `0803'=0D
PROGRAMFILES =3D `C:\Program Files'=0D
PROMPT =3D `$P$G'=0D
PS1 =3D `\[\033]0;\w\007=0D
\033[32m\]\u@\h \[\033[33m\w\033[0m\]=0D
$ '=0D
SESSIONNAME =3D `Console'=0D
SHLVL =3D `1'=0D
SYSTEMDRIVE =3D `C:'=0D
SYSTEMROOT =3D `C:\WINNT'=0D
TAO_ROOT =3D `/ACE_wrappers'=0D
TEMP =3D `c:\DOCUME~1\mhcox\LOCALS~1\Temp'=0D
TERM =3D `cygwin'=0D
TEXMF =3D `{/usr/share/lilypond/1.6.5,/usr/share/texmf}'=0D
TMP =3D `c:\DOCUME~1\mhcox\LOCALS~1\Temp'=0D
USERDOMAIN =3D `BLUEZOOWS'=0D
USERNAME =3D `mhcox'=0D
USERPROFILE =3D `C:\Documents and Settings\mhcox'=0D
WINDIR =3D `C:\WINNT'=0D
_ =3D `/usr/bin/cygcheck'=0D
=0D
HKEY_CURRENT_USER\Software\Cygnus Solutions=0D
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin=0D
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2=0D
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\Program Options=0D
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions=0D
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin=0D
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2=0D
(default) =3D `/cygdrive'=0D
cygdrive flags =3D 0x00000022=0D
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/=0D
(default) =3D `C:\cygwin'=0D
flags =3D 0x0000000a=0D
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/home=0D
(default) =3D `c:\home'=0D
flags =3D 0x00000008=0D
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts =
v2\/opt/w32sdk=0D
(default) =3D `c:\Program Files\Microsoft SDK'=0D
flags =3D 0x0000000a=0D
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/Redhat=0D
(default) =3D `c:\Redhat'=0D
flags =3D 0x0000000a=0D
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts =
v2\/usr/bin=0D
(default) =3D `C:\cygwin/bin'=0D
flags =3D 0x0000000a=0D
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts =
v2\/usr/lib=0D
(default) =3D `C:\cygwin/lib'=0D
flags =3D 0x0000000a=0D
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts =
v2\/usr/X11R6/lib/X11/fonts=0D
(default) =3D `C:\cygwin\usr\X11R6\lib\X11\fonts'=0D
flags =3D 0x0000000a=0D
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Program Options=0D
=0D
a: fd N/A N/A =0D
c: hd NTFS 9664Mb 62% CP CS UN PA FC BOOT=0D
d: cd N/A N/A =0D
j: fd N/A N/A =0D
z: fd N/A N/A =0D
=0D
C:\cygwin / system =
binmode=0D
c:\home /home system =
textmode=0D
c:\Program Files\Microsoft SDK /opt/w32sdk system =
binmode=0D
c:\Redhat /Redhat system =
binmode=0D
C:\cygwin/bin /usr/bin system =
binmode=0D
C:\cygwin/lib /usr/lib system =
binmode=0D
C:\cygwin\usr\X11R6\lib\X11\fonts /usr/X11R6/lib/X11/fonts system =
binmode=0D
. /cygdrive user =
binmode,cygdrive=0D
=0D
Found: C:\cygwin\bin\bash.exe=0D
Found: C:\cygwin\bin\cat.exe=0D
Found: C:\cygwin\bin\cpp.exe=0D
Found: C:\cygwin\bin\find.exe=0D
Found: C:\cygwin\bin\gcc.exe=0D
Found: C:\cygwin\bin\gdb.exe=0D
Found: C:\cygwin\bin\ld.exe=0D
Found: C:\cygwin\bin\ls.exe=0D
Found: C:\cygwin\bin\make.exe=0D
Found: C:\cygwin\bin\sh.exe=0D
=0D
21k 2002/10/24 C:\cygwin\usr\autotool\stable\bin\cygltdl-3.dll - =
os=3D4.0 img=3D1.0 sys=3D4.0=0D
"cygltdl-3.dll" v0.0 ts=3D2002/10/23 21:43=0D
58k 2002/05/07 C:\cygwin\bin\cygbz2-1.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygbz2-1.dll" v0.0 ts=3D2002/5/7 0:33=0D
54k 2002/01/27 C:\cygwin\bin\cygbz21.0.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygbz21.0.dll" v0.0 ts=3D2002/1/26 18:07=0D
6k 2002/06/24 C:\cygwin\bin\cygcharset-1.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygcharset-1.dll" v0.0 ts=3D2002/6/24 12:23=0D
643k 2002/11/09 C:\cygwin\bin\cygcrypto.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygcrypto.dll" v0.0 ts=3D2002/11/9 2:56=0D
475k 2002/10/11 C:\cygwin\bin\cygcurl-2.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygcurl-2.dll" v0.0 ts=3D2002/10/11 15:53=0D
380k 2002/07/24 C:\cygwin\bin\cygdb-3.1.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygdb-3.1.dll" v0.0 ts=3D2002/7/24 10:24=0D
326k 2002/06/26 C:\cygwin\bin\cygdb2.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygdb2.dll" v0.0 ts=3D2002/6/26 11:48=0D
487k 2002/07/24 C:\cygwin\bin\cygdb_cxx-3.1.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygdb_cxx-3.1.dll" v0.0 ts=3D2002/7/24 10:25=0D
136k 2002/10/17 C:\cygwin\bin\cygexpat-0.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygexpat-0.dll" v0.0 ts=3D2002/10/17 9:21=0D
50k 2002/03/17 C:\cygwin\bin\cygexslt-0.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygexslt-0.dll" v0.0 ts=3D2002/3/16 23:24=0D
45k 2001/04/25 C:\cygwin\bin\cygform5.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygform5.dll" v0.0 ts=3D2001/4/24 23:28=0D
35k 2002/01/09 C:\cygwin\bin\cygform6.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygform6.dll" v0.0 ts=3D2002/1/8 23:03=0D
19k 2002/02/20 C:\cygwin\bin\cyggdbm.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cyggdbm.dll" v0.0 ts=3D2002/2/19 20:05=0D
490k 2002/09/21 C:\cygwin\bin\cygguile-12.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygguile-12.dll" v0.0 ts=3D2002/9/21 4:01=0D
488k 2002/07/18 C:\cygwin\bin\cygguile-14.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygguile-14.dll" v0.0 ts=3D2002/7/18 4:35=0D
63k 2002/07/18 C:\cygwin\bin\cygguile-srfi-srfi-13-14-1.dll - =
os=3D4.0 img=3D1.0 sys=3D4.0=0D
"cygguile-srfi-srfi-13-14-1.dll" v0.0 ts=3D2002/7/18 =
4:35=0D
63k 2002/09/21 C:\cygwin\bin\cygguile-srfi-srfi-13-14-v-1-1.dll - =
os=3D4.0 img=3D1.0 sys=3D4.0=0D
"cygguile-srfi-srfi-13-14-v-1-1.dll" v0.0 =
ts=3D2002/9/21 4:01=0D
24k 2002/07/18 C:\cygwin\bin\cygguile-srfi-srfi-4-1.dll - os=3D4.0 =
img=3D1.0 sys=3D4.0=0D
"cygguile-srfi-srfi-4-1.dll" v0.0 ts=3D2002/7/18 =
4:35=0D
24k 2002/09/21 C:\cygwin\bin\cygguile-srfi-srfi-4-v-1-1.dll - =
os=3D4.0 img=3D1.0 sys=3D4.0=0D
"cygguile-srfi-srfi-4-v-1-1.dll" v0.0 ts=3D2002/9/21 =
4:01=0D
14k 2002/07/18 C:\cygwin\bin\cygguilereadline-14.dll - os=3D4.0 =
img=3D1.0 sys=3D4.0=0D
"cygguilereadline-14.dll" v0.0 ts=3D2002/7/18 4:35=0D
14k 2002/09/21 C:\cygwin\bin\cygguilereadline-v-12-12.dll - os=3D4.0 =
img=3D1.0 sys=3D4.0=0D
"cygguilereadline-v-12-12.dll" v0.0 ts=3D2002/9/21 =
4:01=0D
17k 2001/06/28 C:\cygwin\bin\cyghistory4.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cyghistory4.dll" v0.0 ts=3D2001/1/6 21:34=0D
20k 2002/10/10 C:\cygwin\bin\cyghistory5.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cyghistory5.dll" v0.0 ts=3D2002/10/10 11:28=0D
306k 2002/04/27 C:\cygwin\bin\cyghttpd.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cyghttpd.dll" v0.0 ts=3D2002/4/27 7:23=0D
929k 2002/06/24 C:\cygwin\bin\cygiconv-2.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygiconv-2.dll" v0.0 ts=3D2002/6/24 12:24=0D
22k 2001/12/13 C:\cygwin\bin\cygintl-1.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygintl-1.dll" v0.0 ts=3D2001/12/13 2:28=0D
28k 2002/09/20 C:\cygwin\bin\cygintl-2.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygintl-2.dll" v0.0 ts=3D2002/9/19 21:13=0D
21k 2001/06/20 C:\cygwin\bin\cygintl.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygintl.dll" v0.0 ts=3D2001/6/20 11:09=0D
81k 2000/12/05 C:\cygwin\bin\cygitcl30.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygitcl30.dll" v0.0 ts=3D2000/11/25 18:43=0D
35k 2000/12/05 C:\cygwin\bin\cygitk30.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygitk30.dll" v0.0 ts=3D2000/11/25 18:43=0D
45k 2002/02/08 C:\cygwin\bin\cygjbig1.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygjbig1.dll" v0.0 ts=3D2002/2/7 16:59=0D
119k 2002/02/09 C:\cygwin\bin\cygjpeg6b.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygjpeg6b.dll" v0.0 ts=3D2002/2/8 22:19=0D
59k 2002/09/20 C:\cygwin\bin\cygkpathsea-3-3-7.dll - os=3D4.0 =
img=3D1.0 sys=3D4.0=0D
"cygkpathsea-3-3-7.dll" v0.0 ts=3D2002/9/20 8:54=0D
25k 2002/07/16 C:\cygwin\bin\cygltdl-3.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygltdl-3.dll" v0.0 ts=3D2002/7/15 22:05=0D
26k 2001/04/25 C:\cygwin\bin\cygmenu5.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygmenu5.dll" v0.0 ts=3D2001/4/24 23:27=0D
20k 2002/01/09 C:\cygwin\bin\cygmenu6.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygmenu6.dll" v0.0 ts=3D2002/1/8 23:03=0D
156k 2001/04/25 C:\cygwin\bin\cygncurses++5.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygncurses++5.dll" v0.0 ts=3D2001/4/24 23:29=0D
175k 2002/01/09 C:\cygwin\bin\cygncurses++6.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygncurses++6.dll" v0.0 ts=3D2002/1/8 23:03=0D
226k 2001/04/25 C:\cygwin\bin\cygncurses5.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygncurses5.dll" v0.0 ts=3D2001/4/24 23:17=0D
202k 2002/01/09 C:\cygwin\bin\cygncurses6.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygncurses6.dll" v0.0 ts=3D2002/1/8 23:03=0D
15k 2001/04/25 C:\cygwin\bin\cygpanel5.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygpanel5.dll" v0.0 ts=3D2001/4/24 23:27=0D
12k 2002/01/09 C:\cygwin\bin\cygpanel6.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygpanel6.dll" v0.0 ts=3D2002/1/8 23:03=0D
40k 2001/11/21 C:\cygwin\bin\cygpcre.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygpcre.dll" v0.0 ts=3D2001/11/21 15:15=0D
39k 2001/11/21 C:\cygwin\bin\cygpcreposix.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygpcreposix.dll" v0.0 ts=3D2001/11/21 15:15=0D
175k 2002/07/22 C:\cygwin\bin\cygpng10.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygpng10.dll" v0.0 ts=3D2002/7/22 9:51=0D
179k 2002/07/22 C:\cygwin\bin\cygpng12.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygpng12.dll" v0.0 ts=3D2002/7/22 10:03=0D
170k 2002/01/21 C:\cygwin\bin\cygpng2.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygpng2.dll" v0.0 ts=3D2002/1/20 18:05=0D
22k 2002/06/09 C:\cygwin\bin\cygpopt-0.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygpopt-0.dll" v0.0 ts=3D2002/6/8 23:45=0D
108k 2001/06/28 C:\cygwin\bin\cygreadline4.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygreadline4.dll" v0.0 ts=3D2001/1/6 21:34=0D
127k 2002/10/10 C:\cygwin\bin\cygreadline5.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygreadline5.dll" v0.0 ts=3D2002/10/10 11:28=0D
169k 2002/11/09 C:\cygwin\bin\cygssl.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygssl.dll" v0.0 ts=3D2002/11/9 2:56=0D
390k 2000/12/05 C:\cygwin\bin\cygtcl80.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygtcl80.dll" v0.0 ts=3D2000/11/25 18:39=0D
5k 2000/12/05 C:\cygwin\bin\cygtclpip80.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
10k 2000/12/05 C:\cygwin\bin\cygtclreg80.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygtclreg80.dll" v0.0 ts=3D2000/11/25 18:39=0D
253k 2002/02/10 C:\cygwin\bin\cygtiff3.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygtiff3.dll" v0.0 ts=3D2002/2/10 1:34=0D
623k 2000/12/05 C:\cygwin\bin\cygtk80.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygtk80.dll" v0.0 ts=3D2000/11/25 18:43=0D
25k 2002/07/14 C:\cygwin\bin\cygungif-4.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygungif-4.dll" v0.0 ts=3D2002/7/14 8:58=0D
633k 2002/07/22 C:\cygwin\bin\cygxml2-2.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygxml2-2.dll" v0.0 ts=3D2002/7/22 0:29=0D
41k 2002/01/20 C:\cygwin\bin\cygXpm-noX4.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygXpm-noX4.dll" v0.0 ts=3D2002/1/20 11:49=0D
46k 2002/01/20 C:\cygwin\bin\cygXpm-X4.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygXpm-X4.dll" v0.0 ts=3D2002/1/20 11:50=0D
152k 2002/03/17 C:\cygwin\bin\cygxslt-1.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygxslt-1.dll" v0.0 ts=3D2002/3/16 23:19=0D
15k 2002/03/17 C:\cygwin\bin\cygxsltbreakpoint-1.dll - os=3D4.0 =
img=3D1.0 sys=3D4.0=0D
"cygxsltbreakpoint-1.dll" v0.0 ts=3D2002/3/16 23:24=0D
50k 2002/03/12 C:\cygwin\bin\cygz.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygz.dll" v0.0 ts=3D2002/3/11 21:38=0D
906k 2002/11/07 C:\cygwin\bin\cygwin1.dll - os=3D4.0 img=3D1.0 =
sys=3D4.0=0D
"cygwin1.dll" v0.0 ts=3D2002/11/7 11:57=0D
Cygwin DLL version info:=0D
DLL version: 1.3.15=0D
DLL epoch: 19=0D
DLL bad signal mask: 19005=0D
DLL old termios: 5=0D
DLL malloc env: 28=0D
API major: 0=0D
API minor: 63=0D
Shared data: 3=0D
DLL identifier: cygwin1=0D
Mount registry: 2=0D
Cygnus registry name: Cygnus Solutions=0D
Cygwin registry name: Cygwin=0D
Program options name: Program Options=0D
Cygwin mount registry name: mounts v2=0D
Cygdrive flags: cygdrive flags=0D
Cygdrive prefix: cygdrive prefix=0D
Cygdrive default prefix: =0D
Build date: Thu Nov 7 13:57:47 EST 2002=0D
CVS tag: cygwin-1-3-15-1=0D
Shared id: cygwin1S3=0D
=0D
41k 2002/05/14 C:\cygwin\usr\X11R6\bin\cygPropList-0.dll - os=3D4.0 =
img=3D1.0 sys=3D4.0=0D
"cygPropList-0.dll" v0.0 ts=3D2002/5/13 21:13=0D
=0D
Cygwin Package Information=0D
Last downloaded files to: C:\cygwin\setup=0D
Last downloaded files from: =
http://mirrors.rcn.net/pub/sourceware/cygwin=0D
=0D
Package Version =0D
ELFIO 1.0.0-1 =0D
WindowMaker 0.80.0-2 =0D
XFree86-base 4.2.0-1 =0D
XFree86-bin 4.2.0-2 =0D
XFree86-doc 4.2.0-1 =0D
XFree86-etc 4.2.0-1 =0D
XFree86-f100 4.2.0-2 =0D
XFree86-fcyr 4.2.0-2 =0D
XFree86-fenc 4.2.0-2 =0D
XFree86-fnts 4.2.0-2 =0D
XFree86-fscl 4.2.0-2 =0D
XFree86-fsrv 4.2.0-1 =0D
XFree86-html 4.2.0-1 =0D
XFree86-jdoc 4.2.0-1 =0D
XFree86-lib 4.2.0-3 =0D
XFree86-man 4.2.0-1 =0D
XFree86-nest 4.2.0-1 =0D
XFree86-prog 4.2.0-1 =0D
XFree86-prt 4.2.0-1 =0D
XFree86-ps 4.2.0-1 =0D
XFree86-startup-scripts4.2.0-3 =0D
XFree86-vfb 4.2.0-1 =0D
XFree86-xserv 4.2.0-15 =0D
Xaw3d 1.5-1 =0D
_update-info-dir 00090-1 =0D
apache 1.3.24-5 =0D
ash 20020731-1 =0D
astyle 1.15.3-3 =0D
autoconf 2.54-1 =0D
autoconf-devel 2.54-1 =0D
autoconf-stable 2.13-4 =0D
automake 1.7.1-1 =0D
automake-devel 1.7.1-1 =0D
automake-stable 1.4p5-5 =0D
base-files 1.0-1 =0D
base-passwd 1.0-1 =0D
bash 2.05b-7 =0D
bc 1.06-1 =0D
binutils 20021107-2 =0D
bison 1.75-1 =0D
byacc 1.9-1 =0D
bzip2 1.0.2-2 =0D
ccache 1.9-1 =0D
cgoban 1.9.12-1 =0D
clear 1.0-1 =0D
cpio 2.4.2 =0D
cron 3.0.1-7 =0D
crypt 1.0-1 =0D
ctags 5.2-1 =0D
curl 7.10.1-1 =0D
cvs 1.11.0-1 =0D
cygrunsrv 0.95-1 =0D
cygutils 1.1.3-1 =0D
cygwin 1.3.15-2 =0D
cygwin-doc 1.2-1 =0D
db2 2.7.7-4 =0D
db3.1 3.1.17-2 =0D
dejagnu 20010117-1 =0D
diff 1.0-1 =0D
diffutils 2.8.1-1 =0D
dpkg 1.10.4-2 =0D
ed 0.2-1 =0D
emacs 21.2-8 =0D
emacs-X11 21.2-8 =0D
emacs-el 21.2-8 =0D
enscript 1.6.3-3 =0D
exim 4.10-2 =0D
expat 1.95.5-1 =0D
expect 20010117-1 =0D
fetchmail 6.1.2-1 =0D
figlet 2.2-1 =0D
file 3.37-1 =0D
fileutils 4.1-1 =0D
findutils 4.1.7-4 =0D
flex 2.5.4-2 =0D
fortune 1.8-2 =0D
fvwm 2.4.7-2 =0D
gawk 3.1.1-5 =0D
gcc 3.2-3 =0D
gcc-mingw 3.2-20020817-1 =0D
gdb 20010428-3 =0D
gdbm 1.8.0-4 =0D
gettext 0.11.5-1 =0D
gettext-devel 0.11.5-1 =0D
ghostscript 7.05-2 =0D
ghostscript-base 7.05-2 =0D
ghostscript-x11 7.05-2 =0D
gnugo 3.2-1 =0D
gnupg 1.2.1-1 =0D
gperf 0.0 =0D
grep 2.5-1 =0D
groff 1.17.2-1 =0D
gsl 1.1.1-1 =0D
guile 1.6.0-1 =0D
guile-devel 1.6.0-1 =0D
guile-doc 1.6.0-1 =0D
gzip 1.3.3-4 =0D
indent 2.2.8-1 =0D
inetutils 1.3.2-19 =0D
irc 20010101-1 =0D
jbigkit 1.2-6 =0D
jpeg 6b-7 =0D
keychain 1.9-1 =0D
less 374-1 =0D
lesstif 0.93.18-3 =0D
libPropList 0.10.1-3 =0D
libbz2_0 1.0.2-1 =0D
libbz2_1 1.0.2-2 =0D
libcharset1 1.8-2 =0D
libdb2 2.7.7-4 =0D
libdb2-devel 2.7.7-4 =0D
libdb3.1 3.1.17-2 =0D
libdb3.1-devel 3.1.17-2 =0D
libguile12 1.6.0-1 =0D
libguile14 1.5.6-5 =0D
libiconv 1.8-2 =0D
libiconv2 1.8-2 =0D
libintl 0.10.38-3 =0D
libintl1 0.10.40-1 =0D
libintl2 0.11.5-1 =0D
libkpathsea3 20020911-1 =0D
libltdl3 20020705-2 =0D
libncurses5 5.2-1 =0D
libncurses6 5.2-8 =0D
libpng 1.2.4-2 =0D
libpng10 1.0.14-2 =0D
libpng10-devel 1.0.14-2 =0D
libpng12 1.2.4-2 =0D
libpng12-devel 1.2.4-2 =0D
libpng2 1.0.12-1 =0D
libpopt0 1.6.4-4 =0D
libreadline4 4.1-2 =0D
libreadline5 4.3-2 =0D
libtool 20020705-1 =0D
libtool-devel 20020705-2 =0D
libtool-stable 1.4.3-1 =0D
libungif 4.1.0-2 =0D
libxml2 2.4.23-1 =0D
libxslt 1.0.13-1 =0D
lilypond 1.6.5-1 =0D
lilypond-doc 1.6.5-1 =0D
links 0.96-1 =0D
login 1.7-1 =0D
lynx 2.8.4-1 =0D
m4 0.0 =0D
make 3.79.1-7 =0D
man 1.5g-2 =0D
mc 4.5.55-1 =0D
mingw-runtime 2.2-1 =0D
mktemp 1.4-1 =0D
mod_auth_mysql 1.11-1 =0D
mod_auth_ntsec 1.7-1 =0D
mod_dav 1.0.3-1.3.6-1 =0D
mod_php4 4.2.0-1 =0D
mod_ssl 2.8.8-1.3.24-1 =0D
more 2.11o-1 =0D
mt 2.0.1-1 =0D
mutt 1.4-1 =0D
nano 1.1.10-1 =0D
ncftp 3.1.4-1 =0D
ncurses 5.2-8 =0D
newlib-man 20020801 =0D
openbox 0.99.1-3 =0D
opengl 1.1.0-6 =0D
openssh 3.5p1-2 =0D
openssl 0.9.6g-2 =0D
openssl-devel 0.9.6g-2 =0D
patch 2.5-3 =0D
pcre 3.7-1 =0D
perl 5.6.1-2 =0D
pine 4.44-4 =0D
pinfo 0.6.6p1-1 =0D
pkgconfig 0.12.0-1 =0D
popt 1.6.4-4 =0D
postgresql 7.2.3-2 =0D
procmail 3.22-7 =0D
procps 010801-2 =0D
python 2.2.2-1 =0D
rcs 5.7-3 =0D
readline 4.3-2 =0D
robots 2.0-1 =0D
rsync 2.5.5-2 =0D
rxvt 2.7.2-14 =0D
sed 4.0.1-1 =0D
sh-utils 2.0-2 =0D
sharutils 4.2.1-2 =0D
shutdown 1.2-2 =0D
squid 2.4.STABLE7-1 =0D
ssmtp 2.38.7-3 =0D
swig 1.3.16-1 =0D
tar 1.13.25-1 =0D
tcltk 20001125-1 =0D
tcp_wrappers 7.6-1 =0D
tcsh 6.11.00-4 =0D
termcap 20020930-1 =0D
terminfo 5.2-3 =0D
tetex 20020911-1 =0D
tetex-base 20020911-1 =0D
tetex-beta 20020911-1 =0D
tetex-bin 20020911-1 =0D
tetex-devel 20020911-1 =0D
tetex-doc 20020911-1 =0D
tetex-extra 20020911-1 =0D
tetex-tiny 20020911-1 =0D
tetex-x11 20020911-1 =0D
texinfo 4.2-4 =0D
texmf 20020911-1 =0D
texmf-base 20020911-1 =0D
texmf-doc 20020911-1 =0D
texmf-extra 20020911-1 =0D
texmf-tiny 20020911-1 =0D
textutils 2.0.21-1 =0D
tidy 020822-1 =0D
tiff 3.5.7-1 =0D
time 1.7-1 =0D
ttcp 19980512-1 =0D
ucl 1.01-1 =0D
units 1.77-1 =0D
unzip 5.50-1 =0D
upx 1.21-1 =0D
vim 6.1-2 =0D
w32api 2.0-1 =0D
wget 1.8.2-1 =0D
which 1.5-1 =0D
whois 4.5.17-1 =0D
x2x 1.27-2 =0D
xpm-nox 4.2.0-1 =0D
zip 2.3-2 =0D
zlib 1.1.4-1 =0D
zsh 4.0.4-1 =0D
=0D
Use -h to see help about each section=0D
------=_NextPart_000_00C7_01C28FDB.50181300
Content-Type: text/plain; charset=us-ascii
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
------=_NextPart_000_00C7_01C28FDB.50181300--
- Raw text -