summaryrefslogtreecommitdiff
path: root/src/video_out/macosx
diff options
context:
space:
mode:
authorAndre Pang <athp@users.sourceforge.net>2004-06-19 13:26:29 +0000
committerAndre Pang <athp@users.sourceforge.net>2004-06-19 13:26:29 +0000
commit68149102d99370d698fbec2c531ee6ba9f23317d (patch)
tree661e078f05e68b6f8478a00aa22197d6c591ebe6 /src/video_out/macosx
parent40fd2791ae6b99b5f78244f5dc827b0d8af95cd6 (diff)
downloadxine-lib-68149102d99370d698fbec2c531ee6ba9f23317d.tar.gz
xine-lib-68149102d99370d698fbec2c531ee6ba9f23317d.tar.bz2
Removed superfluous AM_CFLAGS in src/video_out/macosx/Makefile.am
Removed inclusion of video_window.m from xineplug_vo_out_macosx plugin CVS patchset: 6702 CVS date: 2004/06/19 13:26:29
Diffstat (limited to 'src/video_out/macosx')
-rw-r--r--src/video_out/macosx/Makefile.am10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/video_out/macosx/Makefile.am b/src/video_out/macosx/Makefile.am
index 137707f72..11537a1e3 100644
--- a/src/video_out/macosx/Makefile.am
+++ b/src/video_out/macosx/Makefile.am
@@ -4,24 +4,20 @@ EXTRA_DIST = video_window.m video_window.h
if HAVE_MACOSX_VIDEO
-AM_CFLAGS = $(X_CFLAGS) -DXINE_COMPILE \
- $(SUNDGA_CFLAGS) $(SDL_CFLAGS) $(VIDIX_CFLAGS) \
- $(AALIB_CFLAGS) $(MLIB_CFLAGS) $(LIBSTK_CFLAGS) \
- $(DIRECTFB_CFLAGS) $(DIRECTX_CFLAGS) $(CACA_CFLAGS)
-
macosx_module = xineplug_vo_out_macosx.la
lib_LTLIBRARIES = libxine_macosx_video.la
libxine_macosx_video_la_SOURCES = video_window.m
libxine_macosx_video_la_LIBADD =
-# The -Wl,-framework -Wl,Cocoa is needed for libtool versions before
+# The "-Wl,-framework -Wl,..." is needed for libtool versions before
# 1.5.x (1.257): the default version that ships with Mac OS X is 1.5 (1.1220)
libxine_macosx_video_la_LDFLAGS = -version-info \
$(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
-Wl,-framework -Wl,Cocoa -framework Cocoa \
- -Wl,-framework -Wl,OpenGL -framework OpenGL \
+ -Wl,-framework -Wl,OpenGL -framework OpenGL
libxine_macosx_video_la_OBJCFLAGS = $(OBJCFLAGS)
include_HEADERS = video_window.h
+
endif