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 256

Summary: [TRIVIAL] Fix SDL_stdinc.h for Digital Mars compiler
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: All   
OS: All   

Description Nicos 2006-06-20 08:57:42 UTC
In:
 #if defined(HAVE_ALLOCA) && !defined(alloca)
 ...
 #endif

alloca is redifined for dmc.
The code below is required for Digital Mars. alloca is defined in <stdlib.h>

# elif defined(__DMC__)
#  include <stdlib.h>
Comment 1 Sam Lantinga 2006-06-21 03:35:47 UTC
This is fixed in subversion, thanks!