Mirror of the gdb mailing list
 help / color / mirror / Atom feed
* Problems building build-gdb20001125-1 on winnt (cygwin)
@ 2001-04-03  9:57 Mack Lobell
  2001-04-03 12:38 ` Christopher Faylor
  2001-04-05 23:15 ` Mo DeJong
  0 siblings, 2 replies; 5+ messages in thread
From: Mack Lobell @ 2001-04-03  9:57 UTC (permalink / raw)
  To: gdb

In regards to my last question (Ref. 
F13626yJKs8TAGUjGnA0000804b@hotmail.com ). I downloaded two versions from the 
GDB webpage, GDB 5.0 and GDB+Insigth5.0. The pure GDB 5.0 (without Insight) 
compiles and works under cygwin, no problems. When i compile Insight i get 
the same problem as with build-gdb20001125-1.

The binary version of build-gdb20001125-1 works, and the help says version 
5.0, so someone must have been able to build?

Anyway, the problem lies in the following code:
#ifndef VOID
#define VOID void
typedef char CHAR;
typedef short SHORT;
typedef long LONG;
#endif
typedef CHAR CCHAR;
typedef unsigned char UCHAR,*PUCHAR;
typedef unsigned short USHORT,*PUSHORT;
typedef unsigned long ULONG,*PULONG;
typedef char *PSZ;

Somehow VOID hasn't been defined, hence compiler error when trying to use 
CHAR, SHORT and LONG.

Where should VOID be defined?

I think i'll wait for the patches, maybe i'll try the "CC='gcc -mwin32' " 
tip.

Regards!


_________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com .


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

* Re: Problems building build-gdb20001125-1 on winnt (cygwin)
  2001-04-03  9:57 Problems building build-gdb20001125-1 on winnt (cygwin) Mack Lobell
@ 2001-04-03 12:38 ` Christopher Faylor
  2001-04-05 23:15 ` Mo DeJong
  1 sibling, 0 replies; 5+ messages in thread
From: Christopher Faylor @ 2001-04-03 12:38 UTC (permalink / raw)
  To: gdb

On Tue, Apr 03, 2001 at 04:57:05PM +0000, Mack Lobell wrote:
>In regards to my last question (Ref. 
> F13626yJKs8TAGUjGnA0000804b@hotmail.com ). I downloaded two versions from the 
>GDB webpage, GDB 5.0 and GDB+Insigth5.0. The pure GDB 5.0 (without Insight) 
>compiles and works under cygwin, no problems. When i compile Insight i get 
>the same problem as with build-gdb20001125-1.
>
>The binary version of build-gdb20001125-1 works, and the help says version 
>5.0, so someone must have been able to build?
>
>Anyway, the problem lies in the following code:
>#ifndef VOID
>#define VOID void
>typedef char CHAR;
>typedef short SHORT;
>typedef long LONG;
>#endif
>typedef CHAR CCHAR;
>typedef unsigned char UCHAR,*PUCHAR;
>typedef unsigned short USHORT,*PUSHORT;
>typedef unsigned long ULONG,*PULONG;
>typedef char *PSZ;
>
>Somehow VOID hasn't been defined, hence compiler error when trying to use 
>CHAR, SHORT and LONG.
>
>Where should VOID be defined?
>
>I think i'll wait for the patches, maybe i'll try the "CC='gcc -mwin32' " 
>tip.

CC='gcc -mwin32' should fix this.

cgf


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

* Re: Problems building build-gdb20001125-1 on winnt (cygwin)
  2001-04-03  9:57 Problems building build-gdb20001125-1 on winnt (cygwin) Mack Lobell
  2001-04-03 12:38 ` Christopher Faylor
@ 2001-04-05 23:15 ` Mo DeJong
  2001-04-06  7:15   ` Christopher Faylor
  1 sibling, 1 reply; 5+ messages in thread
From: Mo DeJong @ 2001-04-05 23:15 UTC (permalink / raw)
  To: gdb

On Tue, 3 Apr 2001, Mack Lobell wrote:

> In regards to my last question (Ref. 
> F13626yJKs8TAGUjGnA0000804b@hotmail.com ). I downloaded two versions from the 
> GDB webpage, GDB 5.0 and GDB+Insigth5.0. The pure GDB 5.0 (without Insight) 
> compiles and works under cygwin, no problems. When i compile Insight i get 
> the same problem as with build-gdb20001125-1.
> 
> The binary version of build-gdb20001125-1 works, and the help says version 
> 5.0, so someone must have been able to build?
> 
> Anyway, the problem lies in the following code:
> #ifndef VOID
> #define VOID void
> typedef char CHAR;
> typedef short SHORT;
> typedef long LONG;
> #endif
> typedef CHAR CCHAR;
> typedef unsigned char UCHAR,*PUCHAR;
> typedef unsigned short USHORT,*PUSHORT;
> typedef unsigned long ULONG,*PULONG;
> typedef char *PSZ;

You know, I ran into this same problem. The reason you
get this error with Insight is because it shows up in
the Tcl/Tk code, which is not part of regular gdb.
I have not had enough time to look into it (perhaps
next week), but I did find that the mingw version
of gcc is able to compile the code. I am
not sure if that helps, I just thought you
might like to know.

Mo DeJong
Red Hat Inc


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

* Re: Problems building build-gdb20001125-1 on winnt (cygwin)
  2001-04-05 23:15 ` Mo DeJong
@ 2001-04-06  7:15   ` Christopher Faylor
  0 siblings, 0 replies; 5+ messages in thread
From: Christopher Faylor @ 2001-04-06  7:15 UTC (permalink / raw)
  To: gdb

On Thu, Apr 05, 2001 at 11:15:09PM -0700, Mo DeJong wrote:
>On Tue, 3 Apr 2001, Mack Lobell wrote:
>> In regards to my last question (Ref. 
>> F13626yJKs8TAGUjGnA0000804b@hotmail.com ). I downloaded two versions from the 
>> GDB webpage, GDB 5.0 and GDB+Insigth5.0. The pure GDB 5.0 (without Insight) 
>> compiles and works under cygwin, no problems. When i compile Insight i get 
>> the same problem as with build-gdb20001125-1.
>> 
>> The binary version of build-gdb20001125-1 works, and the help says version 
>> 5.0, so someone must have been able to build?
>> #ifndef VOID
>> #define VOID void
>> typedef char CHAR;
>> typedef short SHORT;
>> typedef long LONG;
>> #endif
>> typedef CHAR CCHAR;
>> typedef unsigned char UCHAR,*PUCHAR;
>> typedef unsigned short USHORT,*PUSHORT;
>> typedef unsigned long ULONG,*PULONG;
>> typedef char *PSZ;
>
>You know, I ran into this same problem.  The reason you get this error
>with Insight is because it shows up in the Tcl/Tk code, which is not
>part of regular gdb.  I have not had enough time to look into it
>(perhaps next week), but I did find that the mingw version of gcc is
>able to compile the code.  I am not sure if that helps, I just thought
>you might like to know.

http://sources.redhat.com/ml/gdb/2001-04/msg00025.html
http://sources.redhat.com/ml/gdb/2001-04/msg00013.html

I suppose I'll probably be answering this question for the next year or so.

cgf


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

* Problems building build-gdb20001125-1 on winnt (cygwin)
@ 2001-04-02  8:17 Mack Lobell
  0 siblings, 0 replies; 5+ messages in thread
From: Mack Lobell @ 2001-04-02  8:17 UTC (permalink / raw)
  To: gdb

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

Hi!

I have a problem building build-gdb20001125-1 on my WinNT machine. I have 
downloaded the bin and the src from cygwin.com. The bin version works but i 
also want to be able to build from scratch.

I'm using gcc 2.95.3-1 (also downloaded from cygwin.com). I can se what the 
problem is but i don't know my way aroud the src (yet?). I have attached the 
configuration and make logs.

This is probably very easy for the experts.

Regards!
_________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com .

[-- Attachment #2: configure.log --]
[-- Type: text/plain, Size: 46497 bytes --]

Configuring for a i686-pc-cygwin host.
Created "Makefile" in /home/unknown/build-gdb20001125-1 using "mh-frag"
Configuring intl...
creating cache ../config.cache
checking for a BSD compatible install... /usr/bin/install -c
checking how to run the C preprocessor... gcc -E
checking whether make sets ${MAKE}... yes
checking for gcc... gcc
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking whether we are using GNU C... yes
checking whether gcc accepts -g... yes
checking for ranlib... ranlib
checking for POSIXized ISC... no
checking for ANSI C header files... yes
checking for working const... yes
checking for inline... inline
checking for off_t... yes
checking for size_t... yes
checking for working alloca.h... no
checking for alloca... yes
checking for unistd.h... yes
checking for getpagesize... yes
checking for working mmap... no
checking for argz.h... no
checking for limits.h... yes
checking for locale.h... yes
checking for nl_types.h... no
checking for malloc.h... yes
checking for string.h... yes
checking for unistd.h... (cached) yes
checking for values.h... no
checking for sys/param.h... yes
checking for getcwd... yes
checking for munmap... yes
checking for putenv... yes
checking for setenv... yes
checking for setlocale... yes
checking for strchr... yes
checking for strcasecmp... yes
checking for __argz_count... no
checking for __argz_stringify... no
checking for __argz_next... no
checking for stpcpy... no
checking for LC_MESSAGES... no
checking whether NLS is requested... yes
checking whether included gettext is requested... no
checking for libintl.h... yes
checking for gettext in libc... no
checking for bindtextdomain in -lintl... yes
checking for gettext in libintl... no
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
updating cache ../config.cache
creating ./config.status
creating Makefile
creating config.h
linking /gdb-20001125-1/intl/libgettext.h to libintl.h
Configuring mmalloc...
loading cache ../config.cache
checking for gcc... (cached) gcc
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking host system type... i686-pc-cygwin
checking build system type... i686-pc-cygwin
checking for ar... ar
checking for ranlib... (cached) ranlib
checking how to run the C preprocessor... (cached) gcc -E
checking for unistd.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... (cached) no
checking for limits.h... (cached) yes
checking for stddef.h... yes
checking for unistd.h... (cached) yes
checking whether sbrk must be declared... no
checking whether getpagesize must be declared... no
updating cache ../config.cache
creating ./config.status
creating Makefile
Configuring libiberty...
loading cache ../config.cache
checking host system type... i686-pc-cygwin
checking build system type... i686-pc-cygwin
checking for ar... (cached) ar
checking for ranlib... (cached) ranlib
checking for gcc... (cached) gcc
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for POSIXized ISC... no
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking how to run the C preprocessor... (cached) gcc -E
checking for sys/file.h... yes
checking for sys/param.h... (cached) yes
checking for limits.h... (cached) yes
checking for stdlib.h... yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking for strings.h... yes
checking for sys/time.h... yes
checking for time.h... yes
checking for sys/resource.h... yes
checking for sys/stat.h... yes
checking for sys/mman.h... yes
checking for fcntl.h... yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether errno must be declared... no
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking for asprintf... no
checking for atexit... yes
checking for basename... no
checking for bcmp... yes
checking for bcopy... yes
checking for bzero... yes
checking for calloc... yes
checking for clock... yes
checking for getcwd... (cached) yes
checking for getpagesize... (cached) yes
checking for index... yes
checking for insque... no
checking for memchr... yes
checking for memcmp... yes
checking for memcpy... yes
checking for memmove... yes
checking for memset... yes
checking for mkstemps... no
checking for putenv... (cached) yes
checking for random... yes
checking for rename... yes
checking for rindex... yes
checking for setenv... (cached) yes
checking for sigsetmask... no
checking for strcasecmp... (cached) yes
checking for strchr... (cached) yes
checking for strdup... yes
checking for strncasecmp... yes
checking for strrchr... yes
checking for strstr... yes
checking for strtod... yes
checking for strtol... yes
checking for strtoul... yes
checking for tmpnam... yes
checking for vasprintf... no
checking for vfprintf... yes
checking for vprintf... yes
checking for vsprintf... yes
checking for waitpid... yes
checking for working alloca.h... (cached) no
checking for alloca... (cached) yes
checking for ANSI C header files... (cached) yes
checking for pid_t... yes
checking for vfork.h... no
checking for working vfork... yes
checking for sys_errlist... no
checking for sys_nerr... no
checking for sys_siglist... no
checking for getrusage... yes
checking for on_exit... no
checking for psignal... no
checking for strerror... yes
checking for strsignal... yes
checking for sysconf... yes
checking for times... yes
checking for sbrk... yes
checking for gettimeofday... yes
checking for unistd.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... (cached) no
checking for working strncmp... yes
updating cache ../config.cache
creating ./config.status
creating Makefile
creating testsuite/Makefile
creating config.h
Configuring opcodes...
loading cache ../config.cache
checking for Cygwin environment... yes
checking for mingw32 environment... no
checking host system type... i686-pc-cygwin
checking target system type... i686-pc-cygwin
checking build system type... i686-pc-cygwin
checking for gcc... (cached) gcc
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for POSIXized ISC... no
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking whether build environment is sane... yes
checking whether make sets ${MAKE}... (cached) yes
checking for working aclocal... found
checking for working autoconf... found
checking for working automake... found
checking for working autoheader... found
checking for working makeinfo... found
checking for ar... (cached) ar
checking for ranlib... (cached) ranlib
checking for ld used by GCC... /usr/i686-pc-cygwin/bin/ld.exe
checking if the linker (/usr/i686-pc-cygwin/bin/ld.exe) is GNU ld... yes
checking for /usr/i686-pc-cygwin/bin/ld.exe option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognise dependant libraries... file_magic file format pei*-i386(.*architecture: i386)?
checking for object suffix... o
checking for executable suffix... .exe
checking for ranlib... (cached) ranlib
checking for strip... strip
updating cache ../config.cache
loading cache ../config.cache within ltconfig
checking for objdir... .libs
checking for gcc option to produce PIC... -DDLL_EXPORT -DPIC
checking if gcc PIC flag -DDLL_EXPORT -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -fno-rtti -fno-exceptions ... yes
checking whether the linker (/usr/i686-pc-cygwin/bin/ld.exe) supports shared libraries... yes
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking dynamic linker characteristics... Win32 ld.exe
checking command to parse /usr/bin/nm -B output... ok
checking if libtool supports shared libraries... yes
checking if package supports dlls... no
checking whether to build shared libraries... no
checking whether to build static libraries... yes
creating libtool
updating cache ../config.cache
loading cache ../config.cache
checking whether to enable maintainer-specific portions of Makefiles... no
checking for executable suffix... (cached) .exe
checking for gcc... (cached) gcc
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking how to run the C preprocessor... (cached) gcc -E
checking for ranlib... (cached) ranlib
checking for ANSI C header files... (cached) yes
checking for working const... (cached) yes
checking for inline... (cached) inline
checking for off_t... (cached) yes
checking for size_t... (cached) yes
checking for working alloca.h... (cached) no
checking for alloca... (cached) yes
checking for unistd.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... (cached) no
checking for argz.h... (cached) no
checking for limits.h... (cached) yes
checking for locale.h... (cached) yes
checking for nl_types.h... (cached) no
checking for malloc.h... (cached) yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking for values.h... (cached) no
checking for sys/param.h... (cached) yes
checking for getcwd... (cached) yes
checking for munmap... (cached) yes
checking for putenv... (cached) yes
checking for setenv... (cached) yes
checking for setlocale... (cached) yes
checking for strchr... (cached) yes
checking for strcasecmp... (cached) yes
checking for __argz_count... (cached) no
checking for __argz_stringify... (cached) no
checking for __argz_next... (cached) no
checking for LC_MESSAGES... (cached) no
checking whether NLS is requested... yes
checking whether included gettext is requested... no
checking for libintl.h... (cached) yes
checking for gettext in libc... (cached) no
checking for bindtextdomain in -lintl... (cached) yes
checking for gettext in libintl... (cached) no
checking for msgfmt... (cached) /usr/bin/msgfmt
checking for gmsgfmt... (cached) /usr/bin/msgfmt
checking for xgettext... (cached) /usr/bin/xgettext
checking for a BSD compatible install... /usr/bin/install -c
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking for stdlib.h... (cached) yes
updating cache ../config.cache
creating ./config.status
creating Makefile
creating po/Makefile.in
creating config.h
Configuring bfd...
loading cache ../config.cache
checking for Cygwin environment... (cached) yes
checking for mingw32 environment... (cached) no
checking host system type... i686-pc-cygwin
checking target system type... i686-pc-cygwin
checking build system type... i686-pc-cygwin
checking for gcc... (cached) gcc
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for POSIXized ISC... no
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking whether build environment is sane... yes
checking whether make sets ${MAKE}... (cached) yes
checking for working aclocal... found
checking for working autoconf... found
checking for working automake... found
checking for working autoheader... found
checking for working makeinfo... found
checking for ar... (cached) ar
checking for ranlib... (cached) ranlib
checking for ld used by GCC... (cached) /usr/i686-pc-cygwin/bin/ld.exe
checking if the linker (/usr/i686-pc-cygwin/bin/ld.exe) is GNU ld... (cached) yes
checking for /usr/i686-pc-cygwin/bin/ld.exe option to reload object files... (cached) -r
checking for BSD-compatible nm... (cached) /usr/bin/nm -B
checking whether ln -s works... (cached) yes
checking how to recognise dependant libraries... (cached) file_magic file format pei*-i386(.*architecture: i386)?
checking for object suffix... (cached) o
checking for executable suffix... (cached) .exe
checking for ranlib... (cached) ranlib
checking for strip... (cached) strip
updating cache ../config.cache
loading cache ../config.cache within ltconfig
checking for objdir... .libs
checking for gcc option to produce PIC...  -DDLL_EXPORT -DPIC
checking if gcc PIC flag  -DDLL_EXPORT -DPIC works... (cached) yes
checking if gcc static flag -static works... (cached) yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -fno-rtti -fno-exceptions ... yes
checking whether the linker (/usr/i686-pc-cygwin/bin/ld.exe) supports shared libraries... yes
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking dynamic linker characteristics... Win32 ld.exe
checking command to parse /usr/bin/nm -B output... ok
checking if libtool supports shared libraries... yes
checking if package supports dlls... no
checking whether to build shared libraries... no
checking whether to build static libraries... yes
creating libtool
updating cache ../config.cache
loading cache ../config.cache
checking whether to enable maintainer-specific portions of Makefiles... no
checking for executable suffix... (cached) .exe
checking for gcc... (cached) gcc
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking how to run the C preprocessor... (cached) gcc -E
checking for ranlib... (cached) ranlib
checking for ANSI C header files... (cached) yes
checking for working const... (cached) yes
checking for inline... (cached) inline
checking for off_t... (cached) yes
checking for size_t... (cached) yes
checking for working alloca.h... (cached) no
checking for alloca... (cached) yes
checking for unistd.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... (cached) no
checking for argz.h... (cached) no
checking for limits.h... (cached) yes
checking for locale.h... (cached) yes
checking for nl_types.h... (cached) no
checking for malloc.h... (cached) yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking for values.h... (cached) no
checking for sys/param.h... (cached) yes
checking for getcwd... (cached) yes
checking for munmap... (cached) yes
checking for putenv... (cached) yes
checking for setenv... (cached) yes
checking for setlocale... (cached) yes
checking for strchr... (cached) yes
checking for strcasecmp... (cached) yes
checking for __argz_count... (cached) no
checking for __argz_stringify... (cached) no
checking for __argz_next... (cached) no
checking for LC_MESSAGES... (cached) no
checking whether NLS is requested... yes
checking whether included gettext is requested... no
checking for libintl.h... (cached) yes
checking for gettext in libc... (cached) no
checking for bindtextdomain in -lintl... (cached) yes
checking for gettext in libintl... (cached) no
checking for msgfmt... (cached) /usr/bin/msgfmt
checking for gmsgfmt... (cached) /usr/bin/msgfmt
checking for xgettext... (cached) /usr/bin/xgettext
checking for a BSD compatible install... /usr/bin/install -c
checking for stddef.h... (cached) yes
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for time.h... (cached) yes
checking for unistd.h... (cached) yes
checking for fcntl.h... (cached) yes
checking for sys/file.h... (cached) yes
checking for sys/time.h... (cached) yes
checking whether time.h and sys/time.h may both be included... (cached) yes
checking for dirent.h that defines DIR... yes
checking for opendir in -ldir... no
checking for fcntl... yes
checking for getpagesize... (cached) yes
checking for setitimer... yes
checking for sysconf... (cached) yes
checking for fdopen... yes
checking for getuid... yes
checking for getgid... yes
checking whether strstr must be declared... no
checking whether malloc must be declared... no
checking whether realloc must be declared... no
checking whether free must be declared... no
checking whether getenv must be declared... no
checking for sys/procfs.h... yes
checking for prstatus_t in sys/procfs.h... no
checking for prstatus32_t in sys/procfs.h... no
checking for prstatus_t.pr_who in sys/procfs.h... no
checking for prstatus32_t.pr_who in sys/procfs.h... no
checking for pstatus_t in sys/procfs.h... no
checking for pxstatus_t in sys/procfs.h... no
checking for pstatus32_t in sys/procfs.h... no
checking for prpsinfo_t in sys/procfs.h... no
checking for prpsinfo32_t in sys/procfs.h... no
checking for psinfo_t in sys/procfs.h... no
checking for psinfo32_t in sys/procfs.h... no
checking for lwpstatus_t in sys/procfs.h... no
checking for lwpxstatus_t in sys/procfs.h... no
checking for lwpstatus_t.pr_context in sys/procfs.h... no
checking for lwpstatus_t.pr_reg in sys/procfs.h... no
checking for win32_pstatus_t in sys/procfs.h... yes
checking for unistd.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... (cached) no
checking for madvise... no
checking for mprotect... yes
updating cache ../config.cache
creating ./config.status
creating Makefile
creating doc/Makefile
creating bfd-in3.h
creating po/Makefile.in
creating config.h
Configuring readline...
loading cache ../config.cache
checking host system type... i686-pc-cygwin
checking for gcc... (cached) gcc
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking how to run the C preprocessor... (cached) gcc -E
checking for minix/config.h... no
checking whether gcc needs -traditional... no
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking for ar... (cached) ar
checking for ranlib... (cached) ranlib
checking return type of signal handlers... void
checking whether stat file-mode macros are broken... no
checking for dirent.h that defines DIR... (cached) yes
checking for opendir in -ldir... (cached) no
checking for lstat... yes
checking for memmove... (cached) yes
checking for putenv... (cached) yes
checking for select... yes
checking for setenv... (cached) yes
checking for setlocale... (cached) yes
checking for strcasecmp... (cached) yes
checking for tcgetattr... yes
checking for working strcoll... yes
checking for unistd.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for varargs.h... yes
checking for stdarg.h... yes
checking for string.h... (cached) yes
checking for sys/ptem.h... no
checking for sys/pte.h... no
checking for sys/stream.h... no
checking for sys/select.h... yes
checking for termcap.h... yes
checking for termios.h... yes
checking for termio.h... yes
checking for sys/file.h... (cached) yes
checking for locale.h... (cached) yes
checking for type of signal functions... posix
checking if signal handlers must be reinstalled when invoked... no
checking for presence of POSIX-style sigsetjmp/siglongjmp... present
checking for lstat... yes
checking whether programs are able to redeclare getpw functions... yes
checking whether or not strcoll and strcmp differ... no
checking whether signal handlers are of type void... yes
checking for TIOCGWINSZ in sys/ioctl.h... no
checking for TIOCSTAT in sys/ioctl.h... no
checking for FIONREAD in sys/ioctl.h... no
checking for speed_t in sys/types.h... no
checking for struct winsize in sys/ioctl.h and termios.h... termios.h
checking if struct dirent has a d_ino member... yes
checking if struct dirent has a d_fileno member... no
checking for tgetent in -ltermcap... yes
checking which library has the termcap functions... using libtermcap
checking configuration for building shared libraries... supported
updating cache ../config.cache
creating ./config.status
creating Makefile
creating doc/Makefile
creating examples/Makefile
creating shlib/Makefile
creating config.h
Configuring tcl...
loading cache ../config.cache
checking host system type... i686-pc-cygwin
checking whether make sets ${MAKE}... (cached) yes
updating cache ../config.cache
creating ./config.status
creating Makefile
configuring in win
running /bin/sh /gdb-20001125-1/tcl/win/configure  --host=i686-pc-cygwin --target=i686-pc-cygwin --cache-file=../../config.cache --srcdir=/gdb-20001125-1/tcl/win
loading cache ../../config.cache
checking host system type... i686-pc-cygwin
checking for gcc... (cached) gcc
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for object suffix... (cached) o
checking build system type... i686-pc-cygwin
checking for nm... nm
checking for as... as
checking for ld... ld
checking for ranlib... (cached) ranlib
checking for dlltool... dlltool
checking for windres... windres
checking for a BSD compatible install... (cached) /usr/bin/install -c
updating cache ../../config.cache
creating ./config.status
creating Makefile
creating ../unix/tclConfig.sh
configuring in cygwin
running /bin/sh /gdb-20001125-1/tcl/cygwin/configure  --host=i686-pc-cygwin --target=i686-pc-cygwin --cache-file=../../config.cache --srcdir=/gdb-20001125-1/tcl/cygwin
loading cache ../../config.cache
checking host system type... i686-pc-cygwin
checking target system type... i686-pc-cygwin
checking build system type... i686-pc-cygwin
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking whether build environment is sane... yes
checking whether make sets ${MAKE}... (cached) yes
checking for working aclocal... found
checking for working autoconf... found
checking for working automake... found
checking for working autoheader... found
checking for working makeinfo... found
checking whether to enable maintainer-specific portions of Makefiles... no
checking for Cygwin environment... (cached) yes
checking for mingw32 environment... (cached) no
checking for executable suffix... (cached) .exe
checking for gcc... (cached) gcc
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for ar... (cached) ar
checking for ranlib... (cached) ranlib
checking for a BSD compatible install... /usr/bin/install -c
updating cache ../../config.cache
creating ./config.status
creating Makefile
Configuring tk...
loading cache ../config.cache
checking host system type... i686-pc-cygwin
checking whether make sets ${MAKE}... (cached) yes
updating cache ../config.cache
creating ./config.status
creating Makefile
configuring in win
running /bin/sh /gdb-20001125-1/tk/win/configure  --host=i686-pc-cygwin --target=i686-pc-cygwin --cache-file=../../config.cache --srcdir=/gdb-20001125-1/tk/win
loading cache ../../config.cache
checking host system type... i686-pc-cygwin
checking for gcc... (cached) gcc
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for object suffix... (cached) o
checking for a BSD compatible install... (cached) /usr/bin/install -c
updating cache ../../config.cache
creating ./config.status
creating Makefile
creating ../unix/tkConfig.sh
Configuring itcl...
loading cache ../config.cache
checking host system type... i686-pc-cygwin
checking whether make sets ${MAKE}... (cached) yes
updating cache ../config.cache
creating ./config.status
creating Makefile
configuring in itcl/win
running /bin/sh /gdb-20001125-1/itcl/itcl/win/configure  --host=i686-pc-cygwin --target=i686-pc-cygwin --cache-file=../../../config.cache --srcdir=/gdb-20001125-1/itcl/itcl/win
loading cache ../../../config.cache
checking host system type... i686-pc-cygwin
checking for ranlib... (cached) ranlib
checking for gcc... (cached) gcc
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for object suffix... (cached) o
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking how to run the C preprocessor... (cached) gcc -E
checking for unistd.h... (cached) yes
checking for limits.h... (cached) yes
checking whether C compiler is gcc... yes
checking default compiler flags... -g -O2 -Wshadow -Wtraditional -Wall
checking stdlib.h... yes
checking for ANSI C header files... (cached) yes
checking for mode_t... (cached) yes
checking for pid_t... (cached) yes
checking for size_t... (cached) yes
checking for uid_t in sys/types.h... (cached) yes
checking for connect... (cached) yes
checking for gethostbyname... yes
checking for sin... (cached) yes
checking for main in -lieee... (cached) no
checking for memmove... (cached) yes
checking for strtod... (cached) yes
checking for Solaris 2.4 strtod bug... ok
optlibs: not found
updating cache ../../../config.cache
creating ./config.status
creating Makefile
creating ../unix/pkgIndex.tcl
creating ../itclConfig.sh
configuring in itk/win
running /bin/sh /gdb-20001125-1/itcl/itk/win/configure  --host=i686-pc-cygwin --target=i686-pc-cygwin --cache-file=../../../config.cache --srcdir=/gdb-20001125-1/itcl/itk/win
loading cache ../../../config.cache
checking host system type... i686-pc-cygwin
checking for ranlib... (cached) ranlib
checking for gcc... (cached) gcc
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for object suffix... (cached) o
checking build system type... i686-pc-cygwin
checking for nm... (cached) nm
checking for as... (cached) as
checking for ld... (cached) ld
checking for dlltool... (cached) dlltool
checking for windres... (cached) windres
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking how to run the C preprocessor... (cached) gcc -E
checking for unistd.h... (cached) yes
checking for limits.h... (cached) yes
checking whether C compiler is gcc... (cached) yes
checking default compiler flags... -g -O2 -Wshadow -Wtraditional -Wall
checking stdlib.h... yes
checking for ANSI C header files... (cached) yes
checking for mode_t... (cached) yes
checking for pid_t... (cached) yes
checking for size_t... (cached) yes
checking for uid_t in sys/types.h... (cached) yes
checking which C compiler... gcc
checking how to run the C preprocessor... gcc -E
checking for limits.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for mode_t... (cached) yes
checking for pid_t... (cached) yes
checking for size_t... (cached) yes
checking for uid_t in sys/types.h... (cached) yes
checking for X... no
checking for X11 header files
Warning:  couldn't find any X11 include files.
checking for XCreateWindow in -lXwindow... no
couldn't find any!  Using -lX11.
checking for main in -lXbsd... no
checking for connect... (cached) yes
checking for gethostbyname... (cached) yes
checking for sin... (cached) yes
checking for main in -lieee... (cached) no
checking for memmove... (cached) yes
checking for strtod... (cached) yes
checking for Solaris 2.4 strtod bug... ok
updating cache ../../../config.cache
creating ./config.status
creating Makefile
creating ../unix/pkgIndex.tcl
creating ../itkConfig.sh
configuring in iwidgets3.0.0/unix
running /bin/sh /gdb-20001125-1/itcl/iwidgets3.0.0/unix/configure  --host=i686-pc-cygwin --target=i686-pc-cygwin --cache-file=../../../config.cache --srcdir=/gdb-20001125-1/itcl/iwidgets3.0.0/unix
loading cache ../../../config.cache
checking for prefix by checking for tclsh... /cygdrive/c/Tornado/host/x86-win32/bin/tclsh
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking for ranlib... (cached) ranlib
updating cache ../../../config.cache
creating ./config.status
creating Makefile
Configuring tix...
loading cache ../config.cache
checking host system type... i686-pc-cygwin
checking whether make sets ${MAKE}... (cached) yes
updating cache ../config.cache
creating ./config.status
creating Makefile
configuring in win
running /bin/sh /gdb-20001125-1/tix/win/configure  --host=i686-pc-cygwin --target=i686-pc-cygwin --cache-file=../../config.cache --srcdir=/gdb-20001125-1/tix/win
loading cache ../../config.cache
checking for gcc... (cached) gcc
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for object suffix... (cached) o
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking for Tcl configuration script... /home/unknown/build-gdb20001125-1/tcl/unix/tclConfig.sh
checking for Tk configuration script... /home/unknown/build-gdb20001125-1/tk/unix/tkConfig.sh
checking how to run the C preprocessor... (cached) gcc -E
checking for Tcl headers in the source tree... /gdb-20001125-1/tcl/generic
/gdb-20001125-1/tcl/generic
checking for Tk headers in the source tree... /gdb-20001125-1/tk/generic
found in /gdb-20001125-1/tk/generic
updating cache ../../config.cache
creating ./config.status
creating Makefile
creating ../tixConfig.sh
Configuring libgui...
loading cache ../config.cache
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking whether build environment is sane... yes
checking whether make sets ${MAKE}... (cached) yes
checking for working aclocal... found
checking for working autoconf... found
checking for working automake... found
checking for working autoheader... found
checking for working makeinfo... found
checking whether to enable maintainer-specific portions of Makefiles... no
checking for gcc... (cached) gcc
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for Cygwin environment... (cached) yes
checking for mingw32 environment... (cached) no
checking for executable suffix... (cached) .exe
checking for object suffix... (cached) o
checking for ranlib... (cached) ranlib
checking how to run the C preprocessor... (cached) gcc -E
checking for working alloca.h... (cached) no
checking for alloca... (cached) yes
checking for stddef.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for getopt.h... yes
checking for unistd.h... (cached) yes
checking for fcntl.h... (cached) yes
checking for sys/file.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking for raise... yes
checking for strdup... (cached) yes
checking for random... (cached) yes
checking for cygwin32... yes
checking for init.tcl... /gdb-20001125-1/tcl/library
checking for Tcl configuration script... (cached) /home/unknown/build-gdb20001125-1/tcl/unix/tclConfig.sh
checking for Tk configuration script... (cached) /home/unknown/build-gdb20001125-1/tk/unix/tkConfig.sh
checking for Tcl headers in the source tree... (cached) /gdb-20001125-1/tcl/generic
checking for Tk headers in the source tree... (cached) found in /gdb-20001125-1/tk/generic
checking for Itcl configuration... found /home/unknown/build-gdb20001125-1/itcl/itcl/itclConfig.sh
checking host system type... i686-pc-cygwin
updating cache ../config.cache
creating ./config.status
creating Makefile
creating library/Makefile
creating src/Makefile
creating config.h
Configuring gdb...
loading cache ../config.cache
checking whether to enable maintainer-specific portions of Makefiles... no
checking for gcc... (cached) gcc
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking how to run the C preprocessor... (cached) gcc -E
checking for AIX... no
checking for POSIXized ISC... no
checking for gcc option to accept ANSI C... none needed
checking host system type... i686-pc-cygwin
checking target system type... i686-pc-cygwin
checking build system type... i686-pc-cygwin
checking whether make sets ${MAKE}... (cached) yes
checking for ranlib... (cached) ranlib
checking for ANSI C header files... (cached) yes
checking for working const... (cached) yes
checking for inline... (cached) inline
checking for off_t... (cached) yes
checking for size_t... (cached) yes
checking for working alloca.h... (cached) no
checking for alloca... (cached) yes
checking for unistd.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... (cached) no
checking for argz.h... (cached) no
checking for limits.h... (cached) yes
checking for locale.h... (cached) yes
checking for nl_types.h... (cached) no
checking for malloc.h... (cached) yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking for values.h... (cached) no
checking for sys/param.h... (cached) yes
checking for getcwd... (cached) yes
checking for munmap... (cached) yes
checking for putenv... (cached) yes
checking for setenv... (cached) yes
checking for setlocale... (cached) yes
checking for strchr... (cached) yes
checking for strcasecmp... (cached) yes
checking for __argz_count... (cached) no
checking for __argz_stringify... (cached) no
checking for __argz_next... (cached) no
checking for LC_MESSAGES... (cached) no
checking whether NLS is requested... yes
checking whether included gettext is requested... no
checking for libintl.h... (cached) yes
checking for gettext in libc... (cached) no
checking for bindtextdomain in -lintl... (cached) yes
checking for gettext in libintl... (cached) no
checking for msgfmt... (cached) /usr/bin/msgfmt
checking for gmsgfmt... (cached) /usr/bin/msgfmt
checking for xgettext... (cached) /usr/bin/xgettext
checking for mawk... no
checking for gawk... gawk
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking for ar... (cached) ar
checking for ranlib... (cached) ranlib
checking for dlltool... (cached) dlltool
checking for windres... (cached) windres
checking for bison... bison -y
checking for mig... mig
checking return type of signal handlers... (cached) void
checking for ANSI C header files... (cached) yes
checking for ctype.h... yes
checking for endian.h... no
checking for link.h... no
checking for thread_db.h... no
checking for proc_service.h... no
checking for memory.h... yes
checking for objlist.h... no
checking for ptrace.h... no
checking for sgtty.h... no
checking for stddef.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for sys/procfs.h... (cached) yes
checking for sys/ptrace.h... no
checking for sys/reg.h... no
checking for stdint.h... no
checking for term.h... no
checking for termio.h... (cached) yes
checking for termios.h... (cached) yes
checking for unistd.h... (cached) yes
checking for wait.h... no
checking for sys/wait.h... (cached) yes
checking for wchar.h... yes
checking for wctype.h... no
checking for asm/debugreg.h... no
checking for sys/debugreg.h... no
checking for sys/select.h... (cached) yes
checking for time.h... (cached) yes
checking for sys/ioctl.h... (cached) yes
checking for sys/user.h... no
checking for dirent.h... yes
checking for sys/ndir.h... no
checking for sys/dir.h... no
checking for ndir.h... no
checking for curses.h... yes
checking for ncurses.h... yes
checking for poll.h... yes
checking for sys/poll.h... yes
checking whether stat file-mode macros are broken... (cached) no
checking for working const... (cached) yes
checking for setpgid... yes
checking for sbrk... (cached) yes
checking for sigaction... yes
checking for isascii... yes
checking for bzero... (cached) yes
checking for bcopy... (cached) yes
checking for btowc... no
checking for poll... yes
checking for sigprocmask... yes
checking for working alloca.h... (cached) no
checking for alloca... (cached) yes
checking for r_fs in struct reg... no
checking for r_gs in struct reg... no
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for socketpair in -lsocket... no
checking for socketpair... yes
checking whether malloc must be declared... (cached) no
checking whether realloc must be declared... (cached) no
checking whether free must be declared... (cached) no
checking whether strerror must be declared... no
checking whether strdup must be declared... no
checking whether strstr must be declared... (cached) no
checking for HPUX save_state structure... no
checking for pstatus_t in sys/procfs.h... (cached) no
checking for prrun_t in sys/procfs.h... no
checking for gregset_t in sys/procfs.h... no
checking for fpregset_t in sys/procfs.h... no
checking for prgregset_t in sys/procfs.h... no
checking for prfpregset_t in sys/procfs.h... no
checking for prgregset32_t in sys/procfs.h... no
checking for prfpregset32_t in sys/procfs.h... no
checking for lwpid_t in sys/procfs.h... no
checking for psaddr_t in sys/procfs.h... no
checking for struct link_map32 in sys/link.h... no
checking for PIOCSET ioctl entry in sys/procfs.h... no
checking for main in -lm... yes
checking for wctype in -lc... no
checking for wctype in -lw... no
checking for long long support in compiler... yes
checking for long long support in printf... yes
checking for long double support in compiler... yes
checking for long double support in printf... yes
checking for long double support in scanf... yes
checking for unistd.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... (cached) no
checking compiler warning flags...  -Wimplicit -Wreturn-type -Wcomment -Wtrigraphs -Wformat -Wparentheses -Wpointer-arith -Wuninitialized
checking for cygwin... yes
checking for Tcl configuration... (cached) found /home/unknown/build-gdb20001125-1/tcl/unix/tclConfig.sh
checking for Tk configuration... (cached) found /home/unknown/build-gdb20001125-1/tk/unix/tkConfig.sh
checking for Tcl private headers. dir=unix... (cached) found in /gdb-20001125-1/tcl/generic
checking for Tk private headers... (cached) found in /gdb-20001125-1/tk/generic
checking for Itcl private headers. srcdir=/gdb-20001125-1/gdb... checking for Itk private headers. srcdir=/gdb-20001125-1/gdb... checking for Tix private headers. srcdir=/gdb-20001125-1/gdb... checking for Itcl configuration... (cached) found /home/unknown/build-gdb20001125-1/itcl/itcl/itclConfig.sh
checking for Itk configuration... found /home/unknown/build-gdb20001125-1/itcl/itk/itkConfig.sh
checking for Tix configuration... **** Looking at ../tix - with unix
**** Other private locations
found /home/unknown/build-gdb20001125-1/tix/tixConfig.sh
checking for X... (cached) no
checking whether ln -s works... (cached) yes
checking for Cygwin environment... (cached) yes
checking for mingw32 environment... (cached) no
checking for executable suffix... (cached) .exe
updating cache ../config.cache
creating ./config.status
creating Makefile
creating .gdbinit
creating config.h
linking /gdb-20001125-1/gdb/config/i386/xm-cygwin.h to xm.h
linking /gdb-20001125-1/gdb/config/i386/tm-cygwin.h to tm.h
linking /gdb-20001125-1/gdb/config/i386/../none/nm-none.h to nm.h
configuring in doc
running /bin/sh /gdb-20001125-1/gdb/doc/configure  --host=i686-pc-cygwin --target=i686-pc-cygwin --cache-file=../../config.cache --srcdir=/gdb-20001125-1/gdb/doc
loading cache ../../config.cache
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking whether ln -s works... (cached) yes
updating cache ../../config.cache
creating ./config.status
creating Makefile
configuring in testsuite
running /bin/sh /gdb-20001125-1/gdb/testsuite/configure  --host=i686-pc-cygwin --target=i686-pc-cygwin --cache-file=../../config.cache --srcdir=/gdb-20001125-1/gdb/testsuite
loading cache ../../config.cache
checking host system type... i686-pc-cygwin
checking target system type... i686-pc-cygwin
checking build system type... i686-pc-cygwin
checking for Cygwin environment... (cached) yes
checking for mingw32 environment... (cached) no
checking for executable suffix... (cached) .exe
updating cache ../../config.cache
creating ./config.status
creating Makefile
configuring in gdb.asm
running /bin/sh /gdb-20001125-1/gdb/testsuite/gdb.asm/configure  --host=i686-pc-cygwin --target=i686-pc-cygwin --cache-file=../../../config.cache --srcdir=/gdb-20001125-1/gdb/testsuite/gdb.asm
loading cache ../../../config.cache
checking host system type... i686-pc-cygwin
checking target system type... i686-pc-cygwin
checking build system type... i686-pc-cygwin
updating cache ../../../config.cache
creating ./config.status
creating Makefile
linking /gdb-20001125-1/gdb/testsuite/gdb.asm/common.inc to arch.inc
configuring in gdb.base
running /bin/sh /gdb-20001125-1/gdb/testsuite/gdb.base/configure  --host=i686-pc-cygwin --target=i686-pc-cygwin --cache-file=../../../config.cache --srcdir=/gdb-20001125-1/gdb/testsuite/gdb.base
loading cache ../../../config.cache
checking host system type... i686-pc-cygwin
checking target system type... i686-pc-cygwin
checking build system type... i686-pc-cygwin
updating cache ../../../config.cache
creating ./config.status
creating Makefile
configuring in gdb.c++
running /bin/sh /gdb-20001125-1/gdb/testsuite/gdb.c++/configure  --host=i686-pc-cygwin --target=i686-pc-cygwin --cache-file=../../../config.cache --srcdir=/gdb-20001125-1/gdb/testsuite/gdb.c++
loading cache ../../../config.cache
checking host system type... i686-pc-cygwin
checking target system type... i686-pc-cygwin
checking build system type... i686-pc-cygwin
updating cache ../../../config.cache
creating ./config.status
creating Makefile
configuring in gdb.java
running /bin/sh /gdb-20001125-1/gdb/testsuite/gdb.java/configure  --host=i686-pc-cygwin --target=i686-pc-cygwin --cache-file=../../../config.cache --srcdir=/gdb-20001125-1/gdb/testsuite/gdb.java
loading cache ../../../config.cache
checking host system type... i686-pc-cygwin
checking target system type... i686-pc-cygwin
checking build system type... i686-pc-cygwin
updating cache ../../../config.cache
creating ./config.status
creating Makefile
configuring in gdb.disasm
running /bin/sh /gdb-20001125-1/gdb/testsuite/gdb.disasm/configure  --host=i686-pc-cygwin --target=i686-pc-cygwin --cache-file=../../../config.cache --srcdir=/gdb-20001125-1/gdb/testsuite/gdb.disasm
loading cache ../../../config.cache
checking host system type... i686-pc-cygwin
checking target system type... i686-pc-cygwin
checking build system type... i686-pc-cygwin
updating cache ../../../config.cache
creating ./config.status
creating Makefile
configuring in gdb.chill
running /bin/sh /gdb-20001125-1/gdb/testsuite/gdb.chill/configure  --host=i686-pc-cygwin --target=i686-pc-cygwin --cache-file=../../../config.cache --srcdir=/gdb-20001125-1/gdb/testsuite/gdb.chill
loading cache ../../../config.cache
checking host system type... i686-pc-cygwin
checking target system type... i686-pc-cygwin
checking build system type... i686-pc-cygwin
updating cache ../../../config.cache
creating ./config.status
creating Makefile
configuring in gdb.mi
running /bin/sh /gdb-20001125-1/gdb/testsuite/gdb.mi/configure  --host=i686-pc-cygwin --target=i686-pc-cygwin --cache-file=../../../config.cache --srcdir=/gdb-20001125-1/gdb/testsuite/gdb.mi
loading cache ../../../config.cache
checking host system type... i686-pc-cygwin
checking target system type... i686-pc-cygwin
checking build system type... i686-pc-cygwin
updating cache ../../../config.cache
creating ./config.status
creating Makefile
configuring in gdb.threads
running /bin/sh /gdb-20001125-1/gdb/testsuite/gdb.threads/configure  --host=i686-pc-cygwin --target=i686-pc-cygwin --cache-file=../../../config.cache --srcdir=/gdb-20001125-1/gdb/testsuite/gdb.threads
loading cache ../../../config.cache
checking host system type... i686-pc-cygwin
checking target system type... i686-pc-cygwin
checking build system type... i686-pc-cygwin
checking how to run the C preprocessor... (cached) gcc -E
checking for pthread.h... yes
updating cache ../../../config.cache
creating ./config.status
creating Makefile
creating config.h
configuring in gdb.trace
running /bin/sh /gdb-20001125-1/gdb/testsuite/gdb.trace/configure  --host=i686-pc-cygwin --target=i686-pc-cygwin --cache-file=../../../config.cache --srcdir=/gdb-20001125-1/gdb/testsuite/gdb.trace
loading cache ../../../config.cache
checking host system type... i686-pc-cygwin
checking target system type... i686-pc-cygwin
checking build system type... i686-pc-cygwin
updating cache ../../../config.cache
creating ./config.status
creating Makefile
configuring in gdb.gdbtk
running /bin/sh /gdb-20001125-1/gdb/testsuite/gdb.gdbtk/configure  --host=i686-pc-cygwin --target=i686-pc-cygwin --cache-file=../../../config.cache --srcdir=/gdb-20001125-1/gdb/testsuite/gdb.gdbtk
loading cache ../../../config.cache
checking host system type... i686-pc-cygwin
checking target system type... i686-pc-cygwin
checking build system type... i686-pc-cygwin
updating cache ../../../config.cache
creating ./config.status
creating Makefile
Configuring etc...
loading cache ../config.cache
checking for a BSD compatible install... (cached) /usr/bin/install -c
updating cache ../config.cache
creating ./config.status
creating Makefile
Configuring utils...
Created "Makefile" in /home/unknown/build-gdb20001125-1/utils
Configuring spu...
Created "Makefile" in /home/unknown/build-gdb20001125-1/utils/spu

[-- Attachment #3: make.log --]
[-- Type: text/plain, Size: 252078 bytes --]

make[1]: Entering directory `/home/unknown/build-gdb20001125-1/libiberty'
if [ x"" != x ] && [ ! -d pic ]; then \
  mkdir pic; \
