diff options
author | Andre Pang <athp@users.sourceforge.net> | 2004-10-24 14:37:51 +0000 |
---|---|---|
committer | Andre Pang <athp@users.sourceforge.net> | 2004-10-24 14:37:51 +0000 |
commit | d007e2f23a9b01f0d5b2790492e33cbd2d1602d1 (patch) | |
tree | 9da599e46b57d7a03ecfe19de01a7055f79d40c7 /src/video_out/macosx | |
parent | 67a3604e4ec804393d28ecacc57ae01ea7597918 (diff) | |
download | xine-lib-d007e2f23a9b01f0d5b2790492e33cbd2d1602d1.tar.gz xine-lib-d007e2f23a9b01f0d5b2790492e33cbd2d1602d1.tar.bz2 |
libxine_macosx_video -> libxineMacOSXVideo: don't use underscores in library name, since underscores break ld's -sub_library flag on Mac OS X (yeah, really ...)
CVS patchset: 7072
CVS date: 2004/10/24 14:37:51
Diffstat (limited to 'src/video_out/macosx')
-rw-r--r-- | src/video_out/macosx/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_out/macosx/Makefile.am b/src/video_out/macosx/Makefile.am index 028c52eeb..7ad2f811d 100644 --- a/src/video_out/macosx/Makefile.am +++ b/src/video_out/macosx/Makefile.am @@ -9,16 +9,16 @@ EXTRA_DIST = \ if HAVE_MACOSX_VIDEO -lib_LTLIBRARIES = libxine_macosx_video.la +lib_LTLIBRARIES = libxineMacOSXVideo.la -libxine_macosx_video_la_SOURCES = XineOpenGLView.m XineVideoWindow.m +libxineMacOSXVideo_la_SOURCES = XineOpenGLView.m XineVideoWindow.m # 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 \ +libxineMacOSXVideo_la_LDFLAGS = -version-info \ $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \ -Wl,-framework -Wl,Cocoa -framework Cocoa \ -Wl,-framework -Wl,OpenGL -framework OpenGL -libxine_macosx_video_la_OBJCFLAGS = $(OBJCFLAGS) +libxine_MacOSXVideo_la_OBJCFLAGS = $(OBJCFLAGS) include_HEADERS = video_window.h XineOpenGLView.h XineVideoWindow.h |