diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-04-13 20:47:22 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-04-13 20:47:22 +0200 |
commit | 03918189506c443594f325a836b54220d36bb5a1 (patch) | |
tree | 75b79897721646175607601609b3e7c2e50b2eed | |
parent | 1aae61c7989b2455b8f025716bdedbc4ddf6024d (diff) | |
download | xine-lib-03918189506c443594f325a836b54220d36bb5a1.tar.gz xine-lib-03918189506c443594f325a836b54220d36bb5a1.tar.bz2 |
Fix AC_CHECK_LIB call.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index ef336b6e7..8817e3902 100644 --- a/configure.ac +++ b/configure.ac @@ -326,7 +326,7 @@ AC_ARG_WITH([external-libxdg-basedir], if test "x$with_external_libxdg_basedir" = "xyes"; then AC_CHECK_HEADER([basedir.h], , [AC_MSG_ERROR([Unable to find basedir.h for libxdg-basedir])]) - AC_CHECK_LIB([xdg-basedir], , [AC_MSG_ERROR([Unable to find libxdg-basedir])]) + AC_CHECK_LIB([xdg-basedir], [xdgCacheHome], , [AC_MSG_ERROR([Unable to find libxdg-basedir])]) XDG_BASEDIR_CFLAGS='' XDG_BASEDIR_LIBS='-lxdg-basedir' |