Get rid of obsoleted XP_MAC checks. [p=reed r+a1.9=stuart]

This commit is contained in:
reed@reedloden.com 2008-01-24 23:15:32 -08:00
parent 205f1397a0
commit bf90a20b98
3 changed files with 4 additions and 11 deletions

View File

@ -74,13 +74,6 @@
*/
#undef RIGHT_SHIFT_IS_UNSIGNED
#ifdef XP_MAC /* Macintosh */
#define ALIGN_TYPE long /* for sane memory alignment */
#define NO_GETENV /* we do have the function, but it's dead */
#endif /* XP_MAC */
#endif /* JPEG_INTERNALS */

View File

@ -473,9 +473,9 @@ static int sse2supportGCC()
/* Mac Intel started with Core Duo chips which have SSE2 Support */
#if defined(__GNUC__) && defined(__i386__)
#if defined(XP_MAC) || defined(XP_MACOSX)
#if defined(XP_MACOSX)
return 1;
#endif ! XP_MAC || XP_MACOSX
#endif ! XP_MACOSX
#endif ! GNUC && i386
/* Add checking for SSE2 support for other platforms here */

View File

@ -116,9 +116,9 @@ typedef short JCOEF;
#endif
#if defined(__GNUC__) && defined(__i386__)
#if defined(XP_MAC) || defined(XP_MACOSX)
#if defined(XP_MACOSX)
#define HAVE_SSE2_INTRINSICS
#endif ! XP_MAC || XP_MACOSX
#endif ! XP_MACOSX
#endif ! GNUC && i386
/* Add support for other platforms here */