process. The default is to attempt the build of all possible
helpers. Use --disable-storeid-rewrite-helpers to build none.
For a list of available helpers see the
- helpers/storeid_rewrite directory.]),[
+ src/store/id_rewriters/ directory.]),[
])
-m4_include([helpers/storeid_rewrite/modules.m4])
+m4_include([src/store/id_rewriters/helpers.m4])
AC_ARG_WITH(valgrind-debug,
AS_HELP_STRING([--with-valgrind-debug],
doc/release-notes/Makefile
errors/Makefile
helpers/Makefile
- helpers/storeid_rewrite/Makefile
- helpers/storeid_rewrite/file/Makefile
helpers/url_rewrite/Makefile
helpers/url_rewrite/fake/Makefile
helpers/url_rewrite/LFS/Makefile
src/snmp/Makefile
src/ssl/Makefile
src/store/Makefile
+ src/store/id_rewriters/Makefile
+ src/store/id_rewriters/file/Makefile
test-suite/Makefile
tools/Makefile
tools/helper-mux/Makefile
EXTRA_DIST = defines.h
-SUBDIRS = \
- url_rewrite \
- storeid_rewrite
+SUBDIRS = url_rewrite
include $(top_srcdir)/src/Common.am
include $(top_srcdir)/src/TestHeaders.am
+SUBDIRS= id_rewriters
+
noinst_LTLIBRARIES = libstore.la
libstore_la_SOURCES= \
## Please see the COPYING and CONTRIBUTORS files for details.
##
-DIST_SUBDIRS = file
-SUBDIRS = $(STOREID_REWRITE_HELPERS)
+DIST_SUBDIRS= file
+SUBDIRS= $(STOREID_REWRITE_HELPERS)
+EXTRA_DIST= helpers.m4
#define list of modules to build
auto_storeid_modules=no
if test "x${enable_storeid_rewrite_helpers:=yes}" = "xyes" ; then
- SQUID_LOOK_FOR_MODULES([$srcdir/helpers/storeid_rewrite],[enable_storeid_rewrite_helpers])
+ SQUID_LOOK_FOR_MODULES([$srcdir/src/store/id_rewriters],[enable_storeid_rewrite_helpers])
auto_storeid_modules=yes
fi
STOREID_REWRITE_HELPERS=""
if test "x$enable_storeid_rewrite_helpers" != "xno" ; then
for helper in $enable_storeid_rewrite_helpers; do
- dir="$srcdir/helpers/storeid_rewrite/$helper"
+ dir="$srcdir/src/store/id_rewriters/$helper"
# modules converted to autoconf macros already
# NP: we only need this list because m4_include() does not accept variables
if test "x$helper" = "xfile" ; then
- m4_include([helpers/storeid_rewrite/file/required.m4])
+ m4_include([src/store/id_rewriters/file/required.m4])
# modules not yet converted to autoconf macros (or third party drop-in's)
elif test -f "$dir/config.test" && sh "$dir/config.test" "$squid_host_os"; then
BUILD_HELPER="$helper"
fi
- if test -d "$srcdir/helpers/storeid_rewrite/$helper"; then
+ if test -d "$srcdir/src/store/id_rewriters/$helper"; then
if test "$BUILD_HELPER" != "$helper"; then
if test "x$auto_storeid_modules" = "xyes"; then
AC_MSG_NOTICE([Store-ID rewrite helper $helper ... found but cannot be built])