Changeset 28f3f4f in mod_gnutls
- Timestamp:
- May 12, 2015, 6:19:13 PM (8 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, master, proxy-ticket, upstream
- Children:
- e765670
- Parents:
- 6e1d45d
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
README
r6e1d45d r28f3f4f 27 27 * APR Memcache >= 0.7.0 (Optional) 28 28 * libmsv >= 0.1 (Optional) 29 * pandoc (for documentation, optional) 29 30 30 31 Installation -
configure.ac
r6e1d45d r28f3f4f 79 79 # Building documentation requires pandoc, which in turn needs pdflatex 80 80 # to build PDF output. 81 build_doc=no 81 82 AC_PATH_PROG([PANDOC], [pandoc], [no]) 82 83 if test "$PANDOC" != "no"; then 83 84 AC_PATH_PROG([PDFLATEX], [pdflatex], [no]) 85 if test "$PDFLATEX" != "no"; then 86 build_doc=yes 87 else 88 build_doc="html only" 89 fi 84 90 fi 85 91 AM_CONDITIONAL([USE_PANDOC], [test "$PANDOC" != "no"]) … … 103 109 echo " * Apache Modules directory: ${AP_LIBEXECDIR}" 104 110 echo " * GnuTLS Library version: ${LIBGNUTLS_VERSION}" 105 echo " * SRP Authentication: ${use_srp}" 106 echo " * MSVA Client Verification: ${use_msva}" 111 echo " * SRP Authentication: ${use_srp}" 112 echo " * MSVA Client Verification: ${use_msva}" 113 echo " * Build documentation: ${build_doc}" 107 114 echo "" 108 115 echo "---"
Note: See TracChangeset
for help on using the changeset viewer.