else true; fi
touch stamp-picdir
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/argv.c -o pic/argv.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/argv.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/choose-temp.c -o pic/choose-temp.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/choose-temp.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/concat.c -o pic/concat.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/concat.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/cplus-dem.c -o pic/cplus-dem.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/cplus-dem.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/cp-demangle.c -o pic/cp-demangle.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/cp-demangle.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/dyn-string.c -o pic/dyn-string.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/dyn-string.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/fdmatch.c -o pic/fdmatch.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/fdmatch.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/fnmatch.c -o pic/fnmatch.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/fnmatch.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/getopt.c -o pic/getopt.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/getopt.c
/gdb-20001125-1/libiberty/getopt.c: In function `_getopt_initialize':
/gdb-20001125-1/libiberty/getopt.c:396: warning: unused parameter `argc'
/gdb-20001125-1/libiberty/getopt.c:397: warning: unused parameter `argv'
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/getopt1.c -o pic/getopt1.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/getopt1.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/getpwd.c -o pic/getpwd.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/getpwd.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/getruntime.c -o pic/getruntime.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/getruntime.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/hashtab.c -o pic/hashtab.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/hashtab.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/hex.c -o pic/hex.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/hex.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/floatformat.c -o pic/floatformat.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/floatformat.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/md5.c -o pic/md5.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/md5.c
/gdb-20001125-1/libiberty/md5.c: In function `md5_init_ctx':
/gdb-20001125-1/libiberty/md5.c:68: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:69: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c: In function `md5_process_block':
/gdb-20001125-1/libiberty/md5.c:324: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:325: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:327: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:328: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:330: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:331: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:333: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:334: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:335: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:337: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:338: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:355: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:356: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:358: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:359: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:361: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:362: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:364: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:365: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:367: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:368: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:370: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:373: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:374: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:376: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:377: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:379: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:380: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:382: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:383: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:385: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:386: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:388: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:391: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:393: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:394: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:396: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:397: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:398: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:400: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:401: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:403: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:404: warning: integer constant is unsigned in ANSI C, signed with -traditional
/gdb-20001125-1/libiberty/md5.c:406: warning: integer constant is unsigned in ANSI C, signed with -traditional
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/objalloc.c -o pic/objalloc.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/objalloc.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/obstack.c -o pic/obstack.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/obstack.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/partition.c -o pic/partition.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/partition.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/pexecute.c -o pic/pexecute.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/pexecute.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/sort.c -o pic/sort.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/sort.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/spaces.c -o pic/spaces.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/spaces.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/splay-tree.c -o pic/splay-tree.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/splay-tree.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/strerror.c -o pic/strerror.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/strerror.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/strsignal.c -o pic/strsignal.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/strsignal.c
/gdb-20001125-1/libiberty/strsignal.c: In function `psignal':
/gdb-20001125-1/libiberty/strsignal.c:597: warning: comparison between signed and unsigned
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/xatexit.c -o pic/xatexit.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/xatexit.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/xexit.c -o pic/xexit.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/xexit.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/xmalloc.c -o pic/xmalloc.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/xmalloc.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/xmemdup.c -o pic/xmemdup.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/xmemdup.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/xstrdup.c -o pic/xstrdup.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/xstrdup.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/xstrerror.c -o pic/xstrerror.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/xstrerror.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/asprintf.c -o pic/asprintf.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/asprintf.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/basename.c -o pic/basename.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/basename.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/insque.c -o pic/insque.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/insque.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/mkstemps.c -o pic/mkstemps.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/mkstemps.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/sigsetmask.c -o pic/sigsetmask.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/sigsetmask.c
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic  /gdb-20001125-1/libiberty/vasprintf.c -o pic/vasprintf.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/gdb-20001125-1/libiberty/../include  -W -Wall -Wtraditional -pedantic /gdb-20001125-1/libiberty/vasprintf.c
rm -f libiberty.a
ar rc libiberty.a \
  argv.o choose-temp.o concat.o cplus-dem.o cp-demangle.o dyn-string.o fdmatch.o fnmatch.o getopt.o getopt1.o getpwd.o getruntime.o hashtab.o hex.o floatformat.o md5.o objalloc.o obstack.o partition.o pexecute.o sort.o spaces.o splay-tree.o strerror.o strsignal.o xatexit.o xexit.o xmalloc.o xmemdup.o xstrdup.o xstrerror.o  asprintf.o basename.o insque.o mkstemps.o sigsetmask.o vasprintf.o 
ranlib libiberty.a
rm -f needed-list; touch needed-list; \
for f in atexit calloc memchr memcmp memcpy memmove memset rename strchr strerror strncmp strrchr strstr strtol strtoul tmpnam vfprintf vprintf vfork waitpid bcmp bcopy bzero; do \
  for g in asprintf.o basename.o insque.o mkstemps.o sigsetmask.o vasprintf.o ; do \
    case "$g" in \
      *$f*) echo $g >> needed-list ;; \
    esac; \
  done; \
done
echo argv.o choose-temp.o concat.o cplus-dem.o cp-demangle.o dyn-string.o fdmatch.o fnmatch.o getopt.o getopt1.o getpwd.o getruntime.o hashtab.o hex.o floatformat.o md5.o objalloc.o obstack.o partition.o pexecute.o sort.o spaces.o splay-tree.o strerror.o strsignal.o xatexit.o xexit.o xmalloc.o xmemdup.o xstrdup.o xstrerror.o > required-list
make[2]: Entering directory `/home/unknown/build-gdb20001125-1/libiberty/testsuite'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/unknown/build-gdb20001125-1/libiberty/testsuite'
make[1]: Leaving directory `/home/unknown/build-gdb20001125-1/libiberty'
make[1]: Entering directory `/home/unknown/build-gdb20001125-1/intl'
gcc -c -DLOCALEDIR=\"/usr/local/share/locale\" -DGNULOCALEDIR=\"/usr/local/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/local/share/locale:.\" -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/intl  -g -O2  /gdb-20001125-1/intl/intl-compat.c
gcc -c -DLOCALEDIR=\"/usr/local/share/locale\" -DGNULOCALEDIR=\"/usr/local/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/local/share/locale:.\" -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/intl  -g -O2  /gdb-20001125-1/intl/bindtextdom.c
gcc -c -DLOCALEDIR=\"/usr/local/share/locale\" -DGNULOCALEDIR=\"/usr/local/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/local/share/locale:.\" -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/intl  -g -O2  /gdb-20001125-1/intl/dcgettext.c
gcc -c -DLOCALEDIR=\"/usr/local/share/locale\" -DGNULOCALEDIR=\"/usr/local/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/local/share/locale:.\" -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/intl  -g -O2  /gdb-20001125-1/intl/dgettext.c
gcc -c -DLOCALEDIR=\"/usr/local/share/locale\" -DGNULOCALEDIR=\"/usr/local/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/local/share/locale:.\" -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/intl  -g -O2  /gdb-20001125-1/intl/gettext.c
gcc -c -DLOCALEDIR=\"/usr/local/share/locale\" -DGNULOCALEDIR=\"/usr/local/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/local/share/locale:.\" -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/intl  -g -O2  /gdb-20001125-1/intl/finddomain.c
gcc -c -DLOCALEDIR=\"/usr/local/share/locale\" -DGNULOCALEDIR=\"/usr/local/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/local/share/locale:.\" -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/intl  -g -O2  /gdb-20001125-1/intl/loadmsgcat.c
gcc -c -DLOCALEDIR=\"/usr/local/share/locale\" -DGNULOCALEDIR=\"/usr/local/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/local/share/locale:.\" -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/intl  -g -O2  /gdb-20001125-1/intl/localealias.c
gcc -c -DLOCALEDIR=\"/usr/local/share/locale\" -DGNULOCALEDIR=\"/usr/local/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/local/share/locale:.\" -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/intl  -g -O2  /gdb-20001125-1/intl/textdomain.c
gcc -c -DLOCALEDIR=\"/usr/local/share/locale\" -DGNULOCALEDIR=\"/usr/local/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/local/share/locale:.\" -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/intl  -g -O2  /gdb-20001125-1/intl/l10nflist.c
gcc -c -DLOCALEDIR=\"/usr/local/share/locale\" -DGNULOCALEDIR=\"/usr/local/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/local/share/locale:.\" -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/intl  -g -O2  /gdb-20001125-1/intl/explodename.c
rm -f libintl.a
ar cru libintl.a intl-compat.o bindtextdom.o dcgettext.o dgettext.o gettext.o finddomain.o loadmsgcat.o localealias.o textdomain.o l10nflist.o explodename.o
ranlib libintl.a
make[1]: Leaving directory `/home/unknown/build-gdb20001125-1/intl'
make[1]: Entering directory `/home/unknown/build-gdb20001125-1/bfd'
make  all-recursive
make[2]: Entering directory `/home/unknown/build-gdb20001125-1/bfd'
Making all in doc
make[3]: Entering directory `/home/unknown/build-gdb20001125-1/bfd/doc'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/home/unknown/build-gdb20001125-1/bfd/doc'
Making all in po
make[3]: Entering directory `/home/unknown/build-gdb20001125-1/bfd/po'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/home/unknown/build-gdb20001125-1/bfd/po'
make[3]: Entering directory `/home/unknown/build-gdb20001125-1/bfd'
rm -f bfd-tmp.h
cp bfd-in3.h bfd-tmp.h
/bin/sh /gdb-20001125-1/bfd/../move-if-change bfd-tmp.h bfd.h
rm -f bfd-tmp.h
touch stmp-bfd-h
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/archive.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/archive.c -o archive.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c -DDEFAULT_VECTOR=i386pe_vec -DSELECT_VECS='&i386pe_vec,&i386pei_vec,&bfd_elf32_i386_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec' -DSELECT_ARCHITECTURES='&bfd_i386_arch' -DHAVE_i386pe_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec /gdb-20001125-1/bfd/archures.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c -DDEFAULT_VECTOR=i386pe_vec "-DSELECT_VECS=&i386pe_vec,&i386pei_vec,&bfd_elf32_i386_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec" "-DSELECT_ARCHITECTURES=&bfd_i386_arch" -DHAVE_i386pe_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec /gdb-20001125-1/bfd/archures.c -o archures.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/bfd.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/bfd.c -o bfd.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/cache.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/cache.c -o cache.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/coffgen.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/coffgen.c -o coffgen.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/corefile.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/corefile.c -o corefile.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/format.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/format.c -o format.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/init.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/init.c -o init.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/libbfd.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/libbfd.c -o libbfd.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/opncls.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/opncls.c -o opncls.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/reloc.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/reloc.c -o reloc.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/section.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/section.c -o section.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/syms.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/syms.c -o syms.o
rm -f targmatch.h
sed -f /gdb-20001125-1/bfd/targmatch.sed < /gdb-20001125-1/bfd/config.bfd > targmatch.new
mv -f targmatch.new targmatch.h
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c -DDEFAULT_VECTOR=i386pe_vec -DSELECT_VECS='&i386pe_vec,&i386pei_vec,&bfd_elf32_i386_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec' -DSELECT_ARCHITECTURES='&bfd_i386_arch' -DHAVE_i386pe_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec /gdb-20001125-1/bfd/targets.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c -DDEFAULT_VECTOR=i386pe_vec "-DSELECT_VECS=&i386pe_vec,&i386pei_vec,&bfd_elf32_i386_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec" "-DSELECT_ARCHITECTURES=&bfd_i386_arch" -DHAVE_i386pe_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec /gdb-20001125-1/bfd/targets.c -o targets.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/hash.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/hash.c -o hash.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/linker.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/linker.c -o linker.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/srec.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/srec.c -o srec.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/binary.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/binary.c -o binary.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/tekhex.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/tekhex.c -o tekhex.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/ihex.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/ihex.c -o ihex.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/stabs.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/stabs.c -o stabs.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/stab-syms.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/stab-syms.c -o stab-syms.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/pe-i386.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/pe-i386.c -o pe-i386.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/peigen.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/peigen.c -o peigen.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/cofflink.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/cofflink.c -o cofflink.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/pei-i386.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/pei-i386.c -o pei-i386.o
rm -f elf32-target.h
sed -e s/NN/32/g < /gdb-20001125-1/bfd/elfxx-target.h > elf32-target.new
mv -f elf32-target.new elf32-target.h
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/elf32-i386.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/elf32-i386.c -o elf32-i386.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/elf32.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/elf32.c -o elf32.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/elf.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/elf.c -o elf.o
/gdb-20001125-1/bfd/elf.c: In function `_bfd_elf_slurp_version_tables':
/gdb-20001125-1/bfd/elf.c:4727: warning: comparison between signed and unsigned
/gdb-20001125-1/bfd/elf.c: In function `elfcore_grok_win32pstatus':
/gdb-20001125-1/bfd/elf.c:5706: warning: int format, long int arg (arg 3)
/gdb-20001125-1/bfd/elf.c:5731: warning: unsigned int format, pointer arg (arg 3)
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/elflink.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/elflink.c -o elflink.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/dwarf2.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/dwarf2.c -o dwarf2.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/dwarf1.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/dwarf1.c -o dwarf1.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/elf32-gen.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/elf32-gen.c -o elf32-gen.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE     -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include  -I/gdb-20001125-1/bfd/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/bfd/cpu-i386.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/bfd -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/bfd -I/gdb-20001125-1/bfd/../include -I/gdb-20001125-1/bfd/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/bfd/cpu-i386.c -o cpu-i386.o
rm -f tofiles
f=""; \
for i in pe-i386.lo peigen.lo cofflink.lo pei-i386.lo elf32-i386.lo elf32.lo elf.lo elflink.lo dwarf2.lo dwarf1.lo elf32-gen.lo cpu-i386.lo  ; do \
  case " $f " in \
    *" $i "*) ;; \
    *) f="$f $i" ;; \
  esac ; \
done ; \
echo $f > tofiles
/bin/sh /gdb-20001125-1/bfd/../move-if-change tofiles ofiles
touch stamp-ofiles
/bin/sh ./libtool --mode=link gcc -W -Wall -g -O2  -o libbfd.la -rpath /usr/local/lib -release 2.10.91  archive.lo archures.lo bfd.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo `cat ofiles`  
mkdir .libs
libtool: link: warning: undefined symbols not allowed in i686-pc-cygwin shared libraries
ar cru .libs/libbfd.a  archive.o archures.o bfd.o cache.o coffgen.o corefile.o format.o init.o libbfd.o opncls.o reloc.o section.o syms.o targets.o hash.o linker.o srec.o binary.o tekhex.o ihex.o stabs.o stab-syms.o pe-i386.o peigen.o cofflink.o pei-i386.o elf32-i386.o elf32.o elf.o elflink.o dwarf2.o dwarf1.o elf32-gen.o cpu-i386.o
ranlib .libs/libbfd.a
creating libbfd.la
(cd .libs && rm -f libbfd.la && ln -s ../libbfd.la libbfd.la)
libtooldir=`/bin/sh ./libtool --config | sed -n -e 's/^objdir=//p'`; \
if [ -f $libtooldir/libbfd.a ]; then \
  cp $libtooldir/libbfd.a libbfd.tmp; \
  /bin/sh /gdb-20001125-1/bfd/../move-if-change libbfd.tmp libbfd.a; \
else true; fi
touch stamp-lib
make[3]: Leaving directory `/home/unknown/build-gdb20001125-1/bfd'
make[2]: Leaving directory `/home/unknown/build-gdb20001125-1/bfd'
make[1]: Leaving directory `/home/unknown/build-gdb20001125-1/bfd'
make[1]: Entering directory `/home/unknown/build-gdb20001125-1/opcodes'
make  all-recursive
make[2]: Entering directory `/home/unknown/build-gdb20001125-1/opcodes'
Making all in po
make[3]: Entering directory `/home/unknown/build-gdb20001125-1/opcodes/po'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/home/unknown/build-gdb20001125-1/opcodes/po'
make[3]: Entering directory `/home/unknown/build-gdb20001125-1/opcodes'
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/opcodes -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/opcodes -I../bfd -I/gdb-20001125-1/opcodes/../include -I/gdb-20001125-1/opcodes/../bfd  -I/gdb-20001125-1/opcodes/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/opcodes/dis-buf.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/opcodes -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/opcodes -I../bfd -I/gdb-20001125-1/opcodes/../include -I/gdb-20001125-1/opcodes/../bfd -I/gdb-20001125-1/opcodes/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/opcodes/dis-buf.c -o dis-buf.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/opcodes -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/opcodes -I../bfd -I/gdb-20001125-1/opcodes/../include -I/gdb-20001125-1/opcodes/../bfd  -I/gdb-20001125-1/opcodes/../intl -I../intl   -W -Wall -g -O2 -c  -DARCH_i386 /gdb-20001125-1/opcodes/disassemble.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/opcodes -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/opcodes -I../bfd -I/gdb-20001125-1/opcodes/../include -I/gdb-20001125-1/opcodes/../bfd -I/gdb-20001125-1/opcodes/../intl -I../intl -W -Wall -g -O2 -c -DARCH_i386 /gdb-20001125-1/opcodes/disassemble.c -o disassemble.o
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/opcodes -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/opcodes -I../bfd -I/gdb-20001125-1/opcodes/../include -I/gdb-20001125-1/opcodes/../bfd  -I/gdb-20001125-1/opcodes/../intl -I../intl   -W -Wall -g -O2 -c /gdb-20001125-1/opcodes/i386-dis.c
gcc -DHAVE_CONFIG_H -I. -I/gdb-20001125-1/opcodes -I. -D_GNU_SOURCE -I. -I/gdb-20001125-1/opcodes -I../bfd -I/gdb-20001125-1/opcodes/../include -I/gdb-20001125-1/opcodes/../bfd -I/gdb-20001125-1/opcodes/../intl -I../intl -W -Wall -g -O2 -c /gdb-20001125-1/opcodes/i386-dis.c -o i386-dis.o
/bin/sh ./libtool --mode=link gcc -W -Wall -g -O2  -o libopcodes.la -rpath /usr/local/lib -release 2.10.91  dis-buf.lo disassemble.lo i386-dis.lo  
mkdir .libs
libtool: link: warning: undefined symbols not allowed in i686-pc-cygwin shared libraries
ar cru .libs/libopcodes.a  dis-buf.o disassemble.o i386-dis.o
ranlib .libs/libopcodes.a
creating libopcodes.la
(cd .libs && rm -f libopcodes.la && ln -s ../libopcodes.la libopcodes.la)
libtooldir=`/bin/sh ./libtool --config | sed -n -e 's/^objdir=//p'`; \
if [ -f $libtooldir/libopcodes.a ]; then \
  cp $libtooldir/libopcodes.a libopcodes.tmp; \
  /bin/sh /gdb-20001125-1/opcodes/../move-if-change libopcodes.tmp libopcodes.a; \
