summaryrefslogtreecommitdiff
path: root/i486-stage3/libpsl/libpsl-0.19.1-configure-disable-man-no-xsltproc.patch
diff options
context:
space:
mode:
Diffstat (limited to 'i486-stage3/libpsl/libpsl-0.19.1-configure-disable-man-no-xsltproc.patch')
-rw-r--r--i486-stage3/libpsl/libpsl-0.19.1-configure-disable-man-no-xsltproc.patch41
1 files changed, 41 insertions, 0 deletions
diff --git a/i486-stage3/libpsl/libpsl-0.19.1-configure-disable-man-no-xsltproc.patch b/i486-stage3/libpsl/libpsl-0.19.1-configure-disable-man-no-xsltproc.patch
new file mode 100644
index 0000000..b912c44
--- /dev/null
+++ b/i486-stage3/libpsl/libpsl-0.19.1-configure-disable-man-no-xsltproc.patch
@@ -0,0 +1,41 @@
+diff -rauN libpsl-0.19.1/configure.ac libpsl-0.19.1-configure-disable-man-no-xsltproc-patch/configure.ac
+--- libpsl-0.19.1/configure.ac 2017-11-09 15:37:11.000000000 +0100
++++ libpsl-0.19.1-configure-disable-man-no-xsltproc-patch/configure.ac 2018-03-06 19:58:33.473353671 +0100
+@@ -53,24 +53,20 @@
+ #
+ # enable creation of man pages
+ #
+-AC_ARG_ENABLE(man,[AC_HELP_STRING([--enable-man],
+- [generate man pages [default=auto]])],enable_man=yes,enable_man=no)
+-AS_IF([test "$enable_man" != no], [
+- AC_PATH_PROG([XSLTPROC], [xsltproc])
+- AS_IF([test -z "$XSLTPROC"], [
+- AS_IF([test "$enable_man" = yes], [
+- AC_MSG_ERROR([xsltproc is required for --enable-man])
+- ])
+- enable_man=no
++enable_man=no
++AC_ARG_ENABLE([man],
++ [AC_HELP_STRING([--enable-man], [generate man pages [default=auto]])],
++ [
++ if test "$enableval" = yes; then
++ enable_man=yes
++ AC_PATH_PROG([XSLTPROC], [xsltproc])
++ AS_IF([test -z "$XSLTPROC"], [
++ AC_MSG_ERROR([xsltproc is required for --enable-man])
++ enable_man="no (xsltproc not found)"
++ ])
++ fi
+ ])
+-])
+-AM_CONDITIONAL(ENABLE_MAN, test x$enable_man != xno)
+-AC_MSG_CHECKING([whether to generate man pages])
+-AS_IF([ test "$enable_man" != no ], [
+- AC_MSG_RESULT([yes])
+-], [
+- AC_MSG_RESULT([no])
+-])
++AM_CONDITIONAL(ENABLE_MAN, test x$enable_man = xyes)
+
+ # src/psl-make-dafsa needs python 2.7+
+ AM_PATH_PYTHON([2.7])