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 - [TRIVIAL] Fix SDL_stdinc.h for Digital Mars compiler
Summary: [TRIVIAL] Fix SDL_stdinc.h for Digital Mars compiler
Status: RESOLVED FIXED
Alias: None
Product: SDL
Classification: Unclassified
Component: build (show other bugs)
Version: HG 1.2
Hardware: All All
: P2 minor
Assignee: Ryan C. Gordon
QA Contact: Sam Lantinga
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-06-20 08:57 UTC by Nicos
Modified: 2006-06-21 03:35 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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!