diff options
author | Matthias Hopf <mat@mshopf.de> | 2008-10-02 17:31:31 +0200 |
---|---|---|
committer | Matthias Hopf <mat@mshopf.de> | 2008-10-02 17:31:31 +0200 |
commit | 574282f24812a9cfac7f120e08115b29362f44fa (patch) | |
tree | e9594dfb5294e186d8b0dc5d18300ed90039593d | |
parent | 44e738a70be256a3ca0078212473f66cc9146f1e (diff) | |
download | xine-lib-574282f24812a9cfac7f120e08115b29362f44fa.tar.gz xine-lib-574282f24812a9cfac7f120e08115b29362f44fa.tar.bz2 |
Fix compilation for new auto*.
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 9f5f67e01..52f31ecb4 100644 --- a/configure.ac +++ b/configure.ac @@ -728,7 +728,7 @@ if test "x$no_x" = "x" && test "x$enable_xvmc" != "xno"; then AC_ARG_WITH(xxmc-path, AS_HELP_STRING([--with-xxmc-path=path], [where libXvMC libraries for the xxmc plugin are installed. Defalts to the default X library path.]), - xxmc_path="$withval", xxmc_path="$x_libraries") + xxmc_path="$withval", xxmc_path="${x_libraries:-/usr/lib}") AC_ARG_WITH(xxmc-lib, AS_HELP_STRING([--with-xxmc-lib=XXXX], [The name of the XvMC library libXXXX.so for the xxmc plugin.]),xxmc_stub="$withval", xxmc_stub="XvMCW") @@ -819,7 +819,7 @@ if test "x$no_x" = "x" && test "x$enable_xvmc" != "xno"; then AC_ARG_WITH(xvmc-path, AS_HELP_STRING([--with-xvmc-path=path], [where libXvMC libraries for the xvmc plugin are installed. Defalts to the default X library path.]), - xvmc_path="$withval", xvmc_path="$x_libraries") + xvmc_path="$withval", xvmc_path="${x_libraries:-/usr/lib}") AC_ARG_WITH(xvmc-lib, AS_HELP_STRING([--with-xvmc-lib=XXXX], [The name of the XvMC library libXXXX.so for the xvmc plugin.]),xvmc_stub="$withval", xvmc_stub="XvMCW") |