else true; fi
touch stamp-lib
make[3]: Leaving directory `/home/unknown/build-gdb20001125-1/opcodes'
make[2]: Leaving directory `/home/unknown/build-gdb20001125-1/opcodes'
make[1]: Leaving directory `/home/unknown/build-gdb20001125-1/opcodes'
make[1]: Entering directory `/home/unknown/build-gdb20001125-1/tcl'
make[2]: Entering directory `/home/unknown/build-gdb20001125-1/tcl/win'
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/tclAppInit.c
windres --include /gdb-20001125-1/tcl/win/../generic --include /gdb-20001125-1/tcl/win/../win --define __WIN32__ --define VS_VERSION_INFO=1 /gdb-20001125-1/tcl/win/tclsh.rc tclshres.o
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/panic.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/regexp.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../compat/strftime.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclAsync.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclBasic.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclBinary.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclCkalloc.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclClock.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclCmdAH.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclCmdIL.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclCmdMZ.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclCompExpr.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclCompile.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclDate.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclEnv.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclEvent.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclExecute.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclFCmd.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclFileName.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclGet.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclHash.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclHistory.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclIndexObj.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclInterp.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclIO.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclIOCmd.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclIOSock.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclIOUtil.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclLink.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclListObj.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclLoad.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclMain.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclNamesp.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclNotify.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclObj.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclParse.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclPipe.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclPkg.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclPosixStr.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclPreserve.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclProc.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclResolve.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclStringObj.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclTimer.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclUtil.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/../generic/tclVar.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/tclWin32Dll.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/tclWinChan.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/tclWinError.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/tclWinFCmd.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/tclWinFile.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/tclWinInit.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/tclWinLoad.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/tclWinMtherr.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/tclWinNotify.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/tclWinPipe.c
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/tclWinSock.c
/gdb-20001125-1/tcl/win/tclWinSock.c: In function `InitSockets':
/gdb-20001125-1/tcl/win/tclWinSock.c:292: warning: assignment from incompatible pointer type
/gdb-20001125-1/tcl/win/tclWinSock.c:295: warning: assignment from incompatible pointer type
/gdb-20001125-1/tcl/win/tclWinSock.c:297: warning: assignment from incompatible pointer type
/gdb-20001125-1/tcl/win/tclWinSock.c:300: warning: assignment from incompatible pointer type
/gdb-20001125-1/tcl/win/tclWinSock.c:302: warning: assignment from incompatible pointer type
/gdb-20001125-1/tcl/win/tclWinSock.c:305: warning: assignment from incompatible pointer type
/gdb-20001125-1/tcl/win/tclWinSock.c:307: warning: assignment from incompatible pointer type
/gdb-20001125-1/tcl/win/tclWinSock.c:309: warning: assignment from incompatible pointer type
/gdb-20001125-1/tcl/win/tclWinSock.c:311: warning: assignment from incompatible pointer type
/gdb-20001125-1/tcl/win/tclWinSock.c:313: warning: assignment from incompatible pointer type
/gdb-20001125-1/tcl/win/tclWinSock.c:315: warning: assignment from incompatible pointer type
/gdb-20001125-1/tcl/win/tclWinSock.c:317: warning: assignment from incompatible pointer type
/gdb-20001125-1/tcl/win/tclWinSock.c:321: warning: assignment from incompatible pointer type
/gdb-20001125-1/tcl/win/tclWinSock.c:323: warning: assignment from incompatible pointer type
/gdb-20001125-1/tcl/win/tclWinSock.c:326: warning: assignment from incompatible pointer type
/gdb-20001125-1/tcl/win/tclWinSock.c:328: warning: assignment from incompatible pointer type
/gdb-20001125-1/tcl/win/tclWinSock.c:330: warning: assignment from incompatible pointer type
/gdb-20001125-1/tcl/win/tclWinSock.c:333: warning: assignment from incompatible pointer type
/gdb-20001125-1/tcl/win/tclWinSock.c:336: warning: assignment from incompatible pointer type
/gdb-20001125-1/tcl/win/tclWinSock.c:338: warning: assignment from incompatible pointer type
/gdb-20001125-1/tcl/win/tclWinSock.c:341: warning: assignment from incompatible pointer type
/gdb-20001125-1/tcl/win/tclWinSock.c:344: warning: assignment from incompatible pointer type
/gdb-20001125-1/tcl/win/tclWinSock.c:347: warning: assignment from incompatible pointer type
/gdb-20001125-1/tcl/win/tclWinSock.c:349: warning: assignment from incompatible pointer type
/gdb-20001125-1/tcl/win/tclWinSock.c:351: warning: assignment from incompatible pointer type
/gdb-20001125-1/tcl/win/tclWinSock.c:353: warning: assignment from incompatible pointer type
/gdb-20001125-1/tcl/win/tclWinSock.c:356: warning: assignment from incompatible pointer type
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/tclWinTime.c
echo 'EXPORTS' > tmp.def
for o in ./panic.o ./regexp.o ./strftime.o  ./tclAsync.o ./tclBasic.o ./tclBinary.o ./tclCkalloc.o ./tclClock.o ./tclCmdAH.o ./tclCmdIL.o ./tclCmdMZ.o ./tclCompExpr.o ./tclCompile.o ./tclDate.o ./tclEnv.o ./tclEvent.o ./tclExecute.o ./tclFCmd.o ./tclFileName.o ./tclGet.o ./tclHash.o ./tclHistory.o ./tclIndexObj.o ./tclInterp.o ./tclIO.o ./tclIOCmd.o ./tclIOSock.o ./tclIOUtil.o ./tclLink.o ./tclListObj.o ./tclLoad.o ./tclMain.o ./tclNamesp.o ./tclNotify.o ./tclObj.o ./tclParse.o ./tclPipe.o ./tclPkg.o ./tclPosixStr.o ./tclPreserve.o ./tclProc.o ./tclResolve.o ./tclStringObj.o ./tclTimer.o ./tclUtil.o ./tclVar.o ./tclWin32Dll.o ./tclWinChan.o ./tclWinError.o ./tclWinFCmd.o ./tclWinFile.o ./tclWinInit.o ./tclWinLoad.o ./tclWinMtherr.o ./tclWinNotify.o ./tclWinPipe.o ./tclWinSock.o ./tclWinTime.o ; do \
  nm --extern-only --defined-only $o | sed -e 's/[^ ]* [^ ]* //' -e 's/^_//' | fgrep -v DllEntryPoint | fgrep -v DllMain | fgrep -v impure_ptr >> tmp.def; \
done
mv tmp.def ./tclcyg.def
dlltool --as=as --dllname cygtcl80.dll --def ./tclcyg.def --output-lib libtcl80.a
gcc  -Wl,--subsystem,console -mwindows -Wl,--stack=0x2300000 \
	-o cygtclsh80.exe  -lkernel32  -ladvapi32 -luser32 ./tclAppInit.o tclshres.o libtcl80.a
windres --include /gdb-20001125-1/tcl/win/../generic --include /gdb-20001125-1/tcl/win/../win --define __WIN32__ --define VS_VERSION_INFO=1 /gdb-20001125-1/tcl/win/tcl.rc tclres.o
gcc -s -nostartfiles -Wl,--dll -Wl,--base-file,tcl.base -o cygtcl80.dll ./panic.o ./regexp.o ./strftime.o  ./tclAsync.o ./tclBasic.o ./tclBinary.o ./tclCkalloc.o ./tclClock.o ./tclCmdAH.o ./tclCmdIL.o ./tclCmdMZ.o ./tclCompExpr.o ./tclCompile.o ./tclDate.o ./tclEnv.o ./tclEvent.o ./tclExecute.o ./tclFCmd.o ./tclFileName.o ./tclGet.o ./tclHash.o ./tclHistory.o ./tclIndexObj.o ./tclInterp.o ./tclIO.o ./tclIOCmd.o ./tclIOSock.o ./tclIOUtil.o ./tclLink.o ./tclListObj.o ./tclLoad.o ./tclMain.o ./tclNamesp.o ./tclNotify.o ./tclObj.o ./tclParse.o ./tclPipe.o ./tclPkg.o ./tclPosixStr.o ./tclPreserve.o ./tclProc.o ./tclResolve.o ./tclStringObj.o ./tclTimer.o ./tclUtil.o ./tclVar.o ./tclWin32Dll.o ./tclWinChan.o ./tclWinError.o ./tclWinFCmd.o ./tclWinFile.o ./tclWinInit.o ./tclWinLoad.o ./tclWinMtherr.o ./tclWinNotify.o ./tclWinPipe.o ./tclWinSock.o ./tclWinTime.o  tclres.o -lcygwin -mwindows -Wl,-e,_DllMain@12 -Wl,--image-base,0x66000000
dlltool --as=as --dllname cygtcl80.dll --def ./tclcyg.def --base-file tcl.base --output-exp tcl.exp
gcc -s -nostartfiles -Wl,--dll -Wl,--base-file,tcl.base,tcl.exp -o cygtcl80.dll ./panic.o ./regexp.o ./strftime.o  ./tclAsync.o ./tclBasic.o ./tclBinary.o ./tclCkalloc.o ./tclClock.o ./tclCmdAH.o ./tclCmdIL.o ./tclCmdMZ.o ./tclCompExpr.o ./tclCompile.o ./tclDate.o ./tclEnv.o ./tclEvent.o ./tclExecute.o ./tclFCmd.o ./tclFileName.o ./tclGet.o ./tclHash.o ./tclHistory.o ./tclIndexObj.o ./tclInterp.o ./tclIO.o ./tclIOCmd.o ./tclIOSock.o ./tclIOUtil.o ./tclLink.o ./tclListObj.o ./tclLoad.o ./tclMain.o ./tclNamesp.o ./tclNotify.o ./tclObj.o ./tclParse.o ./tclPipe.o ./tclPkg.o ./tclPosixStr.o ./tclPreserve.o ./tclProc.o ./tclResolve.o ./tclStringObj.o ./tclTimer.o ./tclUtil.o ./tclVar.o ./tclWin32Dll.o ./tclWinChan.o ./tclWinError.o ./tclWinFCmd.o ./tclWinFile.o ./tclWinInit.o ./tclWinLoad.o ./tclWinMtherr.o ./tclWinNotify.o ./tclWinPipe.o ./tclWinSock.o ./tclWinTime.o  tclres.o -lcygwin -mwindows -Wl,-e,_DllMain@12 -Wl,--image-base,0x66000000
dlltool --as=as --dllname cygtcl80.dll --def ./tclcyg.def --base-file tcl.base --output-exp tcl.exp
gcc -nostartfiles -Wl,--dll -Wl,tcl.exp -o cygtcl80.dll ./panic.o ./regexp.o ./strftime.o  ./tclAsync.o ./tclBasic.o ./tclBinary.o ./tclCkalloc.o ./tclClock.o ./tclCmdAH.o ./tclCmdIL.o ./tclCmdMZ.o ./tclCompExpr.o ./tclCompile.o ./tclDate.o ./tclEnv.o ./tclEvent.o ./tclExecute.o ./tclFCmd.o ./tclFileName.o ./tclGet.o ./tclHash.o ./tclHistory.o ./tclIndexObj.o ./tclInterp.o ./tclIO.o ./tclIOCmd.o ./tclIOSock.o ./tclIOUtil.o ./tclLink.o ./tclListObj.o ./tclLoad.o ./tclMain.o ./tclNamesp.o ./tclNotify.o ./tclObj.o ./tclParse.o ./tclPipe.o ./tclPkg.o ./tclPosixStr.o ./tclPreserve.o ./tclProc.o ./tclResolve.o ./tclStringObj.o ./tclTimer.o ./tclUtil.o ./tclVar.o ./tclWin32Dll.o ./tclWinChan.o ./tclWinError.o ./tclWinFCmd.o ./tclWinFile.o ./tclWinInit.o ./tclWinLoad.o ./tclWinMtherr.o ./tclWinNotify.o ./tclWinPipe.o ./tclWinSock.o ./tclWinTime.o  tclres.o -lcygwin -mwindows -Wl,-e,_DllMain@12 -Wl,--image-base,0x66000000
gcc -c   -DWIN32 -D_WIN32 -DCONSOLE /gdb-20001125-1/tcl/win/../win/stub16.c
gcc  -Wl,--subsystem,console -mwindows -o cygtclpip80.dll ./stub16.o  -lkernel32  -ladvapi32 -luser32 -lgdi32 -lcomdlg32 -lwinspool
gcc -c   -DWIN32 -D_WIN32 -D_MT -D_DLL -I/gdb-20001125-1/tcl/win/../win -I/gdb-20001125-1/tcl/win/../generic -D__WIN32__  -g -O2 /gdb-20001125-1/tcl/win/tclWinReg.c
echo EXPORTS > ./tclreg.def
echo Registry_Init >> ./tclreg.def
gcc -s -nostartfiles -Wl,--dll -Wl,--base-file,tclreg.base -o cygtclreg80.dll ./tclWinReg.o libtcl80.a -lcygwin -ladvapi32 -mwindows -Wl,-e,_DllEntryPoint@12 -Wl,--image-base,0x66200000
/usr/lib/gcc-lib/i686-pc-cygwin/2.95.3-1/../../../../i686-pc-cygwin/bin/ld: warning: cannot find entry symbol _DllEntryPoint@12; defaulting to 66201000
dlltool --as=as --dllname cygtclreg80.dll --def ./tclreg.def --base-file tclreg.base --output-exp tclreg.exp
gcc -s -nostartfiles -Wl,--dll -Wl,--base-file,tclreg.base -Wl,tclreg.exp -o cygtclreg80.dll ./tclWinReg.o libtcl80.a -lcygwin -ladvapi32 -mwindows -Wl,-e,_DllEntryPoint@12 -Wl,--image-base,0x66200000
/usr/lib/gcc-lib/i686-pc-cygwin/2.95.3-1/../../../../i686-pc-cygwin/bin/ld: warning: cannot find entry symbol _DllEntryPoint@12; defaulting to 66201000
dlltool --as=as --dllname cygtclreg80.dll --def ./tclreg.def --base-file tclreg.base --output-exp tclreg.exp
gcc -nostartfiles -Wl,--dll -Wl,tclreg.exp -o cygtclreg80.dll ./tclWinReg.o libtcl80.a -lcygwin -ladvapi32 -mwindows -Wl,-e,_DllEntryPoint@12 -Wl,--image-base,0x66200000
/usr/lib/gcc-lib/i686-pc-cygwin/2.95.3-1/../../../../i686-pc-cygwin/bin/ld: warning: cannot find entry symbol _DllEntryPoint@12; defaulting to 66201000
rm -f ./tclreg.def
gcc -c   -DWIN32 -D_WIN32 -DCONSOLE /gdb-20001125-1/tcl/win/../win/cat.c
gcc -o cat32.exe -Wl,-stack,16384 ./cat.o  -lkernel32  -ladvapi32 -luser32
make[2]: Leaving directory `/home/unknown/build-gdb20001125-1/tcl/win'
make[2]: Entering directory `/home/unknown/build-gdb20001125-1/tcl/cygwin'
gcc -DPACKAGE=\"libtcl_cygwin\" -DVERSION=\"8.0\" -DHAVE_GETCWD=1 -DHAVE_OPENDIR=1 -DHAVE_STRSTR=1 -DHAVE_STRTOL=1 -DHAVE_TMPNAM=1 -DHAVE_WAITPID=1 -DNO_VALUES_H=1 -DHAVE_UNISTD_H=1 -DUSE_TERMIOS=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_ST_BLKSIZE=1 -DSTDC_HEADERS=1 -DNO_UNION_WAIT=1 -DNEED_MATHERR=1 -DRETSIGTYPE=void -DHAVE_SIGNED_CHAR=1 -DHAVE_SYS_IOCTL_H=1  -I. -I/gdb-20001125-1/tcl/cygwin  -I/gdb-20001125-1/tcl/cygwin/../generic   -D__TCL_UNIX_VARIANT -DTCL_LIBRARY='"/usr/local/share/tcl8.0"' -DTCL_PACKAGE_PATH='"NONE/lib"' -g -O2 -c /gdb-20001125-1/tcl/cygwin/../generic/panic.c
gcc -DPACKAGE=\"libtcl_cygwin\" -DVERSION=\"8.0\" -DHAVE_GETCWD=1 -DHAVE_OPENDIR=1 -DHAVE_STRSTR=1 -DHAVE_STRTOL=1 -DHAVE_TMPNAM=1 -DHAVE_WAITPID=1 -DNO_VALUES_H=1 -DHAVE_UNISTD_H=1 -DUSE_TERMIOS=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_ST_BLKSIZE=1 -DSTDC_HEADERS=1 -DNO_UNION_WAIT=1 -DNEED_MATHERR=1 -DRETSIGTYPE=void -DHAVE_SIGNED_CHAR=1 -DHAVE_SYS_IOCTL_H=1  -I. -I/gdb-20001125-1/tcl/cygwin  -I/gdb-20001125-1/tcl/cygwin/../generic   -D__TCL_UNIX_VARIANT -DTCL_LIBRARY='"/usr/local/share/tcl8.0"' -DTCL_PACKAGE_PATH='"NONE/lib"' -g -O2 -c /gdb-20001125-1/tcl/cygwin/../generic/regexp.c
gcc -DPACKAGE=\"libtcl_cygwin\" -DVERSION=\"8.0\" -DHAVE_GETCWD=1 -DHAVE_OPENDIR=1 -DHAVE_STRSTR=1 -DHAVE_STRTOL=1 -DHAVE_TMPNAM=1 -DHAVE_WAITPID=1 -DNO_VALUES_H=1 -DHAVE_UNISTD_H=1 -DUSE_TERMIOS=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_ST_BLKSIZE=1 -DSTDC_HEADERS=1 -DNO_UNION_WAIT=1 -DNEED_MATHERR=1 -DRETSIGTYPE=void -DHAVE_SIGNED_CHAR=1 -DHAVE_SYS_IOCTL_H=1  -I. -I/gdb-20001125-1/tcl/cygwin  -I/gdb-20001125-1/tcl/cygwin/../generic   -D__TCL_UNIX_VARIANT -DTCL_LIBRARY='"/usr/local/share/tcl8.0"' -DTCL_PACKAGE_PATH='"NONE/lib"' -g -O2 -c /gdb-20001125-1/tcl/cygwin/../generic/tclAsync.c
gcc -DPACKAGE=\"libtcl_cygwin\" -DVERSION=\"8.0\" -DHAVE_GETCWD=1 -DHAVE_OPENDIR=1 -DHAVE_STRSTR=1 -DHAVE_STRTOL=1 -DHAVE_TMPNAM=1 -DHAVE_WAITPID=1 -DNO_VALUES_H=1 -DHAVE_UNISTD_H=1 -DUSE_TERMIOS=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_ST_BLKSIZE=1 -DSTDC_HEADERS=1 -DNO_UNION_WAIT=1 -DNEED_MATHERR=1 -DRETSIGTYPE=void -DHAVE_SIGNED_CHAR=1 -DHAVE_SYS_IOCTL_H=1  -I. -I/gdb-20001125-1/tcl/cygwin  -I/gdb-20001125-1/tcl/cygwin/../generic   -D__TCL_UNIX_VARIANT -DTCL_LIBRARY='"/usr/local/share/tcl8.0"' -DTCL_PACKAGE_PATH='"NONE/lib"' -g -O2 -c /gdb-20001125-1/tcl/cygwin/../generic/tclBasic.c
gcc -DPACKAGE=\"libtcl_cygwin\" -DVERSION=\"8.0\" -DHAVE_GETCWD=1 -DHAVE_OPENDIR=1 -DHAVE_STRSTR=1 -DHAVE_STRTOL=1 -DHAVE_TMPNAM=1 -DHAVE_WAITPID=1 -DNO_VALUES_H=1 -DHAVE_UNISTD_H=1 -DUSE_TERMIOS=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_ST_BLKSIZE=1 -DSTDC_HEADERS=1 -DNO_UNION_WAIT=1 -DNEED_MATHERR=1 -DRETSIGTYPE=void -DHAVE_SIGNED_CHAR=1 -DHAVE_SYS_IOCTL_H=1  -I. -I/gdb-20001125-1/tcl/cygwin  -I/gdb-20001125-1/tcl/cygwin/../generic   -D__TCL_UNIX_VARIANT -DTCL_LIBRARY='"/usr/local/share/tcl8.0"' -DTCL_PACKAGE_PATH='"NONE/lib"' -g -O2 -c /gdb-20001125-1/tcl/cygwin/../generic/tclBinary.c
gcc -DPACKAGE=\"libtcl_cygwin\" -DVERSION=\"8.0\" -DHAVE_GETCWD=1 -DHAVE_OPENDIR=1 -DHAVE_STRSTR=1 -DHAVE_STRTOL=1 -DHAVE_TMPNAM=1 -DHAVE_WAITPID=1 -DNO_VALUES_H=1 -DHAVE_UNISTD_H=1 -DUSE_TERMIOS=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_ST_BLKSIZE=1 -DSTDC_HEADERS=1 -DNO_UNION_WAIT=1 -DNEED_MATHERR=1 -DRETSIGTYPE=void -DHAVE_SIGNED_CHAR=1 -DHAVE_SYS_IOCTL_H=1  -I. -I/gdb-20001125-1/tcl/cygwin  -I/gdb-20001125-1/tcl/cygwin/../generic   -D__TCL_UNIX_VARIANT -DTCL_LIBRARY='"/usr/local/share/tcl8.0"' -DTCL_PACKAGE_PATH='"NONE/lib"' -g -O2 -c /gdb-20001125-1/tcl/cygwin/../generic/tclCkalloc.c
gcc -DPACKAGE=\"libtcl_cygwin\" -DVERSION=\"8.0\" -DHAVE_GETCWD=1 -DHAVE_OPENDIR=1 -DHAVE_STRSTR=1 -DHAVE_STRTOL=1 -DHAVE_TMPNAM=1 -DHAVE_WAITPID=1 -DNO_VALUES_H=1 -DHAVE_UNISTD_H=1 -DUSE_TERMIOS=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_ST_BLKSIZE=1 -DSTDC_HEADERS=1 -DNO_UNION_WAIT=1 -DNEED_MATHERR=1 -DRETSIGTYPE=void -DHAVE_SIGNED_CHAR=1 -DHAVE_SYS_IOCTL_H=1  -I. -I/gdb-20001125-1/tcl/cygwin  -I/gdb-20001125-1/tcl/cygwin/../generic   -D__TCL_UNIX_VARIANT -DTCL_LIBRARY='"/usr/local/share/tcl8.0"' -DTCL_PACKAGE_PATH='"NONE/lib"' -g -O2 -c /gdb-20001125-1/tcl/cygwin/../generic/tclClock.c
gcc -DPACKAGE=\"libtcl_cygwin\" -DVERSION=\"8.0\" -DHAVE_GETCWD=1 -DHAVE_OPENDIR=1 -DHAVE_STRSTR=1 -DHAVE_STRTOL=1 -DHAVE_TMPNAM=1 -DHAVE_WAITPID=1 -DNO_VALUES_H=1 -DHAVE_UNISTD_H=1 -DUSE_TERMIOS=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_ST_BLKSIZE=1 -DSTDC_HEADERS=1 -DNO_UNION_WAIT=1 -DNEED_MATHERR=1 -DRETSIGTYPE=void -DHAVE_SIGNED_CHAR=1 -DHAVE_SYS_IOCTL_H=1  -I. -I/gdb-20001125-1/tcl/cygwin  -I/gdb-20001125-1/tcl/cygwin/../generic   -D__TCL_UNIX_VARIANT -DTCL_LIBRARY='"/usr/local/share/tcl8.0"' -DTCL_PACKAGE_PATH='"NONE/lib"' -g -O2 -c /gdb-20001125-1/tcl/cygwin/../generic/tclCmdAH.c
gcc -DPACKAGE=\"libtcl_cygwin\" -DVERSION=\"8.0\" -DHAVE_GETCWD=1 -DHAVE_OPENDIR=1 -DHAVE_STRSTR=1 -DHAVE_STRTOL=1 -DHAVE_TMPNAM=1 -DHAVE_WAITPID=1 -DNO_VALUES_H=1 -DHAVE_UNISTD_H=1 -DUSE_TERMIOS=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_ST_BLKSIZE=1 -DSTDC_HEADERS=1 -DNO_UNION_WAIT=1 -DNEED_MATHERR=1 -DRETSIGTYPE=void -DHAVE_SIGNED_CHAR=1 -DHAVE_SYS_IOCTL_H=1  -I. -I/gdb-20001125-1/tcl/cygwin  -I/gdb-20001125-1/tcl/cygwin/../generic   -D__TCL_UNIX_VARIANT -DTCL_LIBRARY='"/usr/local/share/tcl8.0"' -DTCL_PACKAGE_PATH='"NONE/lib"' -g -O2 -c /gdb-20001125-1/tcl/cygwin/../generic/tclCmdIL.c
gcc -DPACKAGE=\"libtcl_cygwin\" -DVERSION=\"8.0\" -DHAVE_GETCWD=1 -DHAVE_OPENDIR=1 -DHAVE_STRSTR=1 -DHAVE_STRTOL=1 -DHAVE_TMPNAM=1 -DHAVE_WAITPID=1 -DNO_VALUES_H=1 -DHAVE_UNISTD_H=1 -DUSE_TERMIOS=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_ST_BLKSIZE=1 -DSTDC_HEADERS=1 -DNO_UNION_WAIT=1 -DNEED_MATHERR=1 -DRETSIGTYPE=void -DHAVE_SIGNED_CHAR=1 -DHAVE_SYS_IOCTL_H=1  -I. -I/gdb-20001125-1/tcl/cygwin  -I/gdb-20001125-1/tcl/cygwin/../generic   -D__TCL_UNIX_VARIANT -DTCL_LIBRARY='"/usr/local/share/tcl8.0"' -DTCL_PACKAGE_PATH='"NONE/lib"' -g -O2 -c /gdb-20001125-1/tcl/cygwin/../generic/tclCmdMZ.c
gcc -DPACKAGE=\"libtcl_cygwin\" -DVERSION=\"8.0\" -DHAVE_GETCWD=1 -DHAVE_OPENDIR=1 -DHAVE_STRSTR=1 -DHAVE_STRTOL=1 -DHAVE_TMPNAM=1 -DHAVE_WAITPID=1 -DNO_VALUES_H=1 -DHAVE_UNISTD_H=1 -DUSE_TERMIOS=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_ST_BLKSIZE=1 -DSTDC_HEADERS=1 -DNO_UNION_WAIT=1 -DNEED_MATHERR=1 -DRETSIGTYPE=void -DHAVE_SIGNED_CHAR=1 -DHAVE_SYS_IOCTL_H=1  -I. -I/gdb-20001125-1/tcl/cygwin  -I/gdb-20001125-1/tcl/cygwin/../generic   -D__TCL_UNIX_VARIANT -DTCL_LIBRARY='"/usr/local/share/tcl8.0"' -DTCL_PACKAGE_PATH='"NONE/lib"' -g -O2 -c /gdb-20001125-1/tcl/cygwin/../generic/tclCompExpr.c
gcc -DPACKAGE=\"libtcl_cygwin\" -DVERSION=\"8.0\" -DHAVE_GETCWD=1 -DHAVE_OPENDIR=1 -DHAVE_STRSTR=1 -DHAVE_STRTOL=1 -DHAVE_TMPNAM=1 -DHAVE_WAITPID=1 -DNO_VALUES_H=1 -DHAVE_UNISTD_H=1 -DUSE_TERMIOS=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_ST_BLKSIZE=1 -DSTDC_HEADERS=1 -DNO_UNION_WAIT=1 -DNEED_MATHERR=1 -DRETSIGTYPE=void -DHAVE_SIGNED_CHAR=1 -DHAVE_SYS_IOCTL_H=1  -I. -I/gdb-20001125-1/tcl/cygwin  -I/gdb-20001125-1/tcl/cygwin/../generic   -D__TCL_UNIX_VARIANT -DTCL_LIBRARY='"/usr/local/share/tcl8.0"' -DTCL_PACKAGE_PATH='"NONE/lib"' -g -O2 -c /gdb-20001125-1/tcl/cygwin/../generic/tclCompile.c
gcc -DPACKAGE=\"libtcl_cygwin\" -DVERSION=\"8.0\" -DHAVE_GETCWD=1 -DHAVE_OPENDIR=1 -DHAVE_STRSTR=1 -DHAVE_STRTOL=1 -DHAVE_TMPNAM=1 -DHAVE_WAITPID=1 -DNO_VALUES_H=1 -DHAVE_UNISTD_H=1 -DUSE_TERMIOS=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_ST_BLKSIZE=1 -DSTDC_HEADERS=1 -DNO_UNION_WAIT=1 -DNEED_MATHERR=1 -DRETSIGTYPE=void -DHAVE_SIGNED_CHAR=1 -DHAVE_SYS_IOCTL_H=1  -I. -I/gdb-20001125-1/tcl/cygwin  -I/gdb-20001125-1/tcl/cygwin/../generic   -D__TCL_UNIX_VARIANT -DTCL_LIBRARY='"/usr/local/share/tcl8.0"' -DTCL_PACKAGE_PATH='"NONE/lib"' -g -O2 -c /gdb-20001125-1/tcl/cygwin/../generic/tclDate.c
gcc -DPACKAGE=\"libtcl_cygwin\" -DVERSION=\"8.0\" -DHAVE_GETCWD=1 -DHAVE_OPENDIR=1 -DHAVE_STRSTR=1 -DHAVE_STRTOL=1 -DHAVE_TMPNAM=1 -DHAVE_WAITPID=1 -DNO_VALUES_H=1 -DHAVE_UNISTD_H=1 -DUSE_TERMIOS=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_ST_BLKSIZE=1 -DSTDC_HEADERS=1 -DNO_UNION_WAIT=1 -DNEED_MATHERR=1 -DRETSIGTYPE=void -DHAVE_SIGNED_CHAR=1 -DHAVE_SYS_IOCTL_H=1  -I. -I/gdb-20001125-1/tcl/cygwin  -I/gdb-20001125-1/tcl/cygwin/../generic   -D__TCL_UNIX_VARIANT -DTCL_LIBRARY='"/usr/local/share/tcl8.0"' -DTCL_PACKAGE_PATH='"NONE/lib"' -g -O2 -c /gdb-20001125-1/tcl/cygwin/../generic/tclEnv.c
In file included from /usr/include/w32api/windef.h:143,
                 from /usr/include/w32api/windows.h:96,
                 from /gdb-20001125-1/tcl/cygwin/../generic/tclEnv.c:750:
