2004-01-18 Casper S. Hornstrup <chorns@users.sourceforge.net>

* tools/winebuild/spec32.c (BuildDef32File): Don't support private flag
	when cross-compiling.

svn path=/trunk/; revision=7737
This commit is contained in:
Casper Hornstrup 2004-01-18 13:42:57 +00:00
parent bffadccb2c
commit 5a57e066ec
2 changed files with 7 additions and 2 deletions

View file

@ -1,4 +1,9 @@
2003-01-02 Steven Edwards <Steven_Ed4153@yahoo.com>
2004-01-18 Casper S. Hornstrup <chorns@users.sourceforge.net>
* tools/winebuild/spec32.c (BuildDef32File): Don't support private flag
when cross-compiling.
2004-01-02 Steven Edwards <Steven_Ed4153@yahoo.com>
* ntoskrnl/kd/dlog.c: Make /DEBUGPORT=FILE work. With the help
of Filip Navara
* ntoskrnl/ke/main.c: Ditto

View file

@ -906,7 +906,7 @@ void BuildDef32File(FILE *outfile)
fprintf( outfile, " @%d", odp->ordinal );
if (!odp->name) fprintf( outfile, " NONAME" );
if (is_data) fprintf( outfile, " DATA" );
#if !defined(WIN32)
#if !defined(__REACTOS__)
/* MinGW binutils cannot handle this correctly */
if (odp->flags & FLAG_PRIVATE) fprintf( outfile, " PRIVATE" );
#endif