Changeset 6e1d45d in mod_gnutls
- Timestamp:
- May 12, 2015, 6:09:36 PM (8 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, main, master, proxy-ticket, upstream
- Children:
- 28f3f4f
- Parents:
- 47a3f49
- git-author:
- Thomas Klute <thomas2.klute@…> (05/12/15 18:06:10)
- git-committer:
- Thomas Klute <thomas2.klute@…> (05/12/15 18:09:36)
- Files:
-
- 1 added
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile.am
r47a3f49 r6e1d45d 8 8 NOTICE LICENSE 9 9 10 SUBDIRS = src test 10 SUBDIRS = src test doc 11 11 ACLOCAL_AMFLAGS = -I m4 -
configure.ac
r47a3f49 r6e1d45d 77 77 AC_SUBST(have_apr_memcache) 78 78 79 # Building documentation requires pandoc, which in turn needs pdflatex 80 # to build PDF output. 81 AC_PATH_PROG([PANDOC], [pandoc], [no]) 82 if test "$PANDOC" != "no"; then 83 AC_PATH_PROG([PDFLATEX], [pdflatex], [no]) 84 fi 85 AM_CONDITIONAL([USE_PANDOC], [test "$PANDOC" != "no"]) 86 AM_CONDITIONAL([USE_PDFLATEX], [test "$PANDOC" != "no" && \ 87 test "$PDFLATEX" != "no"]) 88 79 89 MODULE_CFLAGS="${LIBGNUTLS_CFLAGS} ${SRP_CFLAGS} ${MSVA_CFLAGS} ${APR_MEMCACHE_CFLAGS} ${APXS_CFLAGS} ${AP_INCLUDES} ${APR_INCLUDES} ${APU_INCLUDES} ${STRICT_CFLAGS}" 80 90 MODULE_LIBS="${APR_MEMCACHE_LIBS} ${LIBGNUTLS_LIBS}" … … 83 93 AC_SUBST(MODULE_LIBS) 84 94 85 AC_CONFIG_FILES([Makefile src/Makefile test/Makefile test/tests/Makefile include/mod_gnutls.h]) 95 AC_CONFIG_FILES([Makefile src/Makefile test/Makefile test/tests/Makefile \ 96 doc/Makefile include/mod_gnutls.h]) 86 97 AC_OUTPUT 87 98
Note: See TracChangeset
for help on using the changeset viewer.