Skip to content

Commit

Permalink
Date: Wed, 13 Oct 2004 17:00:58 -0500
Browse files Browse the repository at this point in the history
From: Jonathan Atkins
Subject: [Fwd: Re: SDL_image on Solaris x86 help please]

apparently __i386__ is insufficient for Suns C Workshop compilers...
so a sun x86 user told me about this...and tested his own solution.
I think it wouldn't be a bad idea to add __i386 to the SDL_byteorder.h
so that it works for that compiler.
  • Loading branch information
slouken committed Nov 12, 2004
1 parent 16a601b commit 8c646bf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/SDL_byteorder.h
Expand Up @@ -39,7 +39,8 @@ static char rcsid =
script so that application code can use this too. The "right" way would
be to dynamically generate this file on install, but that's a lot of work.
*/
#if defined(__i386__) || defined(__ia64__) || defined(WIN32) || \
#if (defined(__i386__) || defined(__i386)) || \
defined(__ia64__) || defined(WIN32) || \
(defined(__alpha__) || defined(__alpha)) || \
defined(__arm__) || \
(defined(__mips__) && defined(__MIPSEL__)) || \
Expand Down

0 comments on commit 8c646bf

Please sign in to comment.