Custom Query (245 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (10 - 12 of 245)

1 2 3 4 5 6 7 8 9 10 11 12 13 14
Ticket Resolution Summary Owner Reporter
#16 fixed Allows dot as valid char for dll names bird Yuri Dario
Description

The .def library parser doesn't allow dots inside names for DLL.

This patch will enable it:

Index: moddef2.c
===================================================================
RCS file: /netlabs.cvs/libc/src/emx/src/libmoddef/moddef2.c,v
retrieving revision 1.1.1.2
diff -r1.1.1.2 moddef2.c
125a126,132
>       if (token == _MD_dot)
>         {
>           _strcat( stmt.library.name, ".");
>           token = _md_next_token (md);
>           _strcat (stmt.library.name, _md_get_string (md));
>           token = _md_next_token (md);
>         }

#271 fixed Build break when building GS 8.71 herwigb
Description

As explained to Dmitriy and Silvan.

        gcc  -DHAVE_LONG_LONG -Zomf -o obj\genarch.exe base\genarch.c
emxomf: Input file `X:\TEMP\ccwOlfDg.o' is not an a.out file
emxomfld: a.out to omf conversion failed for 'X:\TEMP\ccwOlfDg.o'.
NMAKE : fatal error U1077: 'D:\OS2\CMD.EXE' : return code '1'
Stop.

This is 100% reproducible here.

#289 invalid Building with -fpack-struct=1 breaks struct stat Yuri Dario
Description

While struct stat has a size of 108 bytes when built without special flags, with

gcc -fpack-struct=1 stat.c

size of struct stat changes to 106 bytes. Adding

#pragma pack(4) ... #pragma pack()

around structure declarations in sys/stat.h fixes the issue.

I wonder if other structures has the same problem.

1 2 3 4 5 6 7 8 9 10 11 12 13 14
Note: See TracQuery for help on using queries.