/usr/include/w32api/winnt.h:48: parse error before `CCHAR'
/usr/include/w32api/winnt.h:48: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:68: parse error before `*'
/usr/include/w32api/winnt.h:68: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:69: parse error before `*'
/usr/include/w32api/winnt.h:69: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:75: parse error before `TCHAR'
/usr/include/w32api/winnt.h:75: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:78: parse error before `TBYTE'
/usr/include/w32api/winnt.h:78: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:79: parse error before `*'
/usr/include/w32api/winnt.h:79: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:80: parse error before `*'
/usr/include/w32api/winnt.h:80: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:89: parse error before `*'
/usr/include/w32api/winnt.h:89: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:90: parse error before `*'
/usr/include/w32api/winnt.h:90: warning: data definition has no type or storage class
In file included from /usr/include/w32api/windef.h:143,
                 from /usr/include/w32api/windows.h:96,
                 from /gdb-20001125-1/tcl/cygwin/../generic/tclEnv.c:750:
/usr/include/w32api/winnt.h:1683: parse error before `LONG'
/usr/include/w32api/winnt.h:1683: warning: no semicolon at end of struct or union
/usr/include/w32api/winnt.h:1683: warning: no semicolon at end of struct or union
/usr/include/w32api/winnt.h:1686: parse error before `}'
/usr/include/w32api/winnt.h:1686: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:1687: parse error before `*'
/usr/include/w32api/winnt.h:1687: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:1696: parse error before `LUID'
/usr/include/w32api/winnt.h:1696: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:1699: parse error before `LUID'
/usr/include/w32api/winnt.h:1699: warning: no semicolon at end of struct or union
/usr/include/w32api/winnt.h:1701: parse error before `}'
/usr/include/w32api/winnt.h:1701: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:1703: parse error before `LUID_AND_ATTRIBUTES_ARRAY'
/usr/include/w32api/winnt.h:1703: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:1704: parse error before `*'
/usr/include/w32api/winnt.h:1704: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:1708: parse error before `LUID_AND_ATTRIBUTES'
/usr/include/w32api/winnt.h:1708: warning: no semicolon at end of struct or union
/usr/include/w32api/winnt.h:1709: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:1753: parse error before `CHAR'
/usr/include/w32api/winnt.h:1753: warning: no semicolon at end of struct or union
/usr/include/w32api/winnt.h:1754: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:1755: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:1757: parse error before `LUID'
/usr/include/w32api/winnt.h:1757: warning: no semicolon at end of struct or union
/usr/include/w32api/winnt.h:1758: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:1759: parse error before `ModifiedId'
/usr/include/w32api/winnt.h:1759: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:1760: parse error before `TokenSource'
/usr/include/w32api/winnt.h:1760: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:1761: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:1777: parse error before `LUID_AND_ATTRIBUTES'
/usr/include/w32api/winnt.h:1777: warning: no semicolon at end of struct or union
/usr/include/w32api/winnt.h:1778: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:1781: parse error before `LUID'
/usr/include/w32api/winnt.h:1781: warning: no semicolon at end of struct or union
/usr/include/w32api/winnt.h:1782: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:1783: parse error before `ExpirationTime'
/usr/include/w32api/winnt.h:1783: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:1790: parse error before `ModifiedId'
/usr/include/w32api/winnt.h:1790: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:1791: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:1808: `TokenSource' redeclared as different kind of symbol
/usr/include/w32api/winnt.h:1760: previous declaration of `TokenSource'
/usr/include/w32api/winnt.h:1808: warning: `TokenSource' was declared `extern' and later `static'
/usr/include/w32api/winnt.h:1808: `TokenType' redeclared as different kind of symbol
/usr/include/w32api/winnt.h:1784: previous declaration of `TokenType'
/usr/include/w32api/winnt.h:1822: parse error before `LARGE_INTEGER'
/usr/include/w32api/winnt.h:1822: warning: no semicolon at end of struct or union
/usr/include/w32api/winnt.h:1823: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:1856: parse error before `LARGE_INTEGER'
/usr/include/w32api/winnt.h:1856: warning: no semicolon at end of struct or union
/usr/include/w32api/winnt.h:1857: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:1861: parse error before `}'
/usr/include/w32api/winnt.h:1861: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:1885: parse error before `LARGE_INTEGER'
/usr/include/w32api/winnt.h:1885: warning: no semicolon at end of struct or union
/usr/include/w32api/winnt.h:1887: parse error before `}'
/usr/include/w32api/winnt.h:1887: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:1936: parse error before `LONG'
/usr/include/w32api/winnt.h:1936: warning: no semicolon at end of struct or union
/usr/include/w32api/winnt.h:1937: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:1941: parse error before `}'
/usr/include/w32api/winnt.h:1941: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:2098: parse error before `LONG'
/usr/include/w32api/winnt.h:2098: warning: no semicolon at end of struct or union
/usr/include/w32api/winnt.h:2099: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:2102: parse error before `CHAR'
/usr/include/w32api/winnt.h:2102: warning: no semicolon at end of struct or union
/usr/include/w32api/winnt.h:2103: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:2106: parse error before `ne_crc'
/usr/include/w32api/winnt.h:2106: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:2111: parse error before `ne_csip'
/usr/include/w32api/winnt.h:2111: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:2112: parse error before `ne_sssp'
/usr/include/w32api/winnt.h:2112: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:2121: parse error before `ne_nrestab'
/usr/include/w32api/winnt.h:2121: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:2131: parse error before `}'
/usr/include/w32api/winnt.h:2131: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:2170: parse error before `SHORT'
/usr/include/w32api/winnt.h:2170: warning: no semicolon at end of struct or union
/usr/include/w32api/winnt.h:2174: parse error before `}'
/usr/include/w32api/winnt.h:2174: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:2204: parse error before `SHORT'
/usr/include/w32api/winnt.h:2204: warning: no semicolon at end of struct or union
/usr/include/w32api/winnt.h:2204: warning: no semicolon at end of struct or union
/usr/include/w32api/winnt.h:2206: parse error before `}'
/usr/include/w32api/winnt.h:2206: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:2207: parse error before `}'
/usr/include/w32api/winnt.h:2207: warning: data definition has no type or storage class
/usr/include/w32api/winnt.h:2333: parse error before `CHAR'
/usr/include/w32api/winnt.h:2333: warning: no semicolon at end of struct or union
/usr/include/w32api/winnt.h:2334: warning: data definition has no type or storage class
In file included from /usr/include/w32api/windows.h:96,
                 from /gdb-20001125-1/tcl/cygwin/../generic/tclEnv.c:750:
/usr/include/w32api/windef.h:146: parse error before `LPARAM'
/usr/include/w32api/windef.h:146: warning: data definition has no type or storage class
/usr/include/w32api/windef.h:147: parse error before `LRESULT'
/usr/include/w32api/windef.h:147: warning: data definition has no type or storage class
/usr/include/w32api/windef.h:149: parse error before `HRESULT'
/usr/include/w32api/windef.h:149: warning: data definition has no type or storage class
/usr/include/w32api/windef.h:196: parse error before `LONG'
/usr/include/w32api/windef.h:196: warning: no semicolon at end of struct or union
/usr/include/w32api/windef.h:197: warning: data definition has no type or storage class
/usr/include/w32api/windef.h:198: parse error before `right'
/usr/include/w32api/windef.h:198: warning: data definition has no type or storage class
/usr/include/w32api/windef.h:199: parse error before `bottom'
/usr/include/w32api/windef.h:199: warning: data definition has no type or storage class
/usr/include/w32api/windef.h:200: warning: data definition has no type or storage class
/usr/include/w32api/windef.h:201: parse error before `*'
/usr/include/w32api/windef.h:201: warning: data definition has no type or storage class
/usr/include/w32api/windef.h:203: parse error before `LONG'
/usr/include/w32api/windef.h:203: warning: no semicolon at end of struct or union
/usr/include/w32api/windef.h:204: warning: data definition has no type or storage class
/usr/include/w32api/windef.h:205: parse error before `right'
/usr/include/w32api/windef.h:205: warning: data definition has no type or storage class
/usr/include/w32api/windef.h:206: parse error before `bottom'
/usr/include/w32api/windef.h:206: warning: data definition has no type or storage class
/usr/include/w32api/windef.h:207: warning: data definition has no type or storage class
/usr/include/w32api/windef.h:208: parse error before `*'
/usr/include/w32api/windef.h:208: warning: data definition has no type or storage class
/usr/include/w32api/windef.h:210: parse error before `LONG'
/usr/include/w32api/windef.h:210: warning: no semicolon at end of struct or union
/usr/include/w32api/windef.h:211: warning: data definition has no type or storage class
/usr/include/w32api/windef.h:212: warning: data definition has no type or storage class
/usr/include/w32api/windef.h:214: parse error before `LONG'
/usr/include/w32api/windef.h:214: warning: no semicolon at end of struct or union
/usr/include/w32api/windef.h:215: warning: data definition has no type or storage class
/usr/include/w32api/windef.h:216: warning: data definition has no type or storage class
/usr/include/w32api/windef.h:218: parse error before `SHORT'
/usr/include/w32api/windef.h:218: warning: no semicolon at end of struct or union
/usr/include/w32api/windef.h:219: warning: data definition has no type or storage class
/usr/include/w32api/windef.h:220: warning: data definition has no type or storage class
In file included from /usr/include/w32api/windows.h:97,
                 from /gdb-20001125-1/tcl/cygwin/../generic/tclEnv.c:750:
