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

git-svn-id: svn://10.0.0.236/trunk@243955 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
reed%reedloden.com 2008-01-25 07:15:32 +00:00
parent 6d77a9c550
commit 0e14a5fdeb
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 */