configure.ac | configure.ac | |||
---|---|---|---|---|
AC_PREREQ(2.60) | AC_PREREQ(2.60) | |||
AC_INIT(libvdpau, 0.8, [vdpau@lists.freedesktop.org], libvdpau) | AC_INIT(libvdpau, 0.9, [vdpau@lists.freedesktop.org], libvdpau) | |||
AM_INIT_AUTOMAKE([dist-bzip2 foreign]) | AM_INIT_AUTOMAKE([dist-bzip2 foreign]) | |||
AM_MAINTAINER_MODE | AM_MAINTAINER_MODE | |||
AC_CONFIG_HEADERS(config.h) | AC_CONFIG_HEADERS(config.h) | |||
# Disable static libraries by default. Use --enable-static if you really w ant | # Disable static libraries by default. Use --enable-static if you really w ant | |||
# them. | # them. | |||
AC_DISABLE_STATIC | AC_DISABLE_STATIC | |||
# Check for programs. | # Check for programs. | |||
skipping to change at line 46 | skipping to change at line 46 | |||
;; | ;; | |||
esac | esac | |||
AM_CONDITIONAL(DRI2, test "x$DRI2" = xyes) | AM_CONDITIONAL(DRI2, test "x$DRI2" = xyes) | |||
dnl Check to see if dlopen is in default libraries (like Solaris, which | dnl Check to see if dlopen is in default libraries (like Solaris, which | |||
dnl has it in libc), or if libdl is needed to get it. | dnl has it in libc), or if libdl is needed to get it. | |||
AC_CHECK_FUNC([dlopen], [], | AC_CHECK_FUNC([dlopen], [], | |||
AC_CHECK_LIB([dl], [dlopen], DLOPEN_LIBS="-ldl")) | AC_CHECK_LIB([dl], [dlopen], DLOPEN_LIBS="-ldl")) | |||
AC_SUBST([DLOPEN_LIBS]) | AC_SUBST([DLOPEN_LIBS]) | |||
# Look for POSIX threads | ||||
AC_SEARCH_LIBS([pthread_once], [pthread pthreads c_r], [ | ||||
AS_IF([test "$ac_cv_search_pthread_once" != "none required"], [ | ||||
PTHREAD_LIBS="$ac_cv_search_pthread_once" | ||||
]) | ||||
]) | ||||
AC_SUBST([PTHREAD_LIBS]) | ||||
# Check for Doxygen. | # Check for Doxygen. | |||
AC_ARG_ENABLE(documentation, AS_HELP_STRING([--disable-documentation], [Dis able Doxygen documentation (default: auto)]), [DOCS=$enableval], [DOCS=auto ]) | AC_ARG_ENABLE(documentation, AS_HELP_STRING([--disable-documentation], [Dis able Doxygen documentation (default: auto)]), [DOCS=$enableval], [DOCS=auto ]) | |||
if test "x$DOCS" != xno; then | if test "x$DOCS" != xno; then | |||
AC_CHECK_TOOL([DOXYGEN], [doxygen], [no]) | AC_CHECK_TOOL([DOXYGEN], [doxygen], [no]) | |||
AC_CHECK_TOOL([DOT], [dot], [no]) | AC_CHECK_TOOL([DOT], [dot], [no]) | |||
AC_CHECK_TOOL([PDFTEX], [pdftex], [no]) | AC_CHECK_TOOL([PDFTEX], [pdftex], [no]) | |||
else | else | |||
DOXYGEN=no | DOXYGEN=no | |||
DOT=no | DOT=no | |||
PDFTEX=no | PDFTEX=no | |||
End of changes. 2 change blocks. | ||||
1 lines changed or deleted | 9 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/ |