diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-04-13 18:52:38 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-04-13 18:52:38 +0200 |
commit | 1aae61c7989b2455b8f025716bdedbc4ddf6024d (patch) | |
tree | af87a38423cf4b8824e52d75e1b307f8e7555e7b /configure.ac | |
parent | cb93fce032c0fc912f3561686537e858d43c137c (diff) | |
download | xine-lib-1aae61c7989b2455b8f025716bdedbc4ddf6024d.tar.gz xine-lib-1aae61c7989b2455b8f025716bdedbc4ddf6024d.tar.bz2 |
Import libxdg-basedir into contributed code.
The libxdg-basedir project, developed by Mark Nevill, implements
a simple way to use the XDG_* variables used to define the paths
for the XDG Base Directory Specification (0.6).
As I was going to reinvent the wheel, I prefer to import this
library that was already written, hoping it will continue being
developed.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 03d3437e0..ef336b6e7 100644 --- a/configure.ac +++ b/configure.ac @@ -317,6 +317,25 @@ powerpc64:yes | s390x:yes | sparc64:yes | x86_64:yes) esac AC_MSG_RESULT([$XINE_LIBNAME]) +dnl --------------------------------------------- +dnl libxdg-basedir detection +dnl --------------------------------------------- + +AC_ARG_WITH([external-libxdg-basedir], + AS_HELP_STRING([--with-external-libxdg-basedir], [use external copy of 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])]) + + XDG_BASEDIR_CFLAGS='' + XDG_BASEDIR_LIBS='-lxdg-basedir' +fi + +AC_SUBST([XDG_BASEDIR_CFLAGS]) +AC_SUBST([XDG_BASEDIR_LIBS]) + +AM_CONDITIONAL([EXTERNAL_LIBXDG_BASEDIR], [test "x$with_external_libxdg_basedir" = "xyes"]) dnl --------------------------------------------- dnl mpeg2lib and ffmpeg stuff @@ -2563,6 +2582,7 @@ doc/faq/Makefile doc/Doxyfile contrib/Makefile contrib/libmpcdec/Makefile +contrib/libxdg-basedir/Makefile include/Makefile include/xine.h lib/Makefile |