/usr/include/w32api/wincon.h:54: parse error before `CHAR'
/usr/include/w32api/wincon.h:54: warning: no semicolon at end of struct or union
/usr/include/w32api/wincon.h:54: warning: no semicolon at end of struct or union
/usr/include/w32api/wincon.h:55: warning: data definition has no type or storage class
/usr/include/w32api/wincon.h:56: conflicting types for `Attributes'
/usr/include/w32api/winnt.h:1700: previous declaration of `Attributes'
/usr/include/w32api/wincon.h:57: parse error before `}'
/usr/include/w32api/wincon.h:57: warning: data definition has no type or storage class
/usr/include/w32api/wincon.h:59: parse error before `SHORT'
/usr/include/w32api/wincon.h:59: warning: no semicolon at end of struct or union
/usr/include/w32api/wincon.h:60: warning: data definition has no type or storage class
/usr/include/w32api/wincon.h:61: parse error before `Right'
/usr/include/w32api/wincon.h:61: warning: data definition has no type or storage class
/usr/include/w32api/wincon.h:62: parse error before `Bottom'
/usr/include/w32api/wincon.h:62: warning: data definition has no type or storage class
/usr/include/w32api/wincon.h:63: warning: data definition has no type or storage class
/usr/include/w32api/wincon.h:69: parse error before `SHORT'
/usr/include/w32api/wincon.h:69: warning: no semicolon at end of struct or union
/usr/include/w32api/wincon.h:70: warning: data definition has no type or storage class
/usr/include/w32api/wincon.h:71: warning: data definition has no type or storage class
/usr/include/w32api/wincon.h:73: parse error before `COORD'
/usr/include/w32api/wincon.h:73: warning: no semicolon at end of struct or union
/usr/include/w32api/wincon.h:74: warning: data definition has no type or storage class
/usr/include/w32api/wincon.h:76: parse error before `srWindow'
/usr/include/w32api/wincon.h:76: warning: data definition has no type or storage class
/usr/include/w32api/wincon.h:77: parse error before `dwMaximumWindowSize'
/usr/include/w32api/wincon.h:77: warning: data definition has no type or storage class
/usr/include/w32api/wincon.h:78: warning: data definition has no type or storage class
/usr/include/w32api/wincon.h:87: parse error before `CHAR'
/usr/include/w32api/wincon.h:87: warning: no semicolon at end of struct or union
/usr/include/w32api/wincon.h:87: warning: no semicolon at end of struct or union
/usr/include/w32api/wincon.h:88: warning: data definition has no type or storage class
/usr/include/w32api/wincon.h:90: parse error before `}'
/usr/include/w32api/wincon.h:95: warning: `packed' attribute ignored
/usr/include/w32api/wincon.h:98: parse error before `COORD'
/usr/include/w32api/wincon.h:98: warning: no semicolon at end of struct or union
/usr/include/w32api/wincon.h:102: parse error before `}'
/usr/include/w32api/wincon.h:102: warning: data definition has no type or storage class
/usr/include/w32api/wincon.h:103: parse error before `COORD'
/usr/include/w32api/wincon.h:103: warning: no semicolon at end of struct or union
/usr/include/w32api/wincon.h:103: warning: data definition has no type or storage class
/usr/include/w32api/wincon.h:109: parse error before `KEY_EVENT_RECORD'
/usr/include/w32api/wincon.h:109: warning: no semicolon at end of struct or union
/usr/include/w32api/wincon.h:109: warning: no semicolon at end of struct or union
/usr/include/w32api/wincon.h:110: warning: data definition has no type or storage class
/usr/include/w32api/wincon.h:111: parse error before `WindowBufferSizeEvent'
/usr/include/w32api/wincon.h:111: warning: data definition has no type or storage class
/usr/include/w32api/wincon.h:114: parse error before `}'
/usr/include/w32api/wincon.h:114: warning: data definition has no type or storage class
/usr/include/w32api/wincon.h:115: parse error before `}'
/usr/include/w32api/wincon.h:115: warning: data definition has no type or storage class
/usr/include/w32api/wincon.h:119: parse error before `COORD'
/usr/include/w32api/wincon.h:120: parse error before `CHAR'
/usr/include/w32api/wincon.h:121: parse error before `COORD'
/usr/include/w32api/wincon.h:129: parse error before `PCONSOLE_SCREEN_BUFFER_INFO'
/usr/include/w32api/wincon.h:130: parse error before `DWORD'
/usr/include/w32api/wincon.h:132: warning: `__stdcall__' attribute directive ignored
/usr/include/w32api/wincon.h:132: parse error before `GetLargestConsoleWindowSize'
/usr/include/w32api/wincon.h:135: parse error before `PINPUT_RECORD'
/usr/include/w32api/wincon.h:136: parse error before `PINPUT_RECORD'
/usr/include/w32api/wincon.h:139: parse error before `PINPUT_RECORD'
/usr/include/w32api/wincon.h:140: parse error before `PINPUT_RECORD'
/usr/include/w32api/wincon.h:141: parse error before `COORD'
/usr/include/w32api/wincon.h:142: parse error before `LPSTR'
/usr/include/w32api/wincon.h:143: parse error before `COORD'
/usr/include/w32api/wincon.h:144: parse error before `PCHAR_INFO'
/usr/include/w32api/wincon.h:145: parse error before `PCHAR_INFO'
/usr/include/w32api/wincon.h:146: parse error before `*'
/usr/include/w32api/wincon.h:147: parse error before `*'
/usr/include/w32api/wincon.h:152: parse error before `COORD'
/usr/include/w32api/wincon.h:155: parse error before `COORD'
/usr/include/w32api/wincon.h:157: warning: parameter names (without types) in function declaration
/usr/include/w32api/wincon.h:159: parse error before `*'
/usr/include/w32api/wincon.h:162: parse error before `*'
/usr/include/w32api/wincon.h:163: parse error before `*'
/usr/include/w32api/wincon.h:164: parse error before `*'
/usr/include/w32api/wincon.h:165: parse error before `*'
/usr/include/w32api/wincon.h:166: parse error before `COORD'
/usr/include/w32api/wincon.h:167: parse error before `LPCSTR'
/usr/include/w32api/wincon.h:168: parse error before `COORD'
In file included from /usr/include/w32api/windows.h:100,
                 from /gdb-20001125-1/tcl/cygwin/../generic/tclEnv.c:750:
/usr/include/w32api/winbase.h:638: parse error before `LPSTR'
/usr/include/w32api/winbase.h:638: warning: no semicolon at end of struct or union
/usr/include/w32api/winbase.h:641: parse error before `}'
/usr/include/w32api/winbase.h:641: warning: data definition has no type or storage class
/usr/include/w32api/winbase.h:658: parse error before `OUTPUT_DEBUG_STRING_INFO'
/usr/include/w32api/winbase.h:658: warning: no semicolon at end of struct or union
/usr/include/w32api/winbase.h:658: warning: no semicolon at end of struct or union
/usr/include/w32api/winbase.h:660: parse error before `}'
/usr/include/w32api/winbase.h:660: warning: data definition has no type or storage class
/usr/include/w32api/winbase.h:661: parse error before `}'
/usr/include/w32api/winbase.h:661: warning: data definition has no type or storage class
/usr/include/w32api/winbase.h:671: parse error before `LPSTR'
/usr/include/w32api/winbase.h:671: warning: no semicolon at end of struct or union
/usr/include/w32api/winbase.h:672: warning: data definition has no type or storage class
/usr/include/w32api/winbase.h:673: parse error before `lpTitle'
/usr/include/w32api/winbase.h:673: warning: data definition has no type or storage class
/usr/include/w32api/winbase.h:688: parse error before `}'
/usr/include/w32api/winbase.h:688: warning: data definition has no type or storage class
/usr/include/w32api/winbase.h:726: parse error before `LONG'
/usr/include/w32api/winbase.h:726: warning: no semicolon at end of struct or union
/usr/include/w32api/winbase.h:727: warning: data definition has no type or storage class
/usr/include/w32api/winbase.h:731: parse error before `}'
/usr/include/w32api/winbase.h:731: warning: data definition has no type or storage class
/usr/include/w32api/winbase.h:759: parse error before `CHAR'
/usr/include/w32api/winbase.h:759: warning: no semicolon at end of struct or union
/usr/include/w32api/winbase.h:760: warning: data definition has no type or storage class
/usr/include/w32api/winbase.h:761: parse error before `}'
/usr/include/w32api/winbase.h:761: warning: data definition has no type or storage class
/usr/include/w32api/winbase.h:777: parse error before `LARGE_INTEGER'
/usr/include/w32api/winbase.h:777: warning: no semicolon at end of struct or union
/usr/include/w32api/winbase.h:780: parse error before `}'
/usr/include/w32api/winbase.h:780: warning: data definition has no type or storage class
/usr/include/w32api/winbase.h:797: parse error before `CHAR'
/usr/include/w32api/winbase.h:797: warning: no semicolon at end of struct or union
/usr/include/w32api/winbase.h:798: warning: data definition has no type or storage class
/usr/include/w32api/winbase.h:799: parse error before `}'
/usr/include/w32api/winbase.h:799: warning: data definition has no type or storage class
/usr/include/w32api/winbase.h:836: parse error before `LONG'
/usr/include/w32api/winbase.h:836: warning: no semicolon at end of struct or union
/usr/include/w32api/winbase.h:839: parse error before `StandardBias'
/usr/include/w32api/winbase.h:839: warning: data definition has no type or storage class
/usr/include/w32api/winbase.h:842: parse error before `DaylightBias'
/usr/include/w32api/winbase.h:842: warning: data definition has no type or storage class
/usr/include/w32api/winbase.h:843: warning: data definition has no type or storage class
/usr/include/w32api/winbase.h:850: parse error before `CHAR'
/usr/include/w32api/winbase.h:850: warning: no semicolon at end of struct or union
/usr/include/w32api/winbase.h:851: warning: data definition has no type or storage class
/usr/include/w32api/winbase.h:919: parse error before `CHAR'
/usr/include/w32api/winbase.h:919: warning: no semicolon at end of struct or union
/usr/include/w32api/winbase.h:920: warning: data definition has no type or storage class
/usr/include/w32api/winbase.h:928: parse error before `DWORD'
/usr/include/w32api/winbase.h:930: parse error before `LPCTSTR'
/usr/include/w32api/winbase.h:931: parse error before `LPCTSTR'
/usr/include/w32api/winbase.h:932: parse error before `LPTSTR'
/usr/include/w32api/winbase.h:934: warning: `__stdcall__' attribute directive ignored
/usr/include/w32api/winbase.h:934: `LONG' declared as function returning a function
/usr/include/w32api/winbase.h:935: parse error before `LPTOP_LEVEL_EXCEPTION_FILTER'
/usr/include/w32api/winbase.h:935: warning: data definition has no type or storage class
/usr/include/w32api/winbase.h:941: parse error before `LPSTR'
/usr/include/w32api/winbase.h:947: parse error before `LPCSTR'
/usr/include/w32api/winbase.h:949: parse error before `int'
/usr/include/w32api/winbase.h:950: `_llseek' declared as function returning a function
/usr/include/w32api/winbase.h:951: parse error before `int'
/usr/include/w32api/winbase.h:953: parse error before `LPCSTR'
/usr/include/w32api/winbase.h:955: parse error before `PPRIVILEGE_SET'
/usr/include/w32api/winbase.h:956: parse error before `LPVOID'
/usr/include/w32api/winbase.h:961: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:965: parse error before `PTOKEN_PRIVILEGES'
/usr/include/w32api/winbase.h:967: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:971: parse error before `LPCSTR'
/usr/include/w32api/winbase.h:977: parse error before `BOOL'
/usr/include/w32api/winbase.h:979: parse error before `LPDCB'
/usr/include/w32api/winbase.h:981: parse error before `LPDCB'
/usr/include/w32api/winbase.h:983: parse error before `PVOID'
/usr/include/w32api/winbase.h:989: parse error before `LPCSTR'
/usr/include/w32api/winbase.h:993: parse error before `HWND'
/usr/include/w32api/winbase.h:995: `CompareFileTime' declared as function returning a function
/usr/include/w32api/winbase.h:999: parse error before `BOOL'
/usr/include/w32api/winbase.h:1001: parse error before `LPPROGRESS_ROUTINE'
/usr/include/w32api/winbase.h:1012: parse error before `LPSECURITY_ATTRIBUTES'
/usr/include/w32api/winbase.h:1014: parse error before `LPSECURITY_ATTRIBUTES'
/usr/include/w32api/winbase.h:1016: parse error before `LPCSTR'
/usr/include/w32api/winbase.h:1019: parse error before `DWORD'
/usr/include/w32api/winbase.h:1021: parse error before `LPCSTR'
/usr/include/w32api/winbase.h:1023: parse error before `LPSECURITY_ATTRIBUTES'
/usr/include/w32api/winbase.h:1026: parse error before `DWORD'
/usr/include/w32api/winbase.h:1028: parse error before `LPCSTR'
/usr/include/w32api/winbase.h:1030: parse error before `DWORD'
/usr/include/w32api/winbase.h:1034: parse error before `LPSECURITY_ATTRIBUTES'
/usr/include/w32api/winbase.h:1036: parse error before `LPCSTR'
/usr/include/w32api/winbase.h:1039: parse error before `LPCSTR'
/usr/include/w32api/winbase.h:1043: parse error before `LPCSTR'
/usr/include/w32api/winbase.h:1047: parse error before `LPCSTR'
/usr/include/w32api/winbase.h:1052: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1054: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1067: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1068: parse error before `LPCSTR'
/usr/include/w32api/winbase.h:1070: parse error before `LPCSTR'
/usr/include/w32api/winbase.h:1080: parse error before `DWORD'
/usr/include/w32api/winbase.h:1082: parse error before `LPCSTR'
/usr/include/w32api/winbase.h:1088: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1092: parse error before `BOOL'
/usr/include/w32api/winbase.h:1094: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1096: parse error before `FINDEX_INFO_LEVELS'
/usr/include/w32api/winbase.h:1100: parse error before `LPWIN32_FIND_DATAA'
/usr/include/w32api/winbase.h:1102: parse error before `LPCSTR'
/usr/include/w32api/winbase.h:1104: parse error before `LPCSTR'
/usr/include/w32api/winbase.h:1109: parse error before `LPSTR'
/usr/include/w32api/winbase.h:1111: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1121: parse error before `LPSTR'
/usr/include/w32api/winbase.h:1123: parse error before `PDWORD'
/usr/include/w32api/winbase.h:1125: warning: `__stdcall__' attribute directive ignored
/usr/include/w32api/winbase.h:1125: conflicting types for `LPSTR'
/usr/include/w32api/winnt.h:68: previous declaration of `LPSTR'
/usr/include/w32api/winbase.h:1125: parse error before `GetCommandLineA'
/usr/include/w32api/winbase.h:1133: parse error before `PDWORD'
/usr/include/w32api/winbase.h:1135: parse error before `PDWORD'
/usr/include/w32api/winbase.h:1137: parse error before `LPSTR'
/usr/include/w32api/winbase.h:1139: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1146: parse error before `LPCOMMCONFIG'
/usr/include/w32api/winbase.h:1148: parse error before `PDWORD'
/usr/include/w32api/winbase.h:1150: parse error before `PULARGE_INTEGER'
/usr/include/w32api/winbase.h:1152: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1154: warning: `__stdcall__' attribute directive ignored
/usr/include/w32api/winbase.h:1154: parse error before `GetEnvironmentStrings'
/usr/include/w32api/winbase.h:1155: warning: `__stdcall__' attribute directive ignored
/usr/include/w32api/winbase.h:1155: parse error before `GetEnvironmentStringsA'
/usr/include/w32api/winbase.h:1157: parse error before `DWORD'
/usr/include/w32api/winbase.h:1161: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1163: parse error before `GET_FILEEX_INFO_LEVELS'
/usr/include/w32api/winbase.h:1164: parse error before `GET_FILEEX_INFO_LEVELS'
/usr/include/w32api/winbase.h:1166: parse error before `SECURITY_INFORMATION'
/usr/include/w32api/winbase.h:1172: parse error before `DWORD'
/usr/include/w32api/winbase.h:1179: parse error before `LPSTR'
/usr/include/w32api/winbase.h:1181: parse error before `DWORD'
/usr/include/w32api/winbase.h:1184: parse error before `LPSTR'
/usr/include/w32api/winbase.h:1186: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1188: parse error before `LPSTR'
/usr/include/w32api/winbase.h:1196: parse error before `INT'
/usr/include/w32api/winbase.h:1198: parse error before `DWORD'
/usr/include/w32api/winbase.h:1200: parse error before `DWORD'
/usr/include/w32api/winbase.h:1202: parse error before `DWORD'
/usr/include/w32api/winbase.h:1204: parse error before `PVOID'
/usr/include/w32api/winbase.h:1206: parse error before `LPCSTR'
/usr/include/w32api/winbase.h:1216: parse error before `INT'
/usr/include/w32api/winbase.h:1218: parse error before `DWORD'
/usr/include/w32api/winbase.h:1220: parse error before `DWORD'
/usr/include/w32api/winbase.h:1229: parse error before `DWORD'
/usr/include/w32api/winbase.h:1235: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1238: parse error before `UINT'
/usr/include/w32api/winbase.h:1248: parse error before `UINT'
/usr/include/w32api/winbase.h:1250: parse error before `LPSTR'
/usr/include/w32api/winbase.h:1258: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1260: parse error before `PDWORD'
/usr/include/w32api/winbase.h:1263: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1265: parse error before `DWORD'
/usr/include/w32api/winbase.h:1267: parse error before `UINT'
/usr/include/w32api/winbase.h:1270: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1276: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1281: parse error before `LPSTR'
/usr/include/w32api/winbase.h:1308: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1312: `InterlockedDecrement' declared as function returning a function
/usr/include/w32api/winbase.h:1313: parse error before `LONG'
/usr/include/w32api/winbase.h:1313: `InterlockedExchange' declared as function returning a function
/usr/include/w32api/winbase.h:1314: parse error before `LONG'
/usr/include/w32api/winbase.h:1314: `InterlockedExchangeAdd' declared as function returning a function
/usr/include/w32api/winbase.h:1315: `InterlockedIncrement' declared as function returning a function
/usr/include/w32api/winbase.h:1320: parse error before `UINT'
/usr/include/w32api/winbase.h:1329: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1331: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1332: parse error before `HANDLE'
/usr/include/w32api/winbase.h:1335: parse error before `PVOID'
/usr/include/w32api/winbase.h:1353: parse error before `DWORD'
/usr/include/w32api/winbase.h:1355: parse error before `PSID'
/usr/include/w32api/winbase.h:1357: parse error before `PSID'
/usr/include/w32api/winbase.h:1359: parse error before `PDWORD'
/usr/include/w32api/winbase.h:1361: parse error before `PDWORD'
/usr/include/w32api/winbase.h:1362: parse error before `PLUID'
/usr/include/w32api/winbase.h:1363: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1364: parse error before `PLUID'
/usr/include/w32api/winbase.h:1365: warning: `__stdcall__' attribute directive ignored
/usr/include/w32api/winbase.h:1365: parse error before `lstrcatA'
/usr/include/w32api/winbase.h:1367: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1368: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1371: warning: `__stdcall__' attribute directive ignored
/usr/include/w32api/winbase.h:1371: parse error before `lstrcpyA'
/usr/include/w32api/winbase.h:1372: warning: `__stdcall__' attribute directive ignored
/usr/include/w32api/winbase.h:1372: parse error before `lstrcpynA'
/usr/include/w32api/winbase.h:1375: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1383: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1384: parse error before `DWORD'
/usr/include/w32api/winbase.h:1389: parse error before `PVOID'
/usr/include/w32api/winbase.h:1391: parse error before `PVOID'
/usr/include/w32api/winbase.h:1393: parse error before `PVOID'
/usr/include/w32api/winbase.h:1394: parse error before `PPRIVILEGE_SET'
/usr/include/w32api/winbase.h:1395: parse error before `PVOID'
/usr/include/w32api/winbase.h:1396: parse error before `PPRIVILEGE_SET'
/usr/include/w32api/winbase.h:1397: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1399: parse error before `LPCSTR'
/usr/include/w32api/winbase.h:1400: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1403: parse error before `UINT'
/usr/include/w32api/winbase.h:1404: parse error before `LPCSTR'
/usr/include/w32api/winbase.h:1406: parse error before `LPCSTR'
/usr/include/w32api/winbase.h:1410: parse error before `LPCSTR'
/usr/include/w32api/winbase.h:1413: parse error before `LPCSTR'
/usr/include/w32api/winbase.h:1415: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1420: parse error before `PPRIVILEGE_SET'
/usr/include/w32api/winbase.h:1421: parse error before `HANDLE'
/usr/include/w32api/winbase.h:1422: parse error before `PPRIVILEGE_SET'
/usr/include/w32api/winbase.h:1425: parse error before `DWORD'
/usr/include/w32api/winbase.h:1427: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1428: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1437: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1441: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1443: parse error before `LPCSTR'
/usr/include/w32api/winbase.h:1448: parse error before `DWORD'
/usr/include/w32api/winbase.h:1456: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1458: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1460: parse error before `LPCOMMCONFIG'
/usr/include/w32api/winbase.h:1463: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1469: parse error before `DWORD'
/usr/include/w32api/winbase.h:1471: parse error before `PLONG'
/usr/include/w32api/winbase.h:1472: parse error before `SECURITY_INFORMATION'
/usr/include/w32api/winbase.h:1507: parse error before `*'
/usr/include/w32api/winbase.h:1509: warning: `__stdcall__' attribute directive ignored
/usr/include/w32api/winbase.h:1509: parse error before `SetUnhandledExceptionFilter'
/usr/include/w32api/winbase.h:1511: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1513: parse error before `*'
/usr/include/w32api/winbase.h:1522: parse error before `LPSYSTEMTIME'
/usr/include/w32api/winbase.h:1531: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1532: `UnhandledExceptionFilter' declared as function returning a function
/usr/include/w32api/winbase.h:1538: parse error before `LPCSTR'
/usr/include/w32api/winbase.h:1550: parse error before `DWORD'
/usr/include/w32api/winbase.h:1555: parse error before `DWORD'
/usr/include/w32api/winbase.h:1560: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1562: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1564: parse error before `PVOID'
/usr/include/w32api/winbase.h:1567: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1569: warning: parameter names (without types) in function declaration
/usr/include/w32api/winbase.h:1711: parse error before `STARTUPINFO'
/usr/include/w32api/winbase.h:1711: warning: data definition has no type or storage class
/usr/include/w32api/winbase.h:1712: parse error before `WIN32_FIND_DATA'
/usr/include/w32api/winbase.h:1712: warning: data definition has no type or storage class
/usr/include/w32api/winbase.h:1713: parse error before `HW_PROFILE_INFO'
/usr/include/w32api/winbase.h:1713: warning: data definition has no type or storage class
/usr/include/w32api/winbase.h:1714: parse error before `OSVERSIONINFO'
/usr/include/w32api/winbase.h:1714: warning: data definition has no type or storage class
In file included from /usr/include/w32api/windows.h:102,
                 from /gdb-20001125-1/tcl/cygwin/../generic/tclEnv.c:750:
/usr/include/w32api/wingdi.h:1162: field `bmType' declared as a function
/usr/include/w32api/wingdi.h:1163: field `bmWidth' declared as a function
/usr/include/w32api/wingdi.h:1164: field `bmHeight' declared as a function
/usr/include/w32api/wingdi.h:1165: field `bmWidthBytes' declared as a function
/usr/include/w32api/wingdi.h:1199: field `biWidth' declared as a function
/usr/include/w32api/wingdi.h:1200: field `biHeight' declared as a function
/usr/include/w32api/wingdi.h:1205: field `biXPelsPerMeter' declared as a function
/usr/include/w32api/wingdi.h:1206: field `biYPelsPerMeter' declared as a function
/usr/include/w32api/wingdi.h:1234: field `bV4Width' declared as a function
/usr/include/w32api/wingdi.h:1235: field `bV4Height' declared as a function
/usr/include/w32api/wingdi.h:1240: field `bV4XPelsPerMeter' declared as a function
/usr/include/w32api/wingdi.h:1241: field `bV4YPelsPerMeter' declared as a function
/usr/include/w32api/wingdi.h:1272: parse error before `SHORT'
/usr/include/w32api/wingdi.h:1272: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1273: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1274: parse error before `caColorfulness'
/usr/include/w32api/wingdi.h:1274: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1275: parse error before `caRedGreenTint'
/usr/include/w32api/wingdi.h:1275: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1276: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1354: parse error before `LPCTSTR'
/usr/include/w32api/wingdi.h:1354: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1355: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1356: parse error before `lpszDatatype'
/usr/include/w32api/wingdi.h:1356: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1358: parse error before `}'
/usr/include/w32api/wingdi.h:1358: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1365: parse error before `POINTL'
/usr/include/w32api/wingdi.h:1365: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1369: parse error before `}'
/usr/include/w32api/wingdi.h:1369: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1372: parse error before `RECTL'
/usr/include/w32api/wingdi.h:1372: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1373: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1374: parse error before `ptlEnd'
/usr/include/w32api/wingdi.h:1374: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1375: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1386: parse error before `RECTL'
/usr/include/w32api/wingdi.h:1386: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1400: parse error before `}'
/usr/include/w32api/wingdi.h:1400: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1404: field `lbHatch' declared as a function
/usr/include/w32api/wingdi.h:1418: field `lcsCSType' declared as a function
/usr/include/w32api/wingdi.h:1419: field `lcsIntent' declared as a function
/usr/include/w32api/wingdi.h:1424: parse error before `CHAR'
/usr/include/w32api/wingdi.h:1424: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1425: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1430: field `lcsCSType' declared as a function
/usr/include/w32api/wingdi.h:1431: field `lcsIntent' declared as a function
/usr/include/w32api/wingdi.h:1479: parse error before `POINT'
/usr/include/w32api/wingdi.h:1479: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1481: parse error before `}'
/usr/include/w32api/wingdi.h:1481: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1485: parse error before `LOGPEN'
/usr/include/w32api/wingdi.h:1485: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1486: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1489: parse error before `RECTL'
/usr/include/w32api/wingdi.h:1489: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1490: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1499: parse error before `RECTL'
/usr/include/w32api/wingdi.h:1499: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1500: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1514: field `lfHeight' declared as a function
/usr/include/w32api/wingdi.h:1515: field `lfWidth' declared as a function
/usr/include/w32api/wingdi.h:1516: field `lfEscapement' declared as a function
/usr/include/w32api/wingdi.h:1517: field `lfOrientation' declared as a function
/usr/include/w32api/wingdi.h:1518: field `lfWeight' declared as a function
/usr/include/w32api/wingdi.h:1527: parse error before `CHAR'
/usr/include/w32api/wingdi.h:1527: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1528: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1530: field `lfHeight' declared as a function
/usr/include/w32api/wingdi.h:1531: field `lfWidth' declared as a function
/usr/include/w32api/wingdi.h:1532: field `lfEscapement' declared as a function
/usr/include/w32api/wingdi.h:1533: field `lfOrientation' declared as a function
/usr/include/w32api/wingdi.h:1534: field `lfWeight' declared as a function
/usr/include/w32api/wingdi.h:1546: parse error before `LOGFONTA'
/usr/include/w32api/wingdi.h:1546: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1556: parse error before `}'
/usr/include/w32api/wingdi.h:1556: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1579: field `elpHatch' declared as a function
/usr/include/w32api/wingdi.h:1594: parse error before `POINTL'
/usr/include/w32api/wingdi.h:1594: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1597: parse error before `}'
/usr/include/w32api/wingdi.h:1597: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1605: parse error before `POINTL'
/usr/include/w32api/wingdi.h:1605: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1609: parse error before `rcl'
/usr/include/w32api/wingdi.h:1609: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1611: parse error before `}'
/usr/include/w32api/wingdi.h:1611: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1614: parse error before `RECTL'
/usr/include/w32api/wingdi.h:1614: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1618: parse error before `emrtext'
/usr/include/w32api/wingdi.h:1618: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1619: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1622: parse error before `RECTL'
/usr/include/w32api/wingdi.h:1622: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1623: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1626: parse error before `RECTL'
/usr/include/w32api/wingdi.h:1626: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1630: parse error before `}'
/usr/include/w32api/wingdi.h:1630: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1639: parse error before `RECTL'
/usr/include/w32api/wingdi.h:1639: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1642: parse error before `szlStroke'
/usr/include/w32api/wingdi.h:1642: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1644: parse error before `}'
/usr/include/w32api/wingdi.h:1644: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1652: parse error before `RECTL'
/usr/include/w32api/wingdi.h:1652: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1655: parse error before `}'
/usr/include/w32api/wingdi.h:1655: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1658: parse error before `POINTL'
/usr/include/w32api/wingdi.h:1658: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1659: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1662: parse error before `RECTL'
/usr/include/w32api/wingdi.h:1662: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1684: parse error before `}'
/usr/include/w32api/wingdi.h:1684: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1692: parse error before `POINTL'
/usr/include/w32api/wingdi.h:1692: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1693: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1696: parse error before `RECTL'
/usr/include/w32api/wingdi.h:1696: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1697: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1716: parse error before `}'
/usr/include/w32api/wingdi.h:1716: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1719: parse error before `RECTL'
/usr/include/w32api/wingdi.h:1719: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1721: parse error before `aptl'
/usr/include/w32api/wingdi.h:1721: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1723: parse error before `}'
/usr/include/w32api/wingdi.h:1723: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1726: parse error before `RECTL'
/usr/include/w32api/wingdi.h:1726: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1728: parse error before `apts'
/usr/include/w32api/wingdi.h:1728: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1730: parse error before `}'
/usr/include/w32api/wingdi.h:1730: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1733: parse error before `RECTL'
/usr/include/w32api/wingdi.h:1733: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1735: parse error before `aptl'
/usr/include/w32api/wingdi.h:1735: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1736: parse error before `}'
/usr/include/w32api/wingdi.h:1736: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1739: parse error before `RECTL'
/usr/include/w32api/wingdi.h:1739: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1741: parse error before `apts'
/usr/include/w32api/wingdi.h:1741: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1742: parse error before `}'
/usr/include/w32api/wingdi.h:1742: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1745: parse error before `RECTL'
/usr/include/w32api/wingdi.h:1745: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1749: parse error before `aptl'
/usr/include/w32api/wingdi.h:1749: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1750: parse error before `}'
/usr/include/w32api/wingdi.h:1750: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1753: parse error before `RECTL'
/usr/include/w32api/wingdi.h:1753: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1757: parse error before `apts'
/usr/include/w32api/wingdi.h:1757: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1758: parse error before `}'
/usr/include/w32api/wingdi.h:1758: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1761: parse error before `RECTL'
/usr/include/w32api/wingdi.h:1761: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1766: parse error before `aemrtext'
/usr/include/w32api/wingdi.h:1766: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1767: parse error before `}'
/usr/include/w32api/wingdi.h:1767: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1775: field `iRelative' declared as a function
/usr/include/w32api/wingdi.h:1779: parse error before `RECTL'
/usr/include/w32api/wingdi.h:1779: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1780: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1781: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1784: field `xNum' declared as a function
/usr/include/w32api/wingdi.h:1785: field `xDenom' declared as a function
/usr/include/w32api/wingdi.h:1786: field `yNum' declared as a function
/usr/include/w32api/wingdi.h:1787: field `yDenom' declared as a function
/usr/include/w32api/wingdi.h:1811: parse error before `COLORADJUSTMENT'
/usr/include/w32api/wingdi.h:1811: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1812: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1815: parse error before `RECTL'
/usr/include/w32api/wingdi.h:1815: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1829: parse error before `}'
/usr/include/w32api/wingdi.h:1829: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1847: parse error before `POINTL'
/usr/include/w32api/wingdi.h:1847: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1849: parse error before `}'
/usr/include/w32api/wingdi.h:1849: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1852: parse error before `SIZEL'
/usr/include/w32api/wingdi.h:1852: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1853: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1856: parse error before `POINTL'
/usr/include/w32api/wingdi.h:1856: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1857: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1864: parse error before `RECTL'
/usr/include/w32api/wingdi.h:1864: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1881: parse error before `}'
/usr/include/w32api/wingdi.h:1881: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1884: parse error before `RECTL'
/usr/include/w32api/wingdi.h:1884: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1899: parse error before `}'
/usr/include/w32api/wingdi.h:1899: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1921: parse error before `RECTL'
/usr/include/w32api/wingdi.h:1921: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1922: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1932: parse error before `szlDevice'
/usr/include/w32api/wingdi.h:1932: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1933: parse error before `szlMillimeters'
/usr/include/w32api/wingdi.h:1933: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1934: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:1949: field `tmHeight' declared as a function
/usr/include/w32api/wingdi.h:1950: field `tmAscent' declared as a function
/usr/include/w32api/wingdi.h:1951: field `tmDescent' declared as a function
/usr/include/w32api/wingdi.h:1952: field `tmInternalLeading' declared as a function
/usr/include/w32api/wingdi.h:1953: field `tmExternalLeading' declared as a function
/usr/include/w32api/wingdi.h:1954: field `tmAveCharWidth' declared as a function
/usr/include/w32api/wingdi.h:1955: field `tmMaxCharWidth' declared as a function
/usr/include/w32api/wingdi.h:1956: field `tmWeight' declared as a function
/usr/include/w32api/wingdi.h:1957: field `tmOverhang' declared as a function
/usr/include/w32api/wingdi.h:1958: field `tmDigitizedAspectX' declared as a function
/usr/include/w32api/wingdi.h:1959: field `tmDigitizedAspectY' declared as a function
/usr/include/w32api/wingdi.h:1971: field `tmHeight' declared as a function
/usr/include/w32api/wingdi.h:1972: field `tmAscent' declared as a function
/usr/include/w32api/wingdi.h:1973: field `tmDescent' declared as a function
/usr/include/w32api/wingdi.h:1974: field `tmInternalLeading' declared as a function
/usr/include/w32api/wingdi.h:1975: field `tmExternalLeading' declared as a function
/usr/include/w32api/wingdi.h:1976: field `tmAveCharWidth' declared as a function
/usr/include/w32api/wingdi.h:1977: field `tmMaxCharWidth' declared as a function
/usr/include/w32api/wingdi.h:1978: field `tmWeight' declared as a function
/usr/include/w32api/wingdi.h:1979: field `tmOverhang' declared as a function
/usr/include/w32api/wingdi.h:1980: field `tmDigitizedAspectX' declared as a function
/usr/include/w32api/wingdi.h:1981: field `tmDigitizedAspectY' declared as a function
/usr/include/w32api/wingdi.h:1997: parse error before `RECT'
/usr/include/w32api/wingdi.h:1997: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:1998: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2000: parse error before `RGNDATAHEADER'
/usr/include/w32api/wingdi.h:2000: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:2002: parse error before `}'
/usr/include/w32api/wingdi.h:2002: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2005: parse error before `LPSTR'
/usr/include/w32api/wingdi.h:2005: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:2009: parse error before `lpClass'
/usr/include/w32api/wingdi.h:2009: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2013: parse error before `}'
/usr/include/w32api/wingdi.h:2013: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2028: parse error before `POINT'
/usr/include/w32api/wingdi.h:2028: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:2031: parse error before `}'
/usr/include/w32api/wingdi.h:2031: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2063: parse error before `RECT'
/usr/include/w32api/wingdi.h:2063: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:2068: parse error before `otmptSubscriptSize'
/usr/include/w32api/wingdi.h:2068: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2069: parse error before `otmptSubscriptOffset'
/usr/include/w32api/wingdi.h:2069: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2070: parse error before `otmptSuperscriptSize'
/usr/include/w32api/wingdi.h:2070: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2071: parse error before `otmptSuperscriptOffset'
/usr/include/w32api/wingdi.h:2071: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2076: parse error before `otmpFamilyName'
/usr/include/w32api/wingdi.h:2076: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2077: parse error before `otmpFaceName'
/usr/include/w32api/wingdi.h:2077: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2078: parse error before `otmpStyleName'
/usr/include/w32api/wingdi.h:2078: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2079: parse error before `otmpFullName'
/usr/include/w32api/wingdi.h:2079: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2080: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2097: parse error before `RECT'
/usr/include/w32api/wingdi.h:2097: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:2102: parse error before `otmptSubscriptSize'
/usr/include/w32api/wingdi.h:2102: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2103: parse error before `otmptSubscriptOffset'
/usr/include/w32api/wingdi.h:2103: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2104: parse error before `otmptSuperscriptSize'
/usr/include/w32api/wingdi.h:2104: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2105: parse error before `otmptSuperscriptOffset'
/usr/include/w32api/wingdi.h:2105: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2110: parse error before `otmpFamilyName'
/usr/include/w32api/wingdi.h:2110: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2111: parse error before `otmpFaceName'
/usr/include/w32api/wingdi.h:2111: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2112: parse error before `otmpStyleName'
/usr/include/w32api/wingdi.h:2112: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2113: parse error before `otmpFullName'
/usr/include/w32api/wingdi.h:2113: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2114: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2124: parse error before `LPCSTR'
/usr/include/w32api/wingdi.h:2124: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:2126: parse error before `rcl'
/usr/include/w32api/wingdi.h:2126: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2128: parse error before `}'
/usr/include/w32api/wingdi.h:2128: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2135: parse error before `RECT'
/usr/include/w32api/wingdi.h:2135: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:2137: parse error before `}'
/usr/include/w32api/wingdi.h:2137: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2167: field `mm' declared as a function
/usr/include/w32api/wingdi.h:2168: field `xExt' declared as a function
/usr/include/w32api/wingdi.h:2169: field `yExt' declared as a function
/usr/include/w32api/wingdi.h:2180: field `tmHeight' declared as a function
/usr/include/w32api/wingdi.h:2181: field `tmAscent' declared as a function
/usr/include/w32api/wingdi.h:2182: field `tmDescent' declared as a function
/usr/include/w32api/wingdi.h:2183: field `tmInternalLeading' declared as a function
/usr/include/w32api/wingdi.h:2184: field `tmExternalLeading' declared as a function
/usr/include/w32api/wingdi.h:2185: field `tmAveCharWidth' declared as a function
/usr/include/w32api/wingdi.h:2186: field `tmMaxCharWidth' declared as a function
/usr/include/w32api/wingdi.h:2187: field `tmWeight' declared as a function
/usr/include/w32api/wingdi.h:2188: field `tmOverhang' declared as a function
/usr/include/w32api/wingdi.h:2189: field `tmDigitizedAspectX' declared as a function
/usr/include/w32api/wingdi.h:2190: field `tmDigitizedAspectY' declared as a function
/usr/include/w32api/wingdi.h:2206: field `tmHeight' declared as a function
/usr/include/w32api/wingdi.h:2207: field `tmAscent' declared as a function
/usr/include/w32api/wingdi.h:2208: field `tmDescent' declared as a function
/usr/include/w32api/wingdi.h:2209: field `tmInternalLeading' declared as a function
/usr/include/w32api/wingdi.h:2210: field `tmExternalLeading' declared as a function
/usr/include/w32api/wingdi.h:2211: field `tmAveCharWidth' declared as a function
/usr/include/w32api/wingdi.h:2212: field `tmMaxCharWidth' declared as a function
/usr/include/w32api/wingdi.h:2213: field `tmWeight' declared as a function
/usr/include/w32api/wingdi.h:2214: field `tmOverhang' declared as a function
/usr/include/w32api/wingdi.h:2215: field `tmDigitizedAspectX' declared as a function
/usr/include/w32api/wingdi.h:2216: field `tmDigitizedAspectY' declared as a function
/usr/include/w32api/wingdi.h:2241: field `paXCount' declared as a function
/usr/include/w32api/wingdi.h:2242: field `paYCount' declared as a function
/usr/include/w32api/wingdi.h:2243: field `paXExt' declared as a function
/usr/include/w32api/wingdi.h:2244: field `paYExt' declared as a function
/usr/include/w32api/wingdi.h:2248: parse error before `LOGFONTA'
/usr/include/w32api/wingdi.h:2248: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:2251: parse error before `}'
/usr/include/w32api/wingdi.h:2251: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2258: parse error before `LOGFONTA'
/usr/include/w32api/wingdi.h:2258: warning: no semicolon at end of struct or union
/usr/include/w32api/wingdi.h:2262: parse error before `}'
/usr/include/w32api/wingdi.h:2262: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2321: parse error before `LPARAM'
/usr/include/w32api/wingdi.h:2322: parse error before `LPARAM'
/usr/include/w32api/wingdi.h:2323: parse error before `*'
/usr/include/w32api/wingdi.h:2324: parse error before `LPARAM'
/usr/include/w32api/wingdi.h:2327: warning: parameter names (without types) in function declaration
/usr/include/w32api/wingdi.h:2328: parse error before `LPARAM'
/usr/include/w32api/wingdi.h:2329: parse error before `LPARAM'
/usr/include/w32api/wingdi.h:2330: parse error before `LPARAM'
/usr/include/w32api/wingdi.h:2331: parse error before `LPSTR'
/usr/include/w32api/wingdi.h:2332: parse error before `UINT'
/usr/include/w32api/wingdi.h:2342: warning: parameter names (without types) in function declaration
/usr/include/w32api/wingdi.h:2360: parse error before `LPCSTR'
/usr/include/w32api/wingdi.h:2362: parse error before `LPCSTR'
/usr/include/w32api/wingdi.h:2367: warning: parameter names (without types) in function declaration
/usr/include/w32api/wingdi.h:2371: parse error before `const'
/usr/include/w32api/wingdi.h:2379: warning: parameter names (without types) in function declaration
/usr/include/w32api/wingdi.h:2380: parse error before `LPCSTR'
/usr/include/w32api/wingdi.h:2381: parse error before `LPCRECT'
/usr/include/w32api/wingdi.h:2382: parse error before `LPCSTR'
/usr/include/w32api/wingdi.h:2384: parse error before `*'
/usr/include/w32api/wingdi.h:2388: parse error before `const'
/usr/include/w32api/wingdi.h:2390: warning: parameter names (without types) in function declaration
/usr/include/w32api/wingdi.h:2395: parse error before `*'
/usr/include/w32api/wingdi.h:2396: parse error before `*'
/usr/include/w32api/wingdi.h:2397: parse error before `*'
/usr/include/w32api/wingdi.h:2399: warning: parameter names (without types) in function declaration
/usr/include/w32api/wingdi.h:2401: parse error before `LPCSTR'
/usr/include/w32api/wingdi.h:2410: parse error before `WORD'
/usr/include/w32api/wingdi.h:2412: parse error before `LPPOINT'
/usr/include/w32api/wingdi.h:2413: parse error before `LPCSTR'
/usr/include/w32api/wingdi.h:2418: parse error before `LPCRECT'
/usr/include/w32api/wingdi.h:2419: parse error before `LPCSTR'
/usr/include/w32api/wingdi.h:2420: parse error before `LPARAM'
/usr/include/w32api/wingdi.h:2421: parse error before `PLOGFONTA'
/usr/include/w32api/wingdi.h:2422: parse error before `LPARAM'
/usr/include/w32api/wingdi.h:2423: parse error before `LPCSTR'
/usr/include/w32api/wingdi.h:2424: parse error before `LPARAM'
/usr/include/w32api/wingdi.h:2425: parse error before `LPARAM'
/usr/include/w32api/wingdi.h:2426: parse error before `LPARAM'
/usr/include/w32api/wingdi.h:2427: parse error before `LPARAM'
/usr/include/w32api/wingdi.h:2428: parse error before `LPARAM'
/usr/include/w32api/wingdi.h:2430: parse error before `LPCSTR'
/usr/include/w32api/wingdi.h:2434: parse error before `*'
/usr/include/w32api/wingdi.h:2435: parse error before `LPCSTR'
/usr/include/w32api/wingdi.h:2438: parse error before `LPCRECT'
/usr/include/w32api/wingdi.h:2439: parse error before `LPCRECT'
/usr/include/w32api/wingdi.h:2441: parse error before `LPCRECT'
/usr/include/w32api/wingdi.h:2443: parse error before `LPPOINT'
/usr/include/w32api/wingdi.h:2459: parse error before `LPSIZE'
/usr/include/w32api/wingdi.h:2460: `GetBitmapBits' declared as function returning a function
/usr/include/w32api/wingdi.h:2461: parse error before `LPSIZE'
/usr/include/w32api/wingdi.h:2464: parse error before `LPRECT'
/usr/include/w32api/wingdi.h:2465: parse error before `LPPOINT'
/usr/include/w32api/wingdi.h:2470: parse error before `LPCSTR'
/usr/include/w32api/wingdi.h:2478: parse error before `LPRECT'
/usr/include/w32api/wingdi.h:2480: parse error before `LPCOLORADJUSTMENT'
/usr/include/w32api/wingdi.h:2483: parse error before `LPPOINT'
/usr/include/w32api/wingdi.h:2485: parse error before `LPPOINT'
/usr/include/w32api/wingdi.h:2490: warning: parameter names (without types) in function declaration
/usr/include/w32api/wingdi.h:2492: parse error before `LPSTR'
/usr/include/w32api/wingdi.h:2494: parse error before `LPENHMETAHEADER'
/usr/include/w32api/wingdi.h:2499: parse error before `LPGLYPHMETRICS'
/usr/include/w32api/wingdi.h:2500: parse error before `LPGLYPHMETRICS'
/usr/include/w32api/wingdi.h:2502: parse error before `LPSTR'
/usr/include/w32api/wingdi.h:2506: parse error before `LPLOGCOLORSPACEA'
/usr/include/w32api/wingdi.h:2509: warning: parameter names (without types) in function declaration
/usr/include/w32api/wingdi.h:2519: parse error before `LPOUTLINETEXTMETRICA'
/usr/include/w32api/wingdi.h:2520: parse error before `LPOUTLINETEXTMETRICW'
/usr/include/w32api/wingdi.h:2522: parse error before `LPPOINT'
/usr/include/w32api/wingdi.h:2527: parse error before `LPRGNDATA'
/usr/include/w32api/wingdi.h:2528: parse error before `LPRECT'
/usr/include/w32api/wingdi.h:2539: parse error before `LPCSTR'
/usr/include/w32api/wingdi.h:2540: parse error before `LPSIZE'
/usr/include/w32api/wingdi.h:2541: parse error before `LPCSTR'
/usr/include/w32api/wingdi.h:2542: parse error before `LPSIZE'
/usr/include/w32api/wingdi.h:2543: parse error before `LPCSTR'
/usr/include/w32api/wingdi.h:2544: parse error before `LPSIZE'
/usr/include/w32api/wingdi.h:2545: parse error before `LPSTR'
/usr/include/w32api/wingdi.h:2549: parse error before `LPSIZE'
/usr/include/w32api/wingdi.h:2550: parse error before `LPPOINT'
/usr/include/w32api/wingdi.h:2551: parse error before `LPSIZE'
/usr/include/w32api/wingdi.h:2552: parse error before `LPPOINT'
/usr/include/w32api/wingdi.h:2557: parse error before `LPARAM'
/usr/include/w32api/wingdi.h:2559: parse error before `LPPOINT'
/usr/include/w32api/wingdi.h:2562: parse error before `LPPOINT'
/usr/include/w32api/wingdi.h:2565: parse error before `LPPOINT'
/usr/include/w32api/wingdi.h:2566: parse error before `LPPOINT'
/usr/include/w32api/wingdi.h:2571: parse error before `LPCRECT'
/usr/include/w32api/wingdi.h:2575: parse error before `*'
/usr/include/w32api/wingdi.h:2576: parse error before `*'
/usr/include/w32api/wingdi.h:2577: parse error before `*'
/usr/include/w32api/wingdi.h:2578: parse error before `*'
/usr/include/w32api/wingdi.h:2579: parse error before `*'
/usr/include/w32api/wingdi.h:2580: parse error before `*'
/usr/include/w32api/wingdi.h:2581: parse error before `*'
/usr/include/w32api/wingdi.h:2582: parse error before `*'
/usr/include/w32api/wingdi.h:2583: parse error before `*'
/usr/include/w32api/wingdi.h:2584: parse error before `*'
/usr/include/w32api/wingdi.h:2585: parse error before `*'
/usr/include/w32api/wingdi.h:2590: parse error before `LPCRECT'
/usr/include/w32api/wingdi.h:2591: parse error before `LPCRECT'
/usr/include/w32api/wingdi.h:2592: warning: parameter names (without types) in function declaration
/usr/include/w32api/wingdi.h:2600: parse error before `LPSIZE'
/usr/include/w32api/wingdi.h:2601: parse error before `LPSIZE'
/usr/include/w32api/wingdi.h:2608: `SetBitmapBits' declared as function returning a function
/usr/include/w32api/wingdi.h:2609: parse error before `LPSIZE'
/usr/include/w32api/wingdi.h:2612: parse error before `LPCRECT'
/usr/include/w32api/wingdi.h:2613: parse error before `LPPOINT'
/usr/include/w32api/wingdi.h:2614: parse error before `*'
/usr/include/w32api/wingdi.h:2623: parse error before `LPSTR'
/usr/include/w32api/wingdi.h:2643: parse error before `LPSIZE'
/usr/include/w32api/wingdi.h:2644: parse error before `LPPOINT'
/usr/include/w32api/wingdi.h:2645: parse error before `LPSIZE'
/usr/include/w32api/wingdi.h:2646: parse error before `LPPOINT'
/usr/include/w32api/wingdi.h:2649: parse error before `*'
/usr/include/w32api/wingdi.h:2650: parse error before `*'
/usr/include/w32api/wingdi.h:2657: parse error before `LPCSTR'
/usr/include/w32api/wingdi.h:2662: parse error before `LPSTR'
/usr/include/w32api/wingdi.h:2673: warning: parameter names (without types) in function declaration
/usr/include/w32api/wingdi.h:2747: parse error before `LOGFONT'
/usr/include/w32api/wingdi.h:2747: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2752: parse error before `EXTLOGFONT'
/usr/include/w32api/wingdi.h:2752: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2753: parse error before `GCP_RESULTS'
/usr/include/w32api/wingdi.h:2753: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2754: parse error before `OUTLINETEXTMETRIC'
/usr/include/w32api/wingdi.h:2754: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2755: parse error before `POLYTEXT'
/usr/include/w32api/wingdi.h:2755: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2756: parse error before `LOGCOLORSPACE'
/usr/include/w32api/wingdi.h:2756: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2759: parse error before `ENUMLOGFONT'
/usr/include/w32api/wingdi.h:2759: warning: data definition has no type or storage class
/usr/include/w32api/wingdi.h:2760: parse error before `ENUMLOGFONTEX'
/usr/include/w32api/wingdi.h:2760: warning: data definition has no type or storage class
In file included from /usr/include/w32api/windows.h:105,
                 from /gdb-20001125-1/tcl/cygwin/../generic/tclEnv.c:750:
/usr/include/w32api/winuser.h:1853: parse error before `LPARAM'
/usr/include/w32api/winuser.h:1855: parse error before `LPARAM'
/usr/include/w32api/winuser.h:1856: warning: `__stdcall__' attribute directive ignored
/usr/include/w32api/winuser.h:1856: parse error before `LPARAM'
/usr/include/w32api/winuser.h:1856: `LRESULT' declared as function returning a function
/usr/include/w32api/winuser.h:1856: `LRESULT' redeclared as different kind of symbol
/usr/include/w32api/windef.h:147: previous declaration of `LRESULT'
/usr/include/w32api/winuser.h:1857: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:1859: parse error before `LPSTR'
/usr/include/w32api/winuser.h:1861: parse error before `int'
/usr/include/w32api/winuser.h:1863: parse error before `LPARAM'
/usr/include/w32api/winuser.h:1863: `WNDPROC' declared as function returning a function
/usr/include/w32api/winuser.h:1864: parse error before `LPARAM'
/usr/include/w32api/winuser.h:1865: parse error before `LPARAM'
/usr/include/w32api/winuser.h:1866: parse error before `LPARAM'
/usr/include/w32api/winuser.h:1867: warning: parameter names (without types) in function declaration
/usr/include/w32api/winuser.h:1868: parse error before `LPARAM'
/usr/include/w32api/winuser.h:1899: field `style' declared as a function
/usr/include/w32api/winuser.h:1900: parse error before `LPCTSTR'
/usr/include/w32api/winuser.h:1900: warning: no semicolon at end of struct or union
/usr/include/w32api/winuser.h:1901: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:1903: parse error before `}'
/usr/include/w32api/winuser.h:1903: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:1905: parse error before `LPCREATESTRUCT'
/usr/include/w32api/winuser.h:1905: warning: no semicolon at end of struct or union
/usr/include/w32api/winuser.h:1907: parse error before `}'
/usr/include/w32api/winuser.h:1907: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:1941: field `lResult' declared as a function
/usr/include/w32api/winuser.h:1942: parse error before `LPARAM'
/usr/include/w32api/winuser.h:1942: warning: no semicolon at end of struct or union
/usr/include/w32api/winuser.h:1946: parse error before `}'
/usr/include/w32api/winuser.h:1946: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:1948: parse error before `LPARAM'
/usr/include/w32api/winuser.h:1948: warning: no semicolon at end of struct or union
/usr/include/w32api/winuser.h:1950: conflicting types for `message'
/usr/include/w32api/winuser.h:1944: previous declaration of `message'
/usr/include/w32api/winuser.h:1952: parse error before `}'
/usr/include/w32api/winuser.h:1952: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:1956: parse error before `LPARAM'
/usr/include/w32api/winuser.h:1956: warning: no semicolon at end of struct or union
/usr/include/w32api/winuser.h:1959: parse error before `}'
/usr/include/w32api/winuser.h:1959: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:1996: parse error before `RECT'
/usr/include/w32api/winuser.h:1996: warning: no semicolon at end of struct or union
/usr/include/w32api/winuser.h:1998: parse error before `}'
/usr/include/w32api/winuser.h:1998: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2009: parse error before `RECT'
/usr/include/w32api/winuser.h:2009: warning: no semicolon at end of struct or union
/usr/include/w32api/winuser.h:2013: parse error before `}'
/usr/include/w32api/winuser.h:2013: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2018: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2018: warning: no semicolon at end of struct or union
/usr/include/w32api/winuser.h:2019: `time' redeclared as different kind of symbol
/usr/include/time.h:50: previous declaration of `time'
/usr/include/w32api/winuser.h:2020: parse error before `pt'
/usr/include/w32api/winuser.h:2020: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2021: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2043: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2043: warning: no semicolon at end of struct or union
/usr/include/w32api/winuser.h:2044: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2045: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2068: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2068: warning: no semicolon at end of struct or union
/usr/include/w32api/winuser.h:2069: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2071: parse error before `}'
/usr/include/w32api/winuser.h:2071: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2096: parse error before `LPSTR'
/usr/include/w32api/winuser.h:2096: warning: no semicolon at end of struct or union
/usr/include/w32api/winuser.h:2101: parse error before `}'
/usr/include/w32api/winuser.h:2101: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2102: parse error before `*'
/usr/include/w32api/winuser.h:2102: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2134: parse error before `POINT'
/usr/include/w32api/winuser.h:2134: warning: no semicolon at end of struct or union
/usr/include/w32api/winuser.h:2135: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2136: parse error before `rcNormalPosition'
/usr/include/w32api/winuser.h:2136: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2137: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2154: parse error before `POINT'
/usr/include/w32api/winuser.h:2154: warning: no semicolon at end of struct or union
/usr/include/w32api/winuser.h:2155: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2156: warning: parameter names (without types) in function declaration
/usr/include/w32api/winuser.h:2161: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2161: warning: no semicolon at end of struct or union
/usr/include/w32api/winuser.h:2162: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2164: parse error before `lpszIcon'
/usr/include/w32api/winuser.h:2164: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2168: parse error before `}'
/usr/include/w32api/winuser.h:2168: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2197: parse error before `LPSTR'
/usr/include/w32api/winuser.h:2197: warning: no semicolon at end of struct or union
/usr/include/w32api/winuser.h:2198: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2209: parse error before `LOGFONTA'
/usr/include/w32api/winuser.h:2209: warning: no semicolon at end of struct or union
/usr/include/w32api/winuser.h:2210: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2232: parse error before `LOGFONTA'
/usr/include/w32api/winuser.h:2232: warning: no semicolon at end of struct or union
/usr/include/w32api/winuser.h:2235: parse error before `lfSmCaptionFont'
/usr/include/w32api/winuser.h:2235: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2238: parse error before `lfMenuFont'
/usr/include/w32api/winuser.h:2238: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2239: parse error before `lfStatusFont'
/usr/include/w32api/winuser.h:2239: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2240: parse error before `lfMessageFont'
/usr/include/w32api/winuser.h:2240: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2241: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2262: parse error before `LPSTR'
/usr/include/w32api/winuser.h:2262: warning: no semicolon at end of struct or union
/usr/include/w32api/winuser.h:2263: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2267: parse error before `}'
/usr/include/w32api/winuser.h:2267: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2288: parse error before `LPSTR'
/usr/include/w32api/winuser.h:2288: warning: no semicolon at end of struct or union
/usr/include/w32api/winuser.h:2290: parse error before `}'
/usr/include/w32api/winuser.h:2290: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2321: parse error before `RECT'
/usr/include/w32api/winuser.h:2321: warning: no semicolon at end of struct or union
/usr/include/w32api/winuser.h:2322: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2340: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2340: warning: no semicolon at end of struct or union
/usr/include/w32api/winuser.h:2341: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2348: parse error before `lParam'
/usr/include/w32api/winuser.h:2348: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2349: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2359: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2359: warning: no semicolon at end of struct or union
/usr/include/w32api/winuser.h:2360: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2362: parse error before `POINT'
/usr/include/w32api/winuser.h:2362: warning: no semicolon at end of struct or union
/usr/include/w32api/winuser.h:2363: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2364: parse error before `ptMaxPosition'
/usr/include/w32api/winuser.h:2364: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2365: parse error before `ptMinTrackSize'
/usr/include/w32api/winuser.h:2365: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2366: parse error before `ptMaxTrackSize'
/usr/include/w32api/winuser.h:2366: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2367: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2386: parse error before `POINT'
/usr/include/w32api/winuser.h:2386: warning: no semicolon at end of struct or union
/usr/include/w32api/winuser.h:2388: parse error before `}'
/usr/include/w32api/winuser.h:2388: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2392: parse error before `CHAR'
/usr/include/w32api/winuser.h:2392: warning: no semicolon at end of struct or union
/usr/include/w32api/winuser.h:2393: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2394: parse error before `}'
/usr/include/w32api/winuser.h:2394: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2407: parse error before `CHAR'
/usr/include/w32api/winuser.h:2407: warning: no semicolon at end of struct or union
/usr/include/w32api/winuser.h:2408: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:2440: parse error before `DWORD'
/usr/include/w32api/winuser.h:2441: parse error before `DWORD'
/usr/include/w32api/winuser.h:2443: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2448: parse error before `LPPAINTSTRUCT'
/usr/include/w32api/winuser.h:2450: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2451: parse error before `int'
/usr/include/w32api/winuser.h:2452: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2452: `CallNextHookEx' declared as function returning a function
/usr/include/w32api/winuser.h:2453: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2453: `CallWindowProcA' declared as function returning a function
/usr/include/w32api/winuser.h:2454: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2454: `CallWindowProcW' declared as function returning a function
/usr/include/w32api/winuser.h:2455: parse error before `LPCRECT'
/usr/include/w32api/winuser.h:2457: `ChangeDisplaySettingsA' declared as function returning a function
/usr/include/w32api/winuser.h:2458: `ChangeDisplaySettingsW' declared as function returning a function
/usr/include/w32api/winuser.h:2459: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2461: warning: `__stdcall__' attribute directive ignored
/usr/include/w32api/winuser.h:2461: parse error before `CharLowerA'
/usr/include/w32api/winuser.h:2463: parse error before `DWORD'
/usr/include/w32api/winuser.h:2465: warning: `__stdcall__' attribute directive ignored
/usr/include/w32api/winuser.h:2465: parse error before `CharNextA'
/usr/include/w32api/winuser.h:2467: warning: `__stdcall__' attribute directive ignored
/usr/include/w32api/winuser.h:2467: parse error before `CharNextExA'
/usr/include/w32api/winuser.h:2469: warning: `__stdcall__' attribute directive ignored
/usr/include/w32api/winuser.h:2469: parse error before `CharPrevA'
/usr/include/w32api/winuser.h:2471: warning: `__stdcall__' attribute directive ignored
/usr/include/w32api/winuser.h:2471: parse error before `CharPrevExA'
/usr/include/w32api/winuser.h:2473: warning: parameter names (without types) in function declaration
/usr/include/w32api/winuser.h:2474: parse error before `LPSTR'
/usr/include/w32api/winuser.h:2475: parse error before `DWORD'
/usr/include/w32api/winuser.h:2476: parse error before `LPSTR'
/usr/include/w32api/winuser.h:2477: warning: `__stdcall__' attribute directive ignored
/usr/include/w32api/winuser.h:2477: parse error before `CharUpperA'
/usr/include/w32api/winuser.h:2479: parse error before `DWORD'
/usr/include/w32api/winuser.h:2485: parse error before `POINT'
/usr/include/w32api/winuser.h:2486: parse error before `POINT'
/usr/include/w32api/winuser.h:2487: parse error before `LPPOINT'
/usr/include/w32api/winuser.h:2488: warning: parameter names (without types) in function declaration
/usr/include/w32api/winuser.h:2498: warning: parameter names (without types) in function declaration
/usr/include/w32api/winuser.h:2504: parse error before `LPDEVMODEA'
/usr/include/w32api/winuser.h:2510: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2511: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2512: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2513: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2518: parse error before `DWORD'
/usr/include/w32api/winuser.h:2519: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2524: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2526: parse error before `DWORD'
/usr/include/w32api/winuser.h:2528: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2528: `DefDlgProcA' declared as function returning a function
/usr/include/w32api/winuser.h:2529: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2529: `DefDlgProcW' declared as function returning a function
/usr/include/w32api/winuser.h:2531: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2531: `DefFrameProcA' declared as function returning a function
/usr/include/w32api/winuser.h:2532: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2532: `DefFrameProcW' declared as function returning a function
/usr/include/w32api/winuser.h:2534: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2534: `DefMDIChildProcA' declared as function returning a function
/usr/include/w32api/winuser.h:2535: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2535: `DefMDIChildProcW' declared as function returning a function
/usr/include/w32api/winuser.h:2536: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2536: `DefWindowProcA' declared as function returning a function
/usr/include/w32api/winuser.h:2537: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2537: `DefWindowProcW' declared as function returning a function
/usr/include/w32api/winuser.h:2549: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2550: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2551: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2552: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2553: parse error before `*'
/usr/include/w32api/winuser.h:2553: `DispatchMessageA' declared as function returning a function
/usr/include/w32api/winuser.h:2554: parse error before `*'
/usr/include/w32api/winuser.h:2554: `DispatchMessageW' declared as function returning a function
/usr/include/w32api/winuser.h:2555: parse error before `LPSTR'
/usr/include/w32api/winuser.h:2557: parse error before `LPSTR'
/usr/include/w32api/winuser.h:2559: parse error before `LPSTR'
/usr/include/w32api/winuser.h:2561: parse error before `LPSTR'
/usr/include/w32api/winuser.h:2563: parse error before `POINT'
/usr/include/w32api/winuser.h:2565: parse error before `LPCRECT'
/usr/include/w32api/winuser.h:2566: parse error before `LPCRECT'
/usr/include/w32api/winuser.h:2567: parse error before `LPRECT'
/usr/include/w32api/winuser.h:2568: parse error before `LPCRECT'
/usr/include/w32api/winuser.h:2569: parse error before `LPRECT'
/usr/include/w32api/winuser.h:2573: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2574: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2575: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2576: parse error before `LPRECT'
/usr/include/w32api/winuser.h:2577: parse error before `LPSTR'
/usr/include/w32api/winuser.h:2578: parse error before `LPRECT'
/usr/include/w32api/winuser.h:2585: parse error before `*'
/usr/include/w32api/winuser.h:2586: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2588: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2589: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2590: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2591: parse error before `DWORD'
/usr/include/w32api/winuser.h:2595: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2596: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2598: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2599: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2600: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2601: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2602: warning: parameter names (without types) in function declaration
/usr/include/w32api/winuser.h:2605: warning: parameter names (without types) in function declaration
/usr/include/w32api/winuser.h:2606: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2610: parse error before `LPCRECT'
/usr/include/w32api/winuser.h:2613: warning: `__stdcall__' attribute directive ignored
/usr/include/w32api/winuser.h:2613: parse error before `GetAsyncKeyState'
/usr/include/w32api/winuser.h:2616: warning: parameter names (without types) in function declaration
/usr/include/w32api/winuser.h:2617: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2618: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2623: parse error before `LPSTR'
/usr/include/w32api/winuser.h:2626: parse error before `LPRECT'
/usr/include/w32api/winuser.h:2628: parse error before `LPSTR'
/usr/include/w32api/winuser.h:2632: warning: parameter names (without types) in function declaration
/usr/include/w32api/winuser.h:2633: warning: parameter names (without types) in function declaration
/usr/include/w32api/winuser.h:2641: parse error before `LPSTR'
/usr/include/w32api/winuser.h:2651: warning: parameter names (without types) in function declaration
/usr/include/w32api/winuser.h:2655: parse error before `LPSTR'
/usr/include/w32api/winuser.h:2657: warning: `__stdcall__' attribute directive ignored
/usr/include/w32api/winuser.h:2657: parse error before `GetKeyState'
/usr/include/w32api/winuser.h:2661: `GetMenuCheckMarkDimensions' declared as function returning a function
/usr/include/w32api/winuser.h:2666: parse error before `LPMENUITEMINFOA'
/usr/include/w32api/winuser.h:2668: parse error before `LPRECT'
/usr/include/w32api/winuser.h:2670: parse error before `LPSTR'
/usr/include/w32api/winuser.h:2672: parse error before `HWND'
/usr/include/w32api/winuser.h:2673: parse error before `HWND'
/usr/include/w32api/winuser.h:2674: `GetMessageExtraInfo' declared as function returning a function
/usr/include/w32api/winuser.h:2676: `GetMessageTime' declared as function returning a function
/usr/include/w32api/winuser.h:2683: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2695: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2697: `GetWindowLongA' declared as function returning a function
/usr/include/w32api/winuser.h:2698: `GetWindowLongW' declared as function returning a function
/usr/include/w32api/winuser.h:2701: parse error before `LPRECT'
/usr/include/w32api/winuser.h:2709: parse error before `LPSIZE'
/usr/include/w32api/winuser.h:2710: parse error before `WINDOWPLACEMENT'
/usr/include/w32api/winuser.h:2711: parse error before `LPRECT'
/usr/include/w32api/winuser.h:2714: parse error before `LPSTR'
/usr/include/w32api/winuser.h:2719: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2720: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2723: parse error before `int'
/usr/include/w32api/winuser.h:2725: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2727: parse error before `LPCMENUITEMINFOA'
/usr/include/w32api/winuser.h:2729: warning: parameter names (without types) in function declaration
/usr/include/w32api/winuser.h:2730: parse error before `LPCRECT'
/usr/include/w32api/winuser.h:2732: parse error before `LPCRECT'
/usr/include/w32api/winuser.h:2733: parse error before `ch'
/usr/include/w32api/winuser.h:2734: warning: parameter names (without types) in function declaration
/usr/include/w32api/winuser.h:2737: warning: parameter names (without types) in function declaration
/usr/include/w32api/winuser.h:2739: warning: parameter names (without types) in function declaration
/usr/include/w32api/winuser.h:2743: parse error before `LPMSG'
/usr/include/w32api/winuser.h:2744: parse error before `LPMSG'
/usr/include/w32api/winuser.h:2748: warning: parameter names (without types) in function declaration
/usr/include/w32api/winuser.h:2756: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2758: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2760: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2761: warning: parameter names (without types) in function declaration
/usr/include/w32api/winuser.h:2764: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2766: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2768: parse error before `UINT'
/usr/include/w32api/winuser.h:2770: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2774: parse error before `LPSTR'
/usr/include/w32api/winuser.h:2779: parse error before `LPRECT'
/usr/include/w32api/winuser.h:2784: parse error before `LPPOINT'
/usr/include/w32api/winuser.h:2785: parse error before `POINT'
/usr/include/w32api/winuser.h:2787: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2789: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2791: warning: parameter names (without types) in function declaration
/usr/include/w32api/winuser.h:2793: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2800: warning: parameter names (without types) in function declaration
/usr/include/w32api/winuser.h:2801: parse error before `DWORD'
/usr/include/w32api/winuser.h:2802: parse error before `LPWSTR'
/usr/include/w32api/winuser.h:2803: parse error before `LPWSTR'
/usr/include/w32api/winuser.h:2804: parse error before `int'
/usr/include/w32api/winuser.h:2806: parse error before `DWORD'
/usr/include/w32api/winuser.h:2810: parse error before `BOOL'
/usr/include/w32api/winuser.h:2813: parse error before `HWND'
/usr/include/w32api/winuser.h:2814: parse error before `HWND'
/usr/include/w32api/winuser.h:2817: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2818: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2820: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2821: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2822: warning: parameter names (without types) in function declaration
/usr/include/w32api/winuser.h:2823: parse error before `LPCRECT'
/usr/include/w32api/winuser.h:2824: parse error before `*'
/usr/include/w32api/winuser.h:2826: parse error before `*'
/usr/include/w32api/winuser.h:2828: warning: parameter names (without types) in function declaration
/usr/include/w32api/winuser.h:2831: warning: parameter names (without types) in function declaration
/usr/include/w32api/winuser.h:2836: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2839: parse error before `LPPOINT'
/usr/include/w32api/winuser.h:2840: parse error before `LPCRECT'
/usr/include/w32api/winuser.h:2841: parse error before `LPCRECT'
/usr/include/w32api/winuser.h:2842: parse error before `LPCRECT'
/usr/include/w32api/winuser.h:2843: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2843: `SendDlgItemMessageA' declared as function returning a function
/usr/include/w32api/winuser.h:2844: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2844: `SendDlgItemMessageW' declared as function returning a function
/usr/include/w32api/winuser.h:2845: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2845: `SendMessageA' declared as function returning a function
/usr/include/w32api/winuser.h:2846: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2847: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2848: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2848: `SendMessageTimeoutA' declared as function returning a function
/usr/include/w32api/winuser.h:2849: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2849: `SendMessageTimeoutW' declared as function returning a function
/usr/include/w32api/winuser.h:2850: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2850: `SendMessageW' declared as function returning a function
/usr/include/w32api/winuser.h:2851: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2852: parse error before `LPARAM'
/usr/include/w32api/winuser.h:2866: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2876: parse error before `LPCMENUITEMINFOA'
/usr/include/w32api/winuser.h:2878: warning: `__stdcall__' attribute directive ignored
/usr/include/w32api/winuser.h:2878: parse error before `SetMessageExtraInfo'
/usr/include/w32api/winuser.h:2882: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2884: parse error before `int'
/usr/include/w32api/winuser.h:2885: warning: parameter names (without types) in function declaration
/usr/include/w32api/winuser.h:2898: `SetWindowLongA' declared as function returning a function
/usr/include/w32api/winuser.h:2899: `SetWindowLongW' declared as function returning a function
/usr/include/w32api/winuser.h:2900: parse error before `*'
/usr/include/w32api/winuser.h:2903: warning: `__stdcall__' attribute directive ignored
/usr/include/w32api/winuser.h:2903: parse error before `SetWindowsHookA'
/usr/include/w32api/winuser.h:2904: parse error before `HOOKPROC'
/usr/include/w32api/winuser.h:2905: parse error before `HOOKPROC'
/usr/include/w32api/winuser.h:2906: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2915: warning: parameter names (without types) in function declaration
/usr/include/w32api/winuser.h:2920: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2920: `TabbedTextOutA' declared as function returning a function
/usr/include/w32api/winuser.h:2921: `TabbedTextOutW' declared as function returning a function
/usr/include/w32api/winuser.h:2922: parse error before `LPCRECT'
/usr/include/w32api/winuser.h:2928: parse error before `LPCRECT'
/usr/include/w32api/winuser.h:2929: parse error before `LPTPMPARAMS'
/usr/include/w32api/winuser.h:2930: parse error before `LPMSG'
/usr/include/w32api/winuser.h:2931: parse error before `LPMSG'
/usr/include/w32api/winuser.h:2932: parse error before `LPMSG'
/usr/include/w32api/winuser.h:2933: parse error before `*'
/usr/include/w32api/winuser.h:2934: parse error before `HOOKPROC'
/usr/include/w32api/winuser.h:2936: warning: parameter names (without types) in function declaration
/usr/include/w32api/winuser.h:2938: parse error before `HINSTANCE'
/usr/include/w32api/winuser.h:2942: parse error before `LPCRECT'
/usr/include/w32api/winuser.h:2944: warning: `__stdcall__' attribute directive ignored
/usr/include/w32api/winuser.h:2944: parse error before `VkKeyScanA'
/usr/include/w32api/winuser.h:2945: warning: `__stdcall__' attribute directive ignored
/usr/include/w32api/winuser.h:2945: parse error before `VkKeyScanExA'
/usr/include/w32api/winuser.h:2946: warning: `__stdcall__' attribute directive ignored
/usr/include/w32api/winuser.h:2946: parse error before `VkKeyScanExW'
/usr/include/w32api/winuser.h:2947: warning: `__stdcall__' attribute directive ignored
/usr/include/w32api/winuser.h:2947: parse error before `VkKeyScanW'
/usr/include/w32api/winuser.h:2951: warning: parameter names (without types) in function declaration
/usr/include/w32api/winuser.h:2952: parse error before `UINT'
/usr/include/w32api/winuser.h:2953: parse error before `LPCSTR'
/usr/include/w32api/winuser.h:2955: parse error before `...'
/usr/include/w32api/winuser.h:2957: parse error before `va_list'
/usr/include/w32api/winuser.h:3115: parse error before `WNDCLASS'
/usr/include/w32api/winuser.h:3115: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:3116: parse error before `WNDCLASSEX'
/usr/include/w32api/winuser.h:3116: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:3117: parse error before `MENUITEMINFO'
/usr/include/w32api/winuser.h:3117: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:3118: parse error before `LPCMENUITEMINFO'
/usr/include/w32api/winuser.h:3118: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:3119: parse error before `MSGBOXPARAMS'
/usr/include/w32api/winuser.h:3119: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:3120: parse error before `HIGHCONTRAST'
/usr/include/w32api/winuser.h:3120: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:3121: parse error before `ICONMETRICS'
/usr/include/w32api/winuser.h:3121: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:3122: parse error before `NONCLIENTMETRICS'
/usr/include/w32api/winuser.h:3122: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:3123: parse error before `SERIALKEYS'
/usr/include/w32api/winuser.h:3123: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:3124: parse error before `SOUNDSENTRY'
/usr/include/w32api/winuser.h:3124: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:3125: parse error before `MDICREATESTRUCT'
/usr/include/w32api/winuser.h:3125: warning: data definition has no type or storage class
/usr/include/w32api/winuser.h:3126: parse error before `MULTIKEYHELP'
/usr/include/w32api/winuser.h:3126: warning: data definition has no type or storage class
In file included from /usr/include/w32api/windows.h:108,
                 from /gdb-20001125-1/tcl/cygwin/../generic/tclEnv.c:750:
