Changeset 0bda20f in mod_gnutls
- Timestamp:
- May 27, 2016, 4:07:24 PM (6 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, master, proxy-ticket, upstream
- Children:
- d70dd6e
- Parents:
- eb34ac4
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile.am
reb34ac4 r0bda20f 1 AUTOMAKE_OPTIONS = foreign dist-bzip2 1 AUTOMAKE_OPTIONS = foreign dist-bzip2 no-dist-gzip 2 2 3 3 EXTRA_DIST = m4/outoforder.m4 m4/apache.m4 \ … … 8 8 NOTICE LICENSE 9 9 10 AM_DISTCHECK_CONFIGURE_FLAGS = "--enable-vpath-install" 11 DISTCLEANFILES = config.nice 12 10 13 SUBDIRS = src test doc 11 14 ACLOCAL_AMFLAGS = -I m4 -
configure.ac
reb34ac4 r0bda20f 35 35 36 36 LIBGNUTLS_VERSION=`pkg-config --modversion gnutls` 37 38 AC_ARG_ENABLE(vpath-install, 39 AS_HELP_STRING([--enable-vpath-install], 40 [Modify the Apache module directory provided by apxs to \ 41 follow --prefix, if necessary. Most users will not want this, \ 42 but it is required for VPATH builds including "make \ 43 distcheck".]), 44 vpath_install=$enableval, vpath_install=no) 45 AM_CONDITIONAL([ENABLE_VPATH_INSTALL], [test "$vpath_install" = "yes"]) 37 46 38 47 AC_ARG_ENABLE(srp, -
m4/apache.m4
reb34ac4 r0bda20f 39 39 40 40 AP_PREFIX="`$APXS_BIN -q prefix 2>/dev/null`" 41 AP_EXEC_PREFIX="`$APXS_BIN -q exec_prefix 2>/dev/null`" 41 42 42 43 AP_BINDIR="`$APXS_BIN -q bindir 2>/dev/null`" … … 126 127 AC_SUBST(AP_DEFS) 127 128 AC_SUBST(AP_PREFIX) 129 AC_SUBST(AP_EXEC_PREFIX) 128 130 AC_SUBST(AP_CFLAGS) 129 131 AC_SUBST(AP_CPPFLAGS) -
src/Makefile.am
reb34ac4 r0bda20f 1 1 # installation directory for Apache modules 2 if ENABLE_VPATH_INSTALL 3 apmodpkglibdir = $(subst ${AP_EXEC_PREFIX},${prefix},${AP_LIBEXECDIR}) 4 else 2 5 apmodpkglibdir = ${AP_LIBEXECDIR} 6 endif 3 7 4 8 mod_gnutls_la_SOURCES = mod_gnutls.c gnutls_io.c gnutls_cache.c gnutls_config.c gnutls_hooks.c -
test/Makefile.am
reb34ac4 r0bda20f 151 151 152 152 # Apache configuration and data files 153 apache_data = base_apache.conf cgi_module.conf data/* mime.types proxy_mods.conf 154 155 EXTRA_DIST = $(apache_data) $(cert_templates) *.uid.in common.bash \ 156 proxy_backend.bash runtests server-crl.template softhsm.bash 153 apache_data = base_apache.conf cgi_module.conf data/dump.cgi data/secret.txt data/test.txt mime.types proxy_mods.conf 154 155 EXTRA_DIST = $(apache_data) $(cert_templates) $(shared_identities:=.uid.in) \ 156 common.bash proxy_backend.bash runtests server-crl.template \ 157 softhsm.bash 157 158 158 159 # Lockfile for the main Apache process
Note: See TracChangeset
for help on using the changeset viewer.