summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-16 23:50:05 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-16 23:50:05 +0000
commit8a00a66de3e29227444c0e863518743ba2d55f08 (patch)
tree9c9ceee864aa872217a56570daf965b1668dca10 /mplayer.c
parent973a0844aa1c47eecd1eec7af9aa7b8fac6a9bef (diff)
downloadmpv-8a00a66de3e29227444c0e863518743ba2d55f08.tar.bz2
mpv-8a00a66de3e29227444c0e863518743ba2d55f08.tar.xz
Replace some more broken SYS_DARWIN preprocessor conditionals with __APPLE__.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25425 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mplayer.c b/mplayer.c
index 95c7f51132..9ee4c18b65 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -1055,7 +1055,7 @@ void init_vo_spudec(void) {
* make it all work is to use the builtin SDL-bootstrap code, which
* will be done automatically by replacing our main() if we include SDL.h.
*/
-#if defined(SYS_DARWIN) && defined(HAVE_SDL)
+#if defined(__APPLE__) && defined(HAVE_SDL)
#include <SDL.h>
#endif