/usr/include/w32api/winnls.h:419: warning: parameter names (without types) in function declaration
/usr/include/w32api/winnls.h:421: parse error before `CALID'
/usr/include/w32api/winnls.h:423: parse error before `LPSTR'
/usr/include/w32api/winnls.h:425: parse error before `LPSTR'
/usr/include/w32api/winnls.h:428: parse error before `LONG_PTR'
/usr/include/w32api/winnls.h:429: warning: parameter names (without types) in function declaration
/usr/include/w32api/winnls.h:431: warning: parameter names (without types) in function declaration
/usr/include/w32api/winnls.h:433: warning: parameter names (without types) in function declaration
/usr/include/w32api/winnls.h:435: parse error before `CALID'
/usr/include/w32api/winnls.h:437: warning: parameter names (without types) in function declaration
/usr/include/w32api/winnls.h:451: parse error before `CHAR'
/usr/include/w32api/winnls.h:451: warning: no semicolon at end of struct or union
/usr/include/w32api/winnls.h:452: warning: data definition has no type or storage class
/usr/include/w32api/winnls.h:465: parse error before `LPSTR'
/usr/include/w32api/winnls.h:465: warning: no semicolon at end of struct or union
/usr/include/w32api/winnls.h:466: warning: data definition has no type or storage class
/usr/include/w32api/winnls.h:469: parse error before `lpCurrencySymbol'
/usr/include/w32api/winnls.h:469: warning: data definition has no type or storage class
/usr/include/w32api/winnls.h:470: warning: data definition has no type or storage class
/usr/include/w32api/winnls.h:485: parse error before `LPSTR'
/usr/include/w32api/winnls.h:485: warning: no semicolon at end of struct or union
/usr/include/w32api/winnls.h:486: warning: data definition has no type or storage class
/usr/include/w32api/winnls.h:488: parse error before `}'
/usr/include/w32api/winnls.h:488: warning: data definition has no type or storage class
/usr/include/w32api/winnls.h:498: parse error before `LPCSTR'
/usr/include/w32api/winnls.h:511: parse error before `LPCSTR'
/usr/include/w32api/winnls.h:515: parse error before `LPCPINFOEXA'
/usr/include/w32api/winnls.h:517: parse error before `LPCSTR'
/usr/include/w32api/winnls.h:519: parse error before `LPCSTR'
/usr/include/w32api/winnls.h:521: parse error before `LPSTR'
/usr/include/w32api/winnls.h:523: parse error before `LPCSTR'
/usr/include/w32api/winnls.h:526: parse error before `LPCSTR'
/usr/include/w32api/winnls.h:528: parse error before `LPCSTR'
/usr/include/w32api/winnls.h:533: parse error before `LPCSTR'
/usr/include/w32api/winnls.h:541: parse error before `LPCSTR'
/usr/include/w32api/winnls.h:543: parse error before `LPCSTR'
/usr/include/w32api/winnls.h:544: parse error before `LPCSTR'
/usr/include/w32api/winnls.h:547: parse error before `LPSTR'
/usr/include/w32api/winnls.h:614: parse error before `CPINFOEX'
/usr/include/w32api/winnls.h:614: warning: data definition has no type or storage class
/usr/include/w32api/winnls.h:615: parse error before `LPCPINFOEX'
/usr/include/w32api/winnls.h:615: warning: data definition has no type or storage class
/usr/include/w32api/winnls.h:616: parse error before `CURRENCYFMT'
/usr/include/w32api/winnls.h:616: warning: data definition has no type or storage class
/usr/include/w32api/winnls.h:617: parse error before `LPCURRENCYFMT'
/usr/include/w32api/winnls.h:617: warning: data definition has no type or storage class
/usr/include/w32api/winnls.h:618: parse error before `NUMBERFMT'
/usr/include/w32api/winnls.h:618: warning: data definition has no type or storage class
/usr/include/w32api/winnls.h:619: parse error before `LPNUMBERFMT'
/usr/include/w32api/winnls.h:619: warning: data definition has no type or storage class
In file included from /usr/include/w32api/windows.h:111,
                 from /gdb-20001125-1/tcl/cygwin/../generic/tclEnv.c:750:
