30 lines
1.2 KiB
Diff
30 lines
1.2 KiB
Diff
tree 27b16715df5c
|
|
parent f5ff69fc65d3
|
|
author Matthias Hopf <mat@mshopf.de> 1222961491 -7200
|
|
committer Matthias Hopf <mat@mshopf.de> 1222961491 -7200
|
|
revision 9559
|
|
branch default
|
|
|
|
Fix compilation for new auto*.
|
|
diff --git a/configure.ac b/configure.ac
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -728,7 +728,7 @@
|
|
|
|
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 @@
|
|
|
|
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")
|