Magellan Linux

Contents of /trunk/xine-lib/patches/xine-lib-1.1.1-xvfix.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 153 - (show annotations) (download)
Tue May 8 20:52:56 2007 UTC (17 years ago) by niro
File size: 912 byte(s)
-import

1 Fix the ./configure --enable-static-xv parameter, that was broken on 1.1.1
2 release.
3 Index: xine-lib-1.1.1/configure.ac
4 ===================================================================
5 --- xine-lib-1.1.1.orig/configure.ac
6 +++ xine-lib-1.1.1/configure.ac
7 @@ -559,10 +559,14 @@ dnl Only dynamic linking is possible whe
8 AC_ARG_WITH(xv-path, AC_HELP_STRING([--with-xv-path=path], [where libXv is installed]),
9 xv_path="$withval",)
10
11 -AC_ARG_ENABLE(shared-xv,
12 - AC_HELP_STRING([--enable-static-xv],[Enable this to force linking against libXv.a]),
13 - xv_prefer_shared="no",
14 - xv_prefer_shared="yes")
15 +AC_ARG_ENABLE([static-xv],
16 + AC_HELP_STRING([--enable-static-xv],[Enable this to force linking against libXv.a]))
17 +
18 +if test "x$enable_static_xv" = "xyes"; then
19 + xv_prefer_shared="no"
20 +else
21 + xv_prefer_shared="yes"
22 +fi
23
24 if test x"$no_x" != "xyes"; then
25 AC_FIND_LIBXV