/usr/include/w32api/winver.h:96: parse error before `LPSTR'
/usr/include/w32api/winver.h:98: parse error before `LPSTR'
/usr/include/w32api/winver.h:100: parse error before `PDWORD'
/usr/include/w32api/winver.h:102: parse error before `DWORD'
/usr/include/w32api/winver.h:104: parse error before `LPSTR'
/usr/include/w32api/winver.h:106: parse error before `LPSTR'
In file included from /usr/include/w32api/windows.h:114,
                 from /gdb-20001125-1/tcl/cygwin/../generic/tclEnv.c:750:
/usr/include/w32api/winnetwk.h:161: parse error before `LPSTR'
/usr/include/w32api/winnetwk.h:161: warning: no semicolon at end of struct or union
/usr/include/w32api/winnetwk.h:162: warning: data definition has no type or storage class
/usr/include/w32api/winnetwk.h:163: parse error before `lpComment'
/usr/include/w32api/winnetwk.h:163: warning: data definition has no type or storage class
/usr/include/w32api/winnetwk.h:164: parse error before `lpProvider'
/usr/include/w32api/winnetwk.h:164: warning: data definition has no type or storage class
/usr/include/w32api/winnetwk.h:165: warning: data definition has no type or storage class
/usr/include/w32api/winnetwk.h:179: parse error before `LPNETRESOURCEA'
/usr/include/w32api/winnetwk.h:179: warning: no semicolon at end of struct or union
/usr/include/w32api/winnetwk.h:182: parse error before `}'
/usr/include/w32api/winnetwk.h:182: warning: data definition has no type or storage class
/usr/include/w32api/winnetwk.h:193: parse error before `LPSTR'
/usr/include/w32api/winnetwk.h:193: warning: no semicolon at end of struct or union
/usr/include/w32api/winnetwk.h:194: warning: data definition has no type or storage class
/usr/include/w32api/winnetwk.h:196: parse error before `}'
/usr/include/w32api/winnetwk.h:196: warning: data definition has no type or storage class
/usr/include/w32api/winnetwk.h:204: parse error before `LPSTR'
/usr/include/w32api/winnetwk.h:204: warning: no semicolon at end of struct or union
/usr/include/w32api/winnetwk.h:204: warning: data definition has no type or storage class
/usr/include/w32api/winnetwk.h:207: parse error before `LPSTR'
/usr/include/w32api/winnetwk.h:207: warning: no semicolon at end of struct or union
/usr/include/w32api/winnetwk.h:208: warning: data definition has no type or storage class
/usr/include/w32api/winnetwk.h:209: parse error before `lpRemainingPath'
/usr/include/w32api/winnetwk.h:209: warning: data definition has no type or storage class
/usr/include/w32api/winnetwk.h:210: warning: data definition has no type or storage class
/usr/include/w32api/winnetwk.h:226: parse error before `UINT'
/usr/include/w32api/winnetwk.h:228: parse error before `DWORD'
/usr/include/w32api/winnetwk.h:230: parse error before `LPCSTR'
/usr/include/w32api/winnetwk.h:240: warning: parameter names (without types) in function declaration
/usr/include/w32api/winnetwk.h:242: parse error before `DWORD'
/usr/include/w32api/winnetwk.h:244: parse error before `LPNETRESOURCEA'
/usr/include/w32api/winnetwk.h:246: parse error before `BOOL'
/usr/include/w32api/winnetwk.h:248: parse error before `DWORD'
/usr/include/w32api/winnetwk.h:250: parse error before `PDWORD'
/usr/include/w32api/winnetwk.h:252: parse error before `LPNETRESOURCEA'
/usr/include/w32api/winnetwk.h:254: parse error before `DWORD'
/usr/include/w32api/winnetwk.h:258: warning: parameter names (without types) in function declaration
/usr/include/w32api/winnetwk.h:260: warning: parameter names (without types) in function declaration
/usr/include/w32api/winnetwk.h:262: parse error before `LPNETRESOURCEA'
/usr/include/w32api/winnetwk.h:267: parse error before `DWORD'
/usr/include/w32api/winnetwk.h:269: parse error before `PDWORD'
/usr/include/w32api/winnetwk.h:271: parse error before `LPSTR'
/usr/include/w32api/winnetwk.h:273: parse error before `LPNETINFOSTRUCT'
/usr/include/w32api/winnetwk.h:275: parse error before `LPSTR'
/usr/include/w32api/winnetwk.h:277: parse error before `LPNETCONNECTINFOSTRUCT'
/usr/include/w32api/winnetwk.h:310: parse error before `NETRESOURCE'
/usr/include/w32api/winnetwk.h:310: warning: data definition has no type or storage class
/usr/include/w32api/winnetwk.h:311: parse error before `CONNECTDLGSTRUCT'
/usr/include/w32api/winnetwk.h:311: warning: data definition has no type or storage class
/usr/include/w32api/winnetwk.h:312: parse error before `DISCDLGSTRUCT'
/usr/include/w32api/winnetwk.h:312: warning: data definition has no type or storage class
/usr/include/w32api/winnetwk.h:313: parse error before `UNIVERSAL_NAME_INFO'
/usr/include/w32api/winnetwk.h:313: warning: data definition has no type or storage class
/usr/include/w32api/winnetwk.h:314: parse error before `REMOTE_NAME_INFO'
/usr/include/w32api/winnetwk.h:314: warning: data definition has no type or storage class
In file included from /usr/include/w32api/windows.h:117,
                 from /gdb-20001125-1/tcl/cygwin/../generic/tclEnv.c:750:
/usr/include/w32api/winreg.h:37: parse error before `LPSTR'
/usr/include/w32api/winreg.h:37: warning: no semicolon at end of struct or union
/usr/include/w32api/winreg.h:41: parse error before `}'
/usr/include/w32api/winreg.h:41: warning: data definition has no type or storage class
/usr/include/w32api/winreg.h:48: warning: parameter names (without types) in function declaration
/usr/include/w32api/winreg.h:50: parse error before `DWORD'
/usr/include/w32api/winreg.h:52: `RegCloseKey' declared as function returning a function
/usr/include/w32api/winreg.h:53: parse error before `HKEY'
/usr/include/w32api/winreg.h:53: `RegConnectRegistryA' declared as function returning a function
/usr/include/w32api/winreg.h:54: `RegConnectRegistryW' declared as function returning a function
/usr/include/w32api/winreg.h:55: parse error before `LPCSTR'
/usr/include/w32api/winreg.h:55: `RegCreateKeyA' declared as function returning a function
/usr/include/w32api/winreg.h:56: parse error before `LPCSTR'
/usr/include/w32api/winreg.h:56: `RegCreateKeyExA' declared as function returning a function
/usr/include/w32api/winreg.h:57: `RegCreateKeyExW' declared as function returning a function
/usr/include/w32api/winreg.h:58: `RegCreateKeyW' declared as function returning a function
/usr/include/w32api/winreg.h:59: parse error before `LPCSTR'
/usr/include/w32api/winreg.h:59: `RegDeleteKeyA' declared as function returning a function
/usr/include/w32api/winreg.h:60: `RegDeleteKeyW' declared as function returning a function
/usr/include/w32api/winreg.h:61: parse error before `LPCSTR'
/usr/include/w32api/winreg.h:61: `RegDeleteValueA' declared as function returning a function
/usr/include/w32api/winreg.h:62: `RegDeleteValueW' declared as function returning a function
/usr/include/w32api/winreg.h:63: parse error before `LPSTR'
/usr/include/w32api/winreg.h:63: `RegEnumKeyA' declared as function returning a function
/usr/include/w32api/winreg.h:64: `RegEnumKeyW' declared as function returning a function
/usr/include/w32api/winreg.h:65: parse error before `LPSTR'
/usr/include/w32api/winreg.h:65: `RegEnumKeyExA' declared as function returning a function
/usr/include/w32api/winreg.h:66: `RegEnumKeyExW' declared as function returning a function
/usr/include/w32api/winreg.h:67: parse error before `LPSTR'
/usr/include/w32api/winreg.h:67: `RegEnumValueA' declared as function returning a function
/usr/include/w32api/winreg.h:68: `RegEnumValueW' declared as function returning a function
/usr/include/w32api/winreg.h:69: `RegFlushKey' declared as function returning a function
/usr/include/w32api/winreg.h:70: `RegGetKeySecurity' declared as function returning a function
/usr/include/w32api/winreg.h:71: parse error before `LPCSTR'
/usr/include/w32api/winreg.h:71: `RegLoadKeyA' declared as function returning a function
/usr/include/w32api/winreg.h:72: `RegLoadKeyW' declared as function returning a function
/usr/include/w32api/winreg.h:73: `RegNotifyChangeKeyValue' declared as function returning a function
/usr/include/w32api/winreg.h:74: parse error before `LPCSTR'
/usr/include/w32api/winreg.h:74: `RegOpenKeyA' declared as function returning a function
/usr/include/w32api/winreg.h:75: parse error before `LPCSTR'
/usr/include/w32api/winreg.h:75: `RegOpenKeyExA' declared as function returning a function
/usr/include/w32api/winreg.h:76: `RegOpenKeyExW' declared as function returning a function
/usr/include/w32api/winreg.h:77: `RegOpenKeyW' declared as function returning a function
/usr/include/w32api/winreg.h:78: parse error before `LPSTR'
/usr/include/w32api/winreg.h:78: `RegQueryInfoKeyA' declared as function returning a function
/usr/include/w32api/winreg.h:79: `RegQueryInfoKeyW' declared as function returning a function
/usr/include/w32api/winreg.h:80: parse error before `PVALENTA'
/usr/include/w32api/winreg.h:80: `RegQueryMultipleValuesA' declared as function returning a function
/usr/include/w32api/winreg.h:81: `RegQueryMultipleValuesW' declared as function returning a function
/usr/include/w32api/winreg.h:82: parse error before `LPCSTR'
/usr/include/w32api/winreg.h:82: `RegQueryValueA' declared as function returning a function
/usr/include/w32api/winreg.h:83: parse error before `LPCSTR'
/usr/include/w32api/winreg.h:83: `RegQueryValueExA' declared as function returning a function
/usr/include/w32api/winreg.h:84: `RegQueryValueExW' declared as function returning a function
/usr/include/w32api/winreg.h:85: parse error before `PLONG'
/usr/include/w32api/winreg.h:85: `RegQueryValueW' declared as function returning a function
/usr/include/w32api/winreg.h:86: parse error before `LPCSTR'
/usr/include/w32api/winreg.h:86: `RegReplaceKeyA' declared as function returning a function
/usr/include/w32api/winreg.h:87: `RegReplaceKeyW' declared as function returning a function
/usr/include/w32api/winreg.h:88: parse error before `LPCSTR'
/usr/include/w32api/winreg.h:88: `RegRestoreKeyA' declared as function returning a function
/usr/include/w32api/winreg.h:89: `RegRestoreKeyW' declared as function returning a function
/usr/include/w32api/winreg.h:90: parse error before `LPCSTR'
/usr/include/w32api/winreg.h:90: `RegSaveKeyA' declared as function returning a function
/usr/include/w32api/winreg.h:91: `RegSaveKeyW' declared as function returning a function
/usr/include/w32api/winreg.h:92: `RegSetKeySecurity' declared as function returning a function
/usr/include/w32api/winreg.h:93: parse error before `LPCSTR'
/usr/include/w32api/winreg.h:93: `RegSetValueA' declared as function returning a function
/usr/include/w32api/winreg.h:94: parse error before `LPCSTR'
/usr/include/w32api/winreg.h:94: `RegSetValueExA' declared as function returning a function
/usr/include/w32api/winreg.h:95: `RegSetValueExW' declared as function returning a function
/usr/include/w32api/winreg.h:96: `RegSetValueW' declared as function returning a function
/usr/include/w32api/winreg.h:97: parse error before `LPCSTR'
/usr/include/w32api/winreg.h:97: `RegUnLoadKeyA' declared as function returning a function
/usr/include/w32api/winreg.h:98: `RegUnLoadKeyW' declared as function returning a function
/usr/include/w32api/winreg.h:126: parse error before `VALENT'
/usr/include/w32api/winreg.h:126: warning: data definition has no type or storage class
In file included from /usr/include/w32api/windows.h:120,
                 from /gdb-20001125-1/tcl/cygwin/../generic/tclEnv.c:750:
/usr/include/w32api/winsvc.h:60: parse error before `LPSTR'
/usr/include/w32api/winsvc.h:60: warning: no semicolon at end of struct or union
/usr/include/w32api/winsvc.h:61: warning: data definition has no type or storage class
/usr/include/w32api/winsvc.h:63: parse error before `}'
/usr/include/w32api/winsvc.h:63: warning: data definition has no type or storage class
/usr/include/w32api/winsvc.h:73: parse error before `LPSTR'
/usr/include/w32api/winsvc.h:73: warning: no semicolon at end of struct or union
/usr/include/w32api/winsvc.h:74: warning: data definition has no type or storage class
/usr/include/w32api/winsvc.h:76: parse error before `lpDependencies'
/usr/include/w32api/winsvc.h:76: warning: data definition has no type or storage class
/usr/include/w32api/winsvc.h:77: parse error before `lpServiceStartName'
/usr/include/w32api/winsvc.h:77: warning: data definition has no type or storage class
/usr/include/w32api/winsvc.h:78: parse error before `lpDisplayName'
/usr/include/w32api/winsvc.h:78: warning: data definition has no type or storage class
/usr/include/w32api/winsvc.h:79: warning: data definition has no type or storage class
/usr/include/w32api/winsvc.h:93: parse error before `LPSTR'
/usr/include/w32api/winsvc.h:93: warning: no semicolon at end of struct or union
/usr/include/w32api/winsvc.h:95: parse error before `}'
/usr/include/w32api/winsvc.h:95: warning: data definition has no type or storage class
/usr/include/w32api/winsvc.h:101: parse error before `LPSTR'
/usr/include/w32api/winsvc.h:104: parse error before `LPSTR'
/usr/include/w32api/winsvc.h:104: warning: no semicolon at end of struct or union
/usr/include/w32api/winsvc.h:106: parse error before `}'
/usr/include/w32api/winsvc.h:106: warning: data definition has no type or storage class
/usr/include/w32api/winsvc.h:117: parse error before `LPCSTR'
/usr/include/w32api/winsvc.h:121: parse error before `LPCSTR'
/usr/include/w32api/winsvc.h:124: parse error before `LPENUM_SERVICE_STATUSA'
/usr/include/w32api/winsvc.h:126: parse error before `LPENUM_SERVICE_STATUSA'
/usr/include/w32api/winsvc.h:128: parse error before `LPCSTR'
/usr/include/w32api/winsvc.h:130: parse error before `LPCSTR'
/usr/include/w32api/winsvc.h:134: parse error before `DWORD'
/usr/include/w32api/winsvc.h:136: parse error before `LPCSTR'
/usr/include/w32api/winsvc.h:138: parse error before `LPQUERY_SERVICE_CONFIGA'
/usr/include/w32api/winsvc.h:140: parse error before `LPQUERY_SERVICE_LOCK_STATUSA'
/usr/include/w32api/winsvc.h:144: parse error before `LPHANDLER_FUNCTION'
/usr/include/w32api/winsvc.h:148: parse error before `LPCSTR'
/usr/include/w32api/winsvc.h:149: warning: parameter names (without types) in function declaration
/usr/include/w32api/winsvc.h:177: parse error before `ENUM_SERVICE_STATUS'
/usr/include/w32api/winsvc.h:177: warning: data definition has no type or storage class
/usr/include/w32api/winsvc.h:178: parse error before `QUERY_SERVICE_CONFIG'
/usr/include/w32api/winsvc.h:178: warning: data definition has no type or storage class
/usr/include/w32api/winsvc.h:179: parse error before `QUERY_SERVICE_LOCK_STATUS'
/usr/include/w32api/winsvc.h:179: warning: data definition has no type or storage class
/usr/include/w32api/winsvc.h:180: parse error before `SERVICE_TABLE_ENTRY'
/usr/include/w32api/winsvc.h:180: warning: data definition has no type or storage class
In file included from /usr/include/w32api/windows.h:124,
                 from /gdb-20001125-1/tcl/cygwin/../generic/tclEnv.c:750:
/usr/include/w32api/commdlg.h:202: parse error before `LPARAM'
/usr/include/w32api/commdlg.h:218: parse error before `LPARAM'
/usr/include/w32api/commdlg.h:218: warning: no semicolon at end of struct or union
/usr/include/w32api/commdlg.h:220: parse error before `lpTemplateName'
/usr/include/w32api/commdlg.h:220: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:221: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:229: parse error before `LPARAM'
/usr/include/w32api/commdlg.h:229: warning: no semicolon at end of struct or union
/usr/include/w32api/commdlg.h:231: conflicting types for `lpTemplateName'
/usr/include/w32api/commdlg.h:220: previous declaration of `lpTemplateName'
/usr/include/w32api/commdlg.h:232: parse error before `}'
/usr/include/w32api/commdlg.h:232: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:237: parse error before `LPLOGFONTA'
/usr/include/w32api/commdlg.h:237: warning: no semicolon at end of struct or union
/usr/include/w32api/commdlg.h:241: parse error before `lCustData'
/usr/include/w32api/commdlg.h:241: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:243: parse error before `lpTemplateName'
/usr/include/w32api/commdlg.h:243: conflicting types for `lpTemplateName'
/usr/include/w32api/commdlg.h:231: previous declaration of `lpTemplateName'
/usr/include/w32api/commdlg.h:243: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:245: parse error before `lpszStyle'
/usr/include/w32api/commdlg.h:245: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:250: parse error before `}'
/usr/include/w32api/commdlg.h:250: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:259: parse error before `LPARAM'
/usr/include/w32api/commdlg.h:259: warning: no semicolon at end of struct or union
/usr/include/w32api/commdlg.h:261: conflicting types for `lpTemplateName'
/usr/include/w32api/commdlg.h:243: previous declaration of `lpTemplateName'
/usr/include/w32api/commdlg.h:263: conflicting types for `lpszStyle'
/usr/include/w32api/commdlg.h:245: previous declaration of `lpszStyle'
/usr/include/w32api/commdlg.h:268: parse error before `}'
/usr/include/w32api/commdlg.h:268: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:280: parse error before `LPSTR'
/usr/include/w32api/commdlg.h:280: warning: no semicolon at end of struct or union
/usr/include/w32api/commdlg.h:281: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:284: parse error before `lCustData'
/usr/include/w32api/commdlg.h:284: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:286: parse error before `lpTemplateName'
/usr/include/w32api/commdlg.h:286: conflicting types for `lpTemplateName'
/usr/include/w32api/commdlg.h:261: previous declaration of `lpTemplateName'
/usr/include/w32api/commdlg.h:286: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:287: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:297: parse error before `LPARAM'
/usr/include/w32api/commdlg.h:297: warning: no semicolon at end of struct or union
/usr/include/w32api/commdlg.h:299: conflicting types for `lpTemplateName'
/usr/include/w32api/commdlg.h:286: previous declaration of `lpTemplateName'
/usr/include/w32api/commdlg.h:300: parse error before `}'
/usr/include/w32api/commdlg.h:300: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:305: parse error before `LPCSTR'
/usr/include/w32api/commdlg.h:305: warning: no semicolon at end of struct or union
/usr/include/w32api/commdlg.h:306: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:309: parse error before `lpstrFile'
/usr/include/w32api/commdlg.h:309: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:311: parse error before `lpstrFileTitle'
/usr/include/w32api/commdlg.h:311: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:313: parse error before `lpstrInitialDir'
/usr/include/w32api/commdlg.h:313: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:314: parse error before `lpstrTitle'
/usr/include/w32api/commdlg.h:314: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:318: parse error before `lpstrDefExt'
/usr/include/w32api/commdlg.h:318: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:319: conflicting types for `lCustData'
/usr/include/w32api/commdlg.h:284: previous declaration of `lCustData'
/usr/include/w32api/commdlg.h:321: parse error before `lpTemplateName'
/usr/include/w32api/commdlg.h:321: conflicting types for `lpTemplateName'
/usr/include/w32api/commdlg.h:299: previous declaration of `lpTemplateName'
/usr/include/w32api/commdlg.h:321: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:322: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:347: parse error before `LPOPENFILENAMEA'
/usr/include/w32api/commdlg.h:347: warning: no semicolon at end of struct or union
/usr/include/w32api/commdlg.h:348: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:349: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:361: parse error before `POINT'
/usr/include/w32api/commdlg.h:361: warning: no semicolon at end of struct or union
/usr/include/w32api/commdlg.h:362: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:363: parse error before `rtMargin'
/usr/include/w32api/commdlg.h:363: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:365: parse error before `lCustData'
/usr/include/w32api/commdlg.h:365: conflicting types for `lCustData'
/usr/include/w32api/commdlg.h:319: previous declaration of `lCustData'
/usr/include/w32api/commdlg.h:365: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:368: parse error before `lpPageSetupTemplateName'
/usr/include/w32api/commdlg.h:368: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:370: parse error before `}'
/usr/include/w32api/commdlg.h:370: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:377: parse error before `POINT'
/usr/include/w32api/commdlg.h:377: warning: no semicolon at end of struct or union
/usr/include/w32api/commdlg.h:378: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:379: parse error before `rtMargin'
/usr/include/w32api/commdlg.h:379: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:381: parse error before `lCustData'
/usr/include/w32api/commdlg.h:381: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:384: conflicting types for `lpPageSetupTemplateName'
/usr/include/w32api/commdlg.h:368: previous declaration of `lpPageSetupTemplateName'
/usr/include/w32api/commdlg.h:386: parse error before `}'
/usr/include/w32api/commdlg.h:386: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:403: parse error before `LPCSTR'
/usr/include/w32api/commdlg.h:403: warning: no semicolon at end of struct or union
/usr/include/w32api/commdlg.h:404: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:407: parse error before `}'
/usr/include/w32api/commdlg.h:407: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:430: warning: parameter names (without types) in function declaration
/usr/include/w32api/commdlg.h:431: warning: parameter names (without types) in function declaration
/usr/include/w32api/commdlg.h:432: warning: parameter names (without types) in function declaration
/usr/include/w32api/commdlg.h:433: warning: parameter names (without types) in function declaration
/usr/include/w32api/commdlg.h:435: warning: parameter names (without types) in function declaration
/usr/include/w32api/commdlg.h:436: warning: parameter names (without types) in function declaration
/usr/include/w32api/commdlg.h:437: parse error before `WORD'
/usr/include/w32api/commdlg.h:439: warning: parameter names (without types) in function declaration
/usr/include/w32api/commdlg.h:441: warning: parameter names (without types) in function declaration
/usr/include/w32api/commdlg.h:443: warning: parameter names (without types) in function declaration
/usr/include/w32api/commdlg.h:444: warning: parameter names (without types) in function declaration
/usr/include/w32api/commdlg.h:445: warning: parameter names (without types) in function declaration
/usr/include/w32api/commdlg.h:447: warning: parameter names (without types) in function declaration
/usr/include/w32api/commdlg.h:448: warning: parameter names (without types) in function declaration
/usr/include/w32api/commdlg.h:482: parse error before `CHOOSECOLOR'
/usr/include/w32api/commdlg.h:482: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:483: parse error before `CHOOSEFONT'
/usr/include/w32api/commdlg.h:483: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:484: parse error before `FINDREPLACE'
/usr/include/w32api/commdlg.h:484: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:485: parse error before `OPENFILENAME'
/usr/include/w32api/commdlg.h:485: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:486: parse error before `OFNOTIFY'
/usr/include/w32api/commdlg.h:486: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:487: parse error before `PAGESETUPDLG'
/usr/include/w32api/commdlg.h:487: warning: data definition has no type or storage class
/usr/include/w32api/commdlg.h:488: parse error before `PRINTDLG'
/usr/include/w32api/commdlg.h:488: warning: data definition has no type or storage class
In file included from /usr/include/w32api/windows.h:126,
                 from /gdb-20001125-1/tcl/cygwin/../generic/tclEnv.c:750:
/usr/include/w32api/dde.h:51: `PackDDElParam' declared as function returning a function
/usr/include/w32api/dde.h:54: `ReuseDDElParam' declared as function returning a function
In file included from /usr/include/w32api/windows.h:127,
                 from /gdb-20001125-1/tcl/cygwin/../generic/tclEnv.c:750:
/usr/include/w32api/ddeml.h:189: parse error before `LPCSTR'
/usr/include/w32api/ddeml.h:206: parse error before `LPSTR'
In file included from /usr/include/w32api/windows.h:129,
                 from /gdb-20001125-1/tcl/cygwin/../generic/tclEnv.c:750:
/usr/include/w32api/lzexpand.h:14: `CopyLZFile' declared as function returning a function
/usr/include/w32api/lzexpand.h:15: warning: parameter names (without types) in function declaration
/usr/include/w32api/lzexpand.h:18: `LZCopy' declared as function returning a function
/usr/include/w32api/lzexpand.h:21: parse error before `WORD'
/usr/include/w32api/lzexpand.h:22: parse error before `LPOFSTRUCT'
/usr/include/w32api/lzexpand.h:23: parse error before `LPSTR'
/usr/include/w32api/lzexpand.h:24: `LZSeek' declared as function returning a function
In file included from /usr/include/w32api/windows.h:130,
                 from /gdb-20001125-1/tcl/cygwin/../generic/tclEnv.c:750:
