We are currently migrating Bugzilla to GitHub issues.
Any changes made to the bug tracker now will be lost, so please do not post new bugs or make changes to them.
When we're done, all bug URLs will redirect to their equivalent location on the new bug tracker.

Bug 376

Summary: Fix SDL_config_win32.h for dmc
Product: SDL Reporter: Nicos <nicosp>
Component: buildAssignee: Ryan C. Gordon <icculus>
Status: RESOLVED FIXED QA Contact: Sam Lantinga <slouken>
Severity: minor    
Priority: P2    
Version: HG 1.2   
Hardware: x86   
OS: Windows (All)   

Description Nicos 2006-12-22 06:08:59 UTC
Digital mars has C99 integer types in stdint.h like gcc.
For dmc to work the line in SDL_config_win32.h:

#ifdef __GNUC__

should be changed to:

#if defined(__GNUC__) || defined(__DMC__)

This is the last change required to use the original SDL headers with dmc. I forgot to send this in Bug#256 with the SDL_stdinc.h fix :)
Comment 1 Ryan C. Gordon 2007-02-12 06:45:37 UTC
This is fixed in svn revision #2957 for the 1.2 branch and #2958 for the 1.3 branch.

Thanks!

--ryan.