Ryan C. Gordon <icculus@icculus.org> [Wed, 28 Mar 2007 00:36:35 +0000] rev 3926
Fixed Mac OS X config header when compiling with -Wundef.
Ryan C. Gordon <icculus@icculus.org> [Tue, 27 Mar 2007 00:37:51 +0000] rev 3925
From: Laurence Passmore
Date: Mon, 26 Mar 2007 23:22:45 +0100
To: "A list for developers using the SDL library. \(includes SDL-announce\)" <sdl@lists.libsdl.org>
Subject: [SDL] SDL_config_macosx.h: MAC_OS_X_VERSION_MIN_REQUIRED
Hi,
I just compiled my SDL application on Mac OS X with -Wundef and it
threw a number of errors. Of note was:
SDL_config_macosx.h: 34
warning: "MAC_OS_X_VERSION_MIN_REQUIRED" is not defined
Line 34 is:
#if ( (MAC_OS_X_VERSION_MIN_REQUIRED >= 1030) || (!defined (__POWERPC__)) )
Now according to this mailing on the Apple developer lists:
http://lists.apple.com/archives/Xcode-users/2005/May/msg00602.html
that particular #define was removed from the gcc compiler defaults
and AvailabilityMacros.h (/usr/include/AvailabilityMacros.h) should
be pulled in directly instead.
Would someone closer to the Mac OS X version of SDL be willing to
make that change please? Thanks.
Laurence Passmore
Homeworld SDL @ www.homeworldsdl.org
Ryan C. Gordon <icculus@icculus.org> [Sun, 18 Mar 2007 22:37:10 +0000] rev 3924
Mac OS X joystick support: don't ignore kHIDUsage_GD_MultiAxisController
devices, since they are probably joysticks, or joystick-like things.
See 3Dconnexion's SpaceNavigator for an example of such a device:
http://www.3dconnexion.com/products/3a1d.php
Thanks to Laurence Passmore for the fix.
Ryan C. Gordon <icculus@icculus.org> [Wed, 14 Mar 2007 01:09:24 +0000] rev 3923
Linux fbcon: don't include asm/page.h if we know getpagesize() exists, since
we don't need it, and doing so will hit #error lines on some CPU archs.
Thanks to Mike Frysinger for the heads up.
Fixes Bugzilla #414.
Ryan C. Gordon <icculus@icculus.org> [Fri, 23 Feb 2007 00:37:07 +0000] rev 3922
Removed some debug printf() calls I accidentally added to Subversion.
Ryan C. Gordon <icculus@icculus.org> [Tue, 20 Feb 2007 22:57:28 +0000] rev 3921
Merged r2987:2988 from trunk/SDL: buggy Sidewinder ID added to linux joysticks.
Ryan C. Gordon <icculus@icculus.org> [Tue, 20 Feb 2007 21:05:12 +0000] rev 3920
Need to set DLSCL_ADMINISTRATIVE coop level in directfb driver, or YUV overlay
creation will fail in newer DirectFB versions.
Fixes Bugzilla #394.
Ryan C. Gordon <icculus@icculus.org> [Fri, 16 Feb 2007 04:56:17 +0000] rev 3919
SDL_SetWindowCaption() on Windows: try to use the unicode
SetWindowText() if it exists in user32.dll, and fallback to converting
to the current codepage (instead of latin1) if not.
Fixes Bugzilla #365.
Ryan C. Gordon <icculus@icculus.org> [Fri, 16 Feb 2007 03:50:42 +0000] rev 3918
Minor const correctness patch to SDL_iconv.
Ryan C. Gordon <icculus@icculus.org> [Thu, 15 Feb 2007 23:50:45 +0000] rev 3917
Patched fbcon to compile on newer Linux kernels that don't #define PAGE_SIZE,
since a memory page's size may vary on various architectures and kernel
configurations.
Will use getpagesize() if it exists, the PAGE_SIZE #define from older kernels
if that doesn't, and #error out if that's not there either...but it's
probably 4096 in that case. We may revisit this.
Fixes Bugzilla #392.