/usr/include/w32api/mmsystem.h:934: parse error before `LPARAM'
/usr/include/w32api/mmsystem.h:934: `DRIVERPROC' declared as function returning a function
/usr/include/w32api/mmsystem.h:946: parse error before `LPSTR'
/usr/include/w32api/mmsystem.h:946: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:954: parse error before `}'
/usr/include/w32api/mmsystem.h:954: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:959: parse error before `CHAR'
/usr/include/w32api/mmsystem.h:959: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:964: parse error before `}'
/usr/include/w32api/mmsystem.h:964: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:979: parse error before `CHAR'
/usr/include/w32api/mmsystem.h:979: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:983: parse error before `}'
/usr/include/w32api/mmsystem.h:983: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1035: parse error before `CHAR'
/usr/include/w32api/mmsystem.h:1035: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1041: parse error before `}'
/usr/include/w32api/mmsystem.h:1041: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1057: parse error before `CHAR'
/usr/include/w32api/mmsystem.h:1057: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1059: parse error before `}'
/usr/include/w32api/mmsystem.h:1059: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1068: parse error before `LPSTR'
/usr/include/w32api/mmsystem.h:1068: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1073: conflicting types for `lpNext'
/usr/include/w32api/mmsystem.h:952: previous declaration of `lpNext'
/usr/include/w32api/mmsystem.h:1077: parse error before `}'
/usr/include/w32api/mmsystem.h:1077: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1101: parse error before `CHAR'
/usr/include/w32api/mmsystem.h:1101: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1105: parse error before `}'
/usr/include/w32api/mmsystem.h:1105: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1123: parse error before `CHAR'
/usr/include/w32api/mmsystem.h:1123: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1126: parse error before `}'
/usr/include/w32api/mmsystem.h:1126: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1146: parse error before `CHAR'
/usr/include/w32api/mmsystem.h:1146: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1147: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1154: parse error before `CHAR'
/usr/include/w32api/mmsystem.h:1154: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1155: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1156: parse error before `}'
/usr/include/w32api/mmsystem.h:1156: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1185: parse error before `CHAR'
/usr/include/w32api/mmsystem.h:1185: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1186: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1189: field `lMinimum' declared as a function
/usr/include/w32api/mmsystem.h:1190: field `lMaximum' declared as a function
/usr/include/w32api/mmsystem.h:1203: parse error before `}'
/usr/include/w32api/mmsystem.h:1203: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1214: field `lMinimum' declared as a function
/usr/include/w32api/mmsystem.h:1215: field `lMaximum' declared as a function
/usr/include/w32api/mmsystem.h:1238: parse error before `LPMIXERCONTROLA'
/usr/include/w32api/mmsystem.h:1238: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1239: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1265: parse error before `CHAR'
/usr/include/w32api/mmsystem.h:1265: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1266: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1273: field `fValue' declared as a function
/usr/include/w32api/mmsystem.h:1276: field `lValue' declared as a function
/usr/include/w32api/mmsystem.h:1290: parse error before `CHAR'
/usr/include/w32api/mmsystem.h:1290: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1310: parse error before `szRegKey'
/usr/include/w32api/mmsystem.h:1310: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1311: parse error before `szOEMVxD'
/usr/include/w32api/mmsystem.h:1311: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1312: parse error before `}'
/usr/include/w32api/mmsystem.h:1312: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1363: parse error before `UINT'
/usr/include/w32api/mmsystem.h:1363: `MMIOPROC' declared as function returning a function
/usr/include/w32api/mmsystem.h:1371: field `cchBuffer' declared as a function
/usr/include/w32api/mmsystem.h:1376: field `lBufOffset' declared as a function
/usr/include/w32api/mmsystem.h:1377: field `lDiskOffset' declared as a function
/usr/include/w32api/mmsystem.h:1398: parse error before `LPCSTR'
/usr/include/w32api/mmsystem.h:1398: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1399: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1400: parse error before `lpstrAlias'
/usr/include/w32api/mmsystem.h:1400: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1401: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1426: parse error before `LPSTR'
/usr/include/w32api/mmsystem.h:1426: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1428: parse error before `}'
/usr/include/w32api/mmsystem.h:1428: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1441: parse error before `LPSTR'
/usr/include/w32api/mmsystem.h:1441: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1445: parse error before `}'
/usr/include/w32api/mmsystem.h:1445: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1465: parse error before `LPCSTR'
/usr/include/w32api/mmsystem.h:1465: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1466: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1473: parse error before `LPCSTR'
/usr/include/w32api/mmsystem.h:1473: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1474: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1496: parse error before `LPCSTR'
/usr/include/w32api/mmsystem.h:1496: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1497: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1505: parse error before `LPCSTR'
/usr/include/w32api/mmsystem.h:1505: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1506: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1507: parse error before `lpstrAlias'
/usr/include/w32api/mmsystem.h:1507: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1509: parse error before `}'
/usr/include/w32api/mmsystem.h:1509: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1541: `CloseDriver' declared as function returning a function
/usr/include/w32api/mmsystem.h:1543: `SendDriverMessage' declared as function returning a function
/usr/include/w32api/mmsystem.h:1546: parse error before `LPARAM'
/usr/include/w32api/mmsystem.h:1546: `DefDriverProc' declared as function returning a function
/usr/include/w32api/mmsystem.h:1549: parse error before `UINT'
/usr/include/w32api/mmsystem.h:1551: parse error before `HMODULE'
/usr/include/w32api/mmsystem.h:1554: parse error before `LPWAVEOUTCAPSA'
/usr/include/w32api/mmsystem.h:1558: parse error before `LPSTR'
/usr/include/w32api/mmsystem.h:1562: parse error before `LPWAVEHDR'
/usr/include/w32api/mmsystem.h:1563: parse error before `LPWAVEHDR'
/usr/include/w32api/mmsystem.h:1564: parse error before `LPWAVEHDR'
/usr/include/w32api/mmsystem.h:1577: parse error before `LPWAVEINCAPSA'
/usr/include/w32api/mmsystem.h:1579: parse error before `LPSTR'
/usr/include/w32api/mmsystem.h:1583: parse error before `LPWAVEHDR'
/usr/include/w32api/mmsystem.h:1584: parse error before `LPWAVEHDR'
/usr/include/w32api/mmsystem.h:1585: parse error before `LPWAVEHDR'
/usr/include/w32api/mmsystem.h:1597: parse error before `LPMIDIHDR'
/usr/include/w32api/mmsystem.h:1603: parse error before `LPMIDIOUTCAPSA'
/usr/include/w32api/mmsystem.h:1607: parse error before `LPSTR'
/usr/include/w32api/mmsystem.h:1611: parse error before `LPMIDIHDR'
/usr/include/w32api/mmsystem.h:1612: parse error before `LPMIDIHDR'
/usr/include/w32api/mmsystem.h:1614: parse error before `LPMIDIHDR'
/usr/include/w32api/mmsystem.h:1621: parse error before `LPMIDIINCAPSA'
/usr/include/w32api/mmsystem.h:1623: parse error before `LPSTR'
/usr/include/w32api/mmsystem.h:1627: parse error before `LPMIDIHDR'
/usr/include/w32api/mmsystem.h:1628: parse error before `LPMIDIHDR'
/usr/include/w32api/mmsystem.h:1629: parse error before `LPMIDIHDR'
/usr/include/w32api/mmsystem.h:1636: parse error before `LPAUXCAPSA'
/usr/include/w32api/mmsystem.h:1642: parse error before `LPMIXERCAPSA'
/usr/include/w32api/mmsystem.h:1647: parse error before `LPMIXERLINEA'
/usr/include/w32api/mmsystem.h:1650: parse error before `LPMIXERLINECONTROLSA'
/usr/include/w32api/mmsystem.h:1663: parse error before `LPJOYCAPSA'
/usr/include/w32api/mmsystem.h:1671: parse error before `UINT'
/usr/include/w32api/mmsystem.h:1675: parse error before `LPMMIOINFO'
/usr/include/w32api/mmsystem.h:1677: parse error before `LPCMMIOINFO'
/usr/include/w32api/mmsystem.h:1680: `mmioRead' declared as function returning a function
/usr/include/w32api/mmsystem.h:1681: parse error before `LPCSTR'
/usr/include/w32api/mmsystem.h:1681: `mmioWrite' declared as function returning a function
/usr/include/w32api/mmsystem.h:1682: `mmioSeek' declared as function returning a function
/usr/include/w32api/mmsystem.h:1685: parse error before `LPSTR'
/usr/include/w32api/mmsystem.h:1688: parse error before `LPARAM'
/usr/include/w32api/mmsystem.h:1688: `mmioSendMessage' declared as function returning a function
/usr/include/w32api/mmsystem.h:1694: parse error before `UINT'
/usr/include/w32api/mmsystem.h:1696: warning: parameter names (without types) in function declaration
/usr/include/w32api/mmsystem.h:1698: parse error before `LPCSTR'
/usr/include/w32api/mmsystem.h:1700: parse error before `LPSTR'
/usr/include/w32api/mmsystem.h:1719: parse error before `LPCSTR'
/usr/include/w32api/mmsystem.h:1719: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1720: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1721: parse error before `lpstrAlias'
/usr/include/w32api/mmsystem.h:1721: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1724: parse error before `}'
/usr/include/w32api/mmsystem.h:1724: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1748: parse error before `LPCSTR'
/usr/include/w32api/mmsystem.h:1748: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1749: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1762: parse error before `RECT'
/usr/include/w32api/mmsystem.h:1762: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1764: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1767: parse error before `RECT'
/usr/include/w32api/mmsystem.h:1767: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1769: parse error before `}'
/usr/include/w32api/mmsystem.h:1769: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1773: parse error before `LPCSTR'
/usr/include/w32api/mmsystem.h:1773: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1774: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1775: parse error before `lpstrAlias'
/usr/include/w32api/mmsystem.h:1775: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1778: parse error before `}'
/usr/include/w32api/mmsystem.h:1778: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1792: parse error before `LPCSTR'
/usr/include/w32api/mmsystem.h:1792: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1793: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1806: parse error before `RECT'
/usr/include/w32api/mmsystem.h:1806: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1808: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1811: parse error before `LPCSTR'
/usr/include/w32api/mmsystem.h:1811: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1812: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1813: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1817: parse error before `RECT'
/usr/include/w32api/mmsystem.h:1817: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1818: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1821: parse error before `LPCSTR'
/usr/include/w32api/mmsystem.h:1821: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1822: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1823: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1827: parse error before `RECT'
/usr/include/w32api/mmsystem.h:1827: warning: no semicolon at end of struct or union
/usr/include/w32api/mmsystem.h:1828: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1880: parse error before `WAVEOUTCAPS'
/usr/include/w32api/mmsystem.h:1880: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1881: parse error before `WAVEINCAPS'
/usr/include/w32api/mmsystem.h:1881: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1882: parse error before `MIDIOUTCAPS'
/usr/include/w32api/mmsystem.h:1882: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1883: parse error before `MIDIINCAPS'
/usr/include/w32api/mmsystem.h:1883: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1884: parse error before `AUXCAPS'
/usr/include/w32api/mmsystem.h:1884: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1885: parse error before `MIXERCAPS'
/usr/include/w32api/mmsystem.h:1885: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1886: parse error before `MIXERLINE'
/usr/include/w32api/mmsystem.h:1886: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1887: parse error before `MIXERCONTROL'
/usr/include/w32api/mmsystem.h:1887: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1888: parse error before `MIXERLINECONTROLS'
/usr/include/w32api/mmsystem.h:1888: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1889: parse error before `MIXERCONTROLDETAILS_LISTTEXT'
/usr/include/w32api/mmsystem.h:1889: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1890: parse error before `JOYCAPS'
/usr/include/w32api/mmsystem.h:1890: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1891: parse error before `MCI_OPEN_PARMS'
/usr/include/w32api/mmsystem.h:1891: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1892: parse error before `MCI_INFO_PARMS'
/usr/include/w32api/mmsystem.h:1892: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1893: parse error before `MCI_SYSINFO_PARMS'
/usr/include/w32api/mmsystem.h:1893: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1894: parse error before `MCI_SAVE_PARMS'
/usr/include/w32api/mmsystem.h:1894: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1895: parse error before `MCI_LOAD_PARMS'
/usr/include/w32api/mmsystem.h:1895: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1896: parse error before `MCI_VD_ESCAPE_PARMS'
/usr/include/w32api/mmsystem.h:1896: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1897: parse error before `MCI_WAVE_OPEN_PARMS'
/usr/include/w32api/mmsystem.h:1897: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1898: parse error before `MCI_ANIM_OPEN_PARMS'
/usr/include/w32api/mmsystem.h:1898: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1899: parse error before `MCI_ANIM_WINDOW_PARMS'
/usr/include/w32api/mmsystem.h:1899: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1900: parse error before `MCI_OVLY_OPEN_PARMS'
/usr/include/w32api/mmsystem.h:1900: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1901: parse error before `MCI_OVLY_WINDOW_PARMS'
/usr/include/w32api/mmsystem.h:1901: warning: data definition has no type or storage class
/usr/include/w32api/mmsystem.h:1902: parse error before `MCI_OVLY_SAVE_PARMS'
/usr/include/w32api/mmsystem.h:1902: warning: data definition has no type or storage class
In file included from /usr/include/w32api/windows.h:133,
                 from /gdb-20001125-1/tcl/cygwin/../generic/tclEnv.c:750:
/usr/include/w32api/shellapi.h:95: parse error before `RECT'
/usr/include/w32api/shellapi.h:95: warning: no semicolon at end of struct or union
/usr/include/w32api/shellapi.h:96: warning: data definition has no type or storage class
/usr/include/w32api/shellapi.h:97: warning: data definition has no type or storage class
/usr/include/w32api/shellapi.h:106: parse error before `CHAR'
/usr/include/w32api/shellapi.h:106: warning: no semicolon at end of struct or union
/usr/include/w32api/shellapi.h:107: warning: data definition has no type or storage class
/usr/include/w32api/shellapi.h:121: parse error before `LPCSTR'
/usr/include/w32api/shellapi.h:121: warning: no semicolon at end of struct or union
/usr/include/w32api/shellapi.h:122: warning: data definition has no type or storage class
/usr/include/w32api/shellapi.h:123: parse error before `lpParameters'
/usr/include/w32api/shellapi.h:123: warning: data definition has no type or storage class
/usr/include/w32api/shellapi.h:124: parse error before `lpDirectory'
/usr/include/w32api/shellapi.h:124: warning: data definition has no type or storage class
/usr/include/w32api/shellapi.h:128: parse error before `lpClass'
/usr/include/w32api/shellapi.h:128: warning: data definition has no type or storage class
/usr/include/w32api/shellapi.h:133: parse error before `}'
/usr/include/w32api/shellapi.h:133: warning: data definition has no type or storage class
/usr/include/w32api/shellapi.h:154: parse error before `LPCSTR'
/usr/include/w32api/shellapi.h:154: warning: no semicolon at end of struct or union
/usr/include/w32api/shellapi.h:155: warning: data definition has no type or storage class
/usr/include/w32api/shellapi.h:159: parse error before `lpszProgressTitle'
/usr/include/w32api/shellapi.h:159: warning: data definition has no type or storage class
/usr/include/w32api/shellapi.h:160: warning: data definition has no type or storage class
/usr/include/w32api/shellapi.h:175: parse error before `CHAR'
/usr/include/w32api/shellapi.h:175: warning: no semicolon at end of struct or union
/usr/include/w32api/shellapi.h:176: warning: data definition has no type or storage class
/usr/include/w32api/shellapi.h:177: parse error before `}'
/usr/include/w32api/shellapi.h:177: warning: data definition has no type or storage class
/usr/include/w32api/shellapi.h:189: parse error before `LPSTR'
/usr/include/w32api/shellapi.h:191: parse error before `LPPOINT'
/usr/include/w32api/shellapi.h:192: parse error before `LPCSTR'
/usr/include/w32api/shellapi.h:194: parse error before `LPCSTR'
/usr/include/w32api/shellapi.h:196: parse error before `int'
/usr/include/w32api/shellapi.h:198: warning: parameter names (without types) in function declaration
/usr/include/w32api/shellapi.h:200: parse error before `PAPPBARDATA'
/usr/include/w32api/shellapi.h:201: parse error before `PNOTIFYICONDATAA'
/usr/include/w32api/shellapi.h:203: parse error before `LPCSTR'
/usr/include/w32api/shellapi.h:205: parse error before `LPCSTR'
/usr/include/w32api/shellapi.h:207: warning: parameter names (without types) in function declaration
/usr/include/w32api/shellapi.h:209: warning: parameter names (without types) in function declaration
/usr/include/w32api/shellapi.h:212: parse error before `DWORD'
/usr/include/w32api/shellapi.h:232: parse error before `NOTIFYICONDATA'
/usr/include/w32api/shellapi.h:232: warning: data definition has no type or storage class
/usr/include/w32api/shellapi.h:233: parse error before `SHELLEXECUTEINFO'
/usr/include/w32api/shellapi.h:233: warning: data definition has no type or storage class
/usr/include/w32api/shellapi.h:234: parse error before `SHFILEOPSTRUCT'
/usr/include/w32api/shellapi.h:234: warning: data definition has no type or storage class
/usr/include/w32api/shellapi.h:235: parse error before `SHFILEINFO'
/usr/include/w32api/shellapi.h:235: warning: data definition has no type or storage class
In file included from /usr/include/w32api/windows.h:134,
                 from /gdb-20001125-1/tcl/cygwin/../generic/tclEnv.c:750:
/usr/include/w32api/winperf.h:82: field `DefaultObject' declared as a function
/usr/include/w32api/winperf.h:84: parse error before `LARGE_INTEGER'
/usr/include/w32api/winperf.h:84: warning: no semicolon at end of struct or union
/usr/include/w32api/winperf.h:85: warning: data definition has no type or storage class
/usr/include/w32api/winperf.h:86: parse error before `PerfTime100nSec'
/usr/include/w32api/winperf.h:86: warning: data definition has no type or storage class
/usr/include/w32api/winperf.h:89: parse error before `}'
/usr/include/w32api/winperf.h:89: warning: data definition has no type or storage class
/usr/include/w32api/winperf.h:100: field `DefaultCounter' declared as a function
/usr/include/w32api/winperf.h:101: field `NumInstances' declared as a function
/usr/include/w32api/winperf.h:103: parse error before `LARGE_INTEGER'
/usr/include/w32api/winperf.h:103: warning: no semicolon at end of struct or union
/usr/include/w32api/winperf.h:104: warning: data definition has no type or storage class
/usr/include/w32api/winperf.h:105: warning: data definition has no type or storage class
/usr/include/w32api/winperf.h:112: field `DefaultScale' declared as a function
/usr/include/w32api/winperf.h:122: field `UniqueID' declared as a function
In file included from /usr/include/w32api/windows.h:135,
                 from /gdb-20001125-1/tcl/cygwin/../generic/tclEnv.c:750:
/usr/include/w32api/winspool.h:218: parse error before `LPSTR'
/usr/include/w32api/winspool.h:218: warning: no semicolon at end of struct or union
/usr/include/w32api/winspool.h:220: parse error before `}'
/usr/include/w32api/winspool.h:220: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:225: parse error before `LPSTR'
/usr/include/w32api/winspool.h:225: warning: no semicolon at end of struct or union
/usr/include/w32api/winspool.h:225: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:229: parse error before `LPSTR'
/usr/include/w32api/winspool.h:229: warning: no semicolon at end of struct or union
/usr/include/w32api/winspool.h:230: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:231: parse error before `pUserName'
/usr/include/w32api/winspool.h:231: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:232: parse error before `pDocument'
/usr/include/w32api/winspool.h:232: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:233: parse error before `pDatatype'
/usr/include/w32api/winspool.h:233: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:234: parse error before `pStatus'
/usr/include/w32api/winspool.h:234: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:241: parse error before `}'
/usr/include/w32api/winspool.h:241: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:259: parse error before `LPSTR'
/usr/include/w32api/winspool.h:259: warning: no semicolon at end of struct or union
/usr/include/w32api/winspool.h:260: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:261: parse error before `pUserName'
/usr/include/w32api/winspool.h:261: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:262: parse error before `pDocument'
/usr/include/w32api/winspool.h:262: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:263: parse error before `pNotifyName'
/usr/include/w32api/winspool.h:263: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:264: parse error before `pDatatype'
/usr/include/w32api/winspool.h:264: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:265: parse error before `pPrintProcessor'
/usr/include/w32api/winspool.h:265: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:266: parse error before `pParameters'
/usr/include/w32api/winspool.h:266: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:267: parse error before `pDriverName'
/usr/include/w32api/winspool.h:267: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:269: parse error before `pStatus'
/usr/include/w32api/winspool.h:269: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:281: parse error before `}'
/usr/include/w32api/winspool.h:281: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:308: parse error before `LPSTR'
/usr/include/w32api/winspool.h:308: warning: no semicolon at end of struct or union
/usr/include/w32api/winspool.h:309: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:310: parse error before `pDatatype'
/usr/include/w32api/winspool.h:310: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:311: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:318: parse error before `LPSTR'
/usr/include/w32api/winspool.h:318: warning: no semicolon at end of struct or union
/usr/include/w32api/winspool.h:319: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:320: parse error before `pDatatype'
/usr/include/w32api/winspool.h:320: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:323: parse error before `}'
/usr/include/w32api/winspool.h:323: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:331: parse error before `LPSTR'
/usr/include/w32api/winspool.h:331: warning: no semicolon at end of struct or union
/usr/include/w32api/winspool.h:331: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:335: parse error before `LPSTR'
/usr/include/w32api/winspool.h:335: warning: no semicolon at end of struct or union
/usr/include/w32api/winspool.h:336: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:337: parse error before `pDriverPath'
/usr/include/w32api/winspool.h:337: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:338: parse error before `pDataFile'
/usr/include/w32api/winspool.h:338: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:339: parse error before `pConfigFile'
/usr/include/w32api/winspool.h:339: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:340: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:351: parse error before `LPSTR'
/usr/include/w32api/winspool.h:351: warning: no semicolon at end of struct or union
/usr/include/w32api/winspool.h:352: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:353: parse error before `pDriverPath'
/usr/include/w32api/winspool.h:353: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:354: parse error before `pDataFile'
/usr/include/w32api/winspool.h:354: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:355: parse error before `pConfigFile'
/usr/include/w32api/winspool.h:355: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:356: parse error before `pHelpFile'
/usr/include/w32api/winspool.h:356: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:357: parse error before `pDependentFiles'
/usr/include/w32api/winspool.h:357: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:358: parse error before `pMonitorName'
/usr/include/w32api/winspool.h:358: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:359: parse error before `pDefaultDataType'
/usr/include/w32api/winspool.h:359: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:360: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:373: parse error before `LPSTR'
/usr/include/w32api/winspool.h:373: warning: no semicolon at end of struct or union
/usr/include/w32api/winspool.h:373: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:375: parse error before `LPSTR'
/usr/include/w32api/winspool.h:375: warning: no semicolon at end of struct or union
/usr/include/w32api/winspool.h:375: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:378: parse error before `LPSTR'
/usr/include/w32api/winspool.h:378: warning: no semicolon at end of struct or union
/usr/include/w32api/winspool.h:379: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:380: parse error before `pDLLName'
/usr/include/w32api/winspool.h:380: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:381: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:388: parse error before `LPSTR'
/usr/include/w32api/winspool.h:388: warning: no semicolon at end of struct or union
/usr/include/w32api/winspool.h:389: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:390: parse error before `pDescription'
/usr/include/w32api/winspool.h:390: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:393: parse error before `}'
/usr/include/w32api/winspool.h:393: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:403: parse error before `LPSTR'
/usr/include/w32api/winspool.h:403: warning: no semicolon at end of struct or union
/usr/include/w32api/winspool.h:405: parse error before `}'
/usr/include/w32api/winspool.h:405: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:413: parse error before `LPSTR'
/usr/include/w32api/winspool.h:413: warning: no semicolon at end of struct or union
/usr/include/w32api/winspool.h:414: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:415: parse error before `pComment'
/usr/include/w32api/winspool.h:415: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:416: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:424: parse error before `LPSTR'
/usr/include/w32api/winspool.h:424: warning: no semicolon at end of struct or union
/usr/include/w32api/winspool.h:425: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:426: parse error before `pShareName'
/usr/include/w32api/winspool.h:426: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:427: parse error before `pPortName'
/usr/include/w32api/winspool.h:427: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:428: parse error before `pDriverName'
/usr/include/w32api/winspool.h:428: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:429: parse error before `pComment'
/usr/include/w32api/winspool.h:429: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:430: parse error before `pLocation'
/usr/include/w32api/winspool.h:430: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:432: parse error before `pSepFile'
/usr/include/w32api/winspool.h:432: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:433: parse error before `pPrintProcessor'
/usr/include/w32api/winspool.h:433: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:434: parse error before `pDatatype'
/usr/include/w32api/winspool.h:434: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:435: parse error before `pParameters'
/usr/include/w32api/winspool.h:435: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:437: conflicting types for `Attributes'
/usr/include/w32api/wincon.h:56: previous declaration of `Attributes'
/usr/include/w32api/winspool.h:445: parse error before `}'
/usr/include/w32api/winspool.h:445: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:473: parse error before `LPSTR'
/usr/include/w32api/winspool.h:473: warning: no semicolon at end of struct or union
/usr/include/w32api/winspool.h:474: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:476: parse error before `}'
/usr/include/w32api/winspool.h:476: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:483: parse error before `LPSTR'
/usr/include/w32api/winspool.h:483: warning: no semicolon at end of struct or union
/usr/include/w32api/winspool.h:484: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:488: parse error before `}'
/usr/include/w32api/winspool.h:488: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:496: parse error before `LPSTR'
/usr/include/w32api/winspool.h:496: warning: no semicolon at end of struct or union
/usr/include/w32api/winspool.h:496: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:519: parse error before `LPSTR'
/usr/include/w32api/winspool.h:519: warning: no semicolon at end of struct or union
/usr/include/w32api/winspool.h:520: conflicting types for `Size'
/usr/include/w32api/winspool.h:277: previous declaration of `Size'
/usr/include/w32api/winspool.h:520: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:521: parse error before `ImageableArea'
/usr/include/w32api/winspool.h:521: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:522: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:526: parse error before `SIZEL'
/usr/include/w32api/winspool.h:526: warning: no semicolon at end of struct or union
/usr/include/w32api/winspool.h:527: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:528: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:530: parse error before `LPSTR'
/usr/include/w32api/winspool.h:530: warning: no semicolon at end of struct or union
/usr/include/w32api/winspool.h:533: parse error before `}'
/usr/include/w32api/winspool.h:533: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:545: parse error before `DWORD'
/usr/include/w32api/winspool.h:547: parse error before `HWND'
/usr/include/w32api/winspool.h:549: parse error before `DWORD'
/usr/include/w32api/winspool.h:551: warning: parameter names (without types) in function declaration
/usr/include/w32api/winspool.h:553: parse error before `DWORD'
/usr/include/w32api/winspool.h:555: warning: parameter names (without types) in function declaration
/usr/include/w32api/winspool.h:557: parse error before `DWORD'
/usr/include/w32api/winspool.h:559: parse error before `LPSTR'
/usr/include/w32api/winspool.h:559: `AdvancedDocumentPropertiesA' declared as function returning a function
/usr/include/w32api/winspool.h:560: `AdvancedDocumentPropertiesW' declared as function returning a function
/usr/include/w32api/winspool.h:562: parse error before `HWND'
/usr/include/w32api/winspool.h:565: parse error before `LPSTR'
/usr/include/w32api/winspool.h:567: warning: parameter names (without types) in function declaration
/usr/include/w32api/winspool.h:569: parse error before `HWND'
/usr/include/w32api/winspool.h:572: warning: parameter names (without types) in function declaration
/usr/include/w32api/winspool.h:574: parse error before `LPSTR'
/usr/include/w32api/winspool.h:576: warning: parameter names (without types) in function declaration
/usr/include/w32api/winspool.h:578: warning: parameter names (without types) in function declaration
/usr/include/w32api/winspool.h:580: warning: parameter names (without types) in function declaration
/usr/include/w32api/winspool.h:582: parse error before `LPSTR'
/usr/include/w32api/winspool.h:582: `DocumentPropertiesA' declared as function returning a function
/usr/include/w32api/winspool.h:583: `DocumentPropertiesW' declared as function returning a function
/usr/include/w32api/winspool.h:590: parse error before `DWORD'
/usr/include/w32api/winspool.h:592: parse error before `DWORD'
/usr/include/w32api/winspool.h:594: parse error before `LPSTR'
/usr/include/w32api/winspool.h:596: parse error before `DWORD'
/usr/include/w32api/winspool.h:598: parse error before `LPSTR'
/usr/include/w32api/winspool.h:600: parse error before `DWORD'
/usr/include/w32api/winspool.h:602: parse error before `DWORD'
/usr/include/w32api/winspool.h:608: parse error before `LPSTR'
/usr/include/w32api/winspool.h:614: parse error before `LPSTR'
/usr/include/w32api/winspool.h:616: parse error before `LPSTR'
/usr/include/w32api/winspool.h:618: parse error before `DWORD'
/usr/include/w32api/winspool.h:620: parse error before `DWORD'
/usr/include/w32api/winspool.h:622: parse error before `PHANDLE'
/usr/include/w32api/winspool.h:624: parse error before `LPSTR'
/usr/include/w32api/winspool.h:628: parse error before `LPPRINTER_DEFAULTSA'
/usr/include/w32api/winspool.h:631: parse error before `LPSTR'
/usr/include/w32api/winspool.h:637: parse error before `LPSTR'
/usr/include/w32api/winspool.h:710: parse error before `JOB_INFO_1'
/usr/include/w32api/winspool.h:710: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:711: parse error before `JOB_INFO_2'
/usr/include/w32api/winspool.h:711: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:712: parse error before `ADDJOB_INFO_1'
/usr/include/w32api/winspool.h:712: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:713: parse error before `DATATYPES_INFO_1'
/usr/include/w32api/winspool.h:713: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:714: parse error before `MONITOR_INFO_1'
/usr/include/w32api/winspool.h:714: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:715: parse error before `MONITOR_INFO_2'
/usr/include/w32api/winspool.h:715: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:716: parse error before `DOC_INFO_1'
/usr/include/w32api/winspool.h:716: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:717: parse error before `DOC_INFO_2'
/usr/include/w32api/winspool.h:717: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:718: parse error before `PORT_INFO_1'
/usr/include/w32api/winspool.h:718: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:719: parse error before `PORT_INFO_2'
/usr/include/w32api/winspool.h:719: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:720: parse error before `PORT_INFO_3'
/usr/include/w32api/winspool.h:720: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:721: parse error before `DRIVER_INFO_2'
/usr/include/w32api/winspool.h:721: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:722: parse error before `PRINTER_INFO_1'
/usr/include/w32api/winspool.h:722: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:723: parse error before `PRINTER_INFO_2'
/usr/include/w32api/winspool.h:723: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:724: parse error before `PRINTER_INFO_4'
/usr/include/w32api/winspool.h:724: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:725: parse error before `PRINTER_INFO_5'
/usr/include/w32api/winspool.h:725: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:726: parse error before `PRINTPROCESSOR_INFO_1'
/usr/include/w32api/winspool.h:726: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:727: parse error before `FORM_INFO_1'
/usr/include/w32api/winspool.h:727: warning: data definition has no type or storage class
/usr/include/w32api/winspool.h:728: parse error before `PRINTER_DEFAULTS'
/usr/include/w32api/winspool.h:728: warning: data definition has no type or storage class
make[2]: *** [tclEnv.o] Error 1
make[2]: Leaving directory `/home/unknown/build-gdb20001125-1/tcl/cygwin'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/unknown/build-gdb20001125-1/tcl'
make: *** [all-tcl] Error 2

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

end of thread, other threads:[~2001-04-06  7:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-04-03  9:57 Problems building build-gdb20001125-1 on winnt (cygwin) Mack Lobell
2001-04-03 12:38 ` Christopher Faylor
2001-04-05 23:15 ` Mo DeJong
2001-04-06  7:15   ` Christopher Faylor
  -- strict thread matches above, loose matches on Subject: below --
2001-04-02  8:17 Mack Lobell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox