URL:
  <http://savannah.gnu.org/bugs/?func=detailitem&item_id=13893>

                 Summary: Bug in NSRunLoop.h
                 Project: GNUstep
            Submitted by: None
            Submitted on: sam 23.07.2005 à 12:40
                Category: Base/Foundation
                Severity: 3 - Normal
              Item Group: Bug
                  Status: None
                 Privacy: Public
             Assigned to: None
             Open/Closed: Open

    _______________________________________________________

Details:

Well I think that the definition of RunLoopEventType in NSRunLoop.h is broken
if the environment isn't with mingw.

Actual code : 
typedef enum {
#ifdef __MINGW__
    ET_HANDLE,
#else
    ET_RDESC,   /* Watch for descriptor becoming readable.      */
    ET_WDESC,   /* Watch for descriptor becoming writeable.     */
#endif
    ET_RPORT,   /* Watch for message arriving on port.          */
/* For binary compatibility we have an extra ifdef... */
#ifndef __MINGW__
    ET_EDESC    /* Watch for descriptor with out-of-band data.  */
#endif
} RunLoopEventType;

>From the test I have done the , after ET_RPORT will make an error at build
time if MINGW isn't defined.






    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?func=detailitem&item_id=13893>

_______________________________________________
  Message posté via/par Savannah
  http://savannah.gnu.org/



_______________________________________________
Bug-gnustep mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-gnustep

Reply via email to