a7e0da1672
- back to building the HTML documentation (instead of prebuilding and then extracting it during the build), but this time without requiring texlive, since pdftex apparently isn't used for this purpose anyway (libvdpau-nopdftex.patch) - do not build the documentation but package a prebuilt tar of it to avoid huge build cycle OBS-URL: https://build.opensuse.org/request/show/126177 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libvdpau?expand=0&rev=18
28 lines
981 B
Diff
28 lines
981 B
Diff
--- configure.ac.old 2012-06-26 14:21:28.000000000 +0200
|
|
+++ configure.ac 2012-06-26 14:22:30.000000000 +0200
|
|
@@ -48,11 +48,9 @@ AC_ARG_ENABLE(documentation, AS_HELP_STR
|
|
if test "x$DOCS" != xno; then
|
|
AC_CHECK_TOOL([DOXYGEN], [doxygen], [no])
|
|
AC_CHECK_TOOL([DOT], [dot], [no])
|
|
- AC_CHECK_TOOL([PDFTEX], [pdftex], [no])
|
|
else
|
|
DOXYGEN=no
|
|
DOT=no
|
|
- PDFTEX=no
|
|
fi
|
|
if test "x$DOCS" = xyes; then
|
|
if test "x$DOXYGEN" = xno; then
|
|
@@ -61,11 +59,8 @@ if test "x$DOCS" = xyes; then
|
|
if test "x$DOT" = xno; then
|
|
AC_ERROR([Documentation enabled but dot was not found in your path. Please install graphviz])
|
|
fi
|
|
- if test "x$PDFTEX" = xno; then
|
|
- AC_ERROR([Documentation enabled but pdftex was not found in your path])
|
|
- fi
|
|
fi
|
|
-AM_CONDITIONAL([ENABLE_DOCS], [test "x$DOXYGEN" != xno -a "x$DOT" != xno -a "x$PDFTEX" != xno])
|
|
+AM_CONDITIONAL([ENABLE_DOCS], [test "x$DOXYGEN" != xno -a "x$DOT" != xno])
|
|
AC_SUBST(DOXYGEN)
|
|
|
|
# Options
|