summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndre Pang <athp@users.sourceforge.net>2004-11-06 13:06:52 +0000
committerAndre Pang <athp@users.sourceforge.net>2004-11-06 13:06:52 +0000
commit87f7d4210e7ec7be98be329da469181f202a7fe6 (patch)
tree149b8d2d7c4c42f52394083d33a0b33846fcae87 /src
parentf0f7c8e66537074a2327df59379245e3563f00c6 (diff)
downloadxine-lib-87f7d4210e7ec7be98be329da469181f202a7fe6.tar.gz
xine-lib-87f7d4210e7ec7be98be329da469181f202a7fe6.tar.bz2
Mac OS X XineOpenGLView: Fix inclusion of xineutils.h
CVS patchset: 7107 CVS date: 2004/11/06 13:06:52
Diffstat (limited to 'src')
-rw-r--r--src/video_out/macosx/XineOpenGLView.m7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/video_out/macosx/XineOpenGLView.m b/src/video_out/macosx/XineOpenGLView.m
index 7d3c26418..1d1f8a1e9 100644
--- a/src/video_out/macosx/XineOpenGLView.m
+++ b/src/video_out/macosx/XineOpenGLView.m
@@ -31,7 +31,12 @@
#import "XineOpenGLView.h"
-#include <xine/xineutils.h>
+#ifdef XINE_COMPILE
+# include "xineutils.h"
+#else
+# include <xine/xineutils.h>
+#endif
+
NSString *XineViewDidResizeNotification = @"XineViewDidResizeNotification";