Commit a641a46c authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Move the manager process sources into a subdirectory, away from

the gaze of prying VMODs.
parent 91734c47
...@@ -55,14 +55,14 @@ varnishd_SOURCES = \ ...@@ -55,14 +55,14 @@ varnishd_SOURCES = \
hash/hash_classic.c \ hash/hash_classic.c \
hash/hash_critbit.c \ hash/hash_critbit.c \
hash/hash_simple_list.c \ hash/hash_simple_list.c \
mgt_child.c \ mgt/mgt_child.c \
mgt_cli.c \ mgt/mgt_cli.c \
mgt_param.c \ mgt/mgt_param.c \
mgt_pool.c \ mgt/mgt_pool.c \
mgt_sandbox.c \ mgt/mgt_sandbox.c \
mgt_sandbox_solaris.c \ mgt/mgt_sandbox_solaris.c \
mgt_shmem.c \ mgt/mgt_shmem.c \
mgt_vcc.c \ mgt/mgt_vcc.c \
rfc2616.c \ rfc2616.c \
storage/stevedore.c \ storage/stevedore.c \
storage/stevedore_utils.c \ storage/stevedore_utils.c \
...@@ -86,8 +86,8 @@ noinst_HEADERS = \ ...@@ -86,8 +86,8 @@ noinst_HEADERS = \
default_vcl.h \ default_vcl.h \
hash/hash_slinger.h \ hash/hash_slinger.h \
heritage.h \ heritage.h \
mgt.h \ mgt/mgt.h \
mgt_cli.h \ mgt/mgt_cli.h \
storage/storage.h \ storage/storage.h \
storage/storage_persistent.h \ storage/storage_persistent.h \
vparam.h vparam.h
...@@ -128,7 +128,7 @@ default_vcl.h: default.vcl Makefile ...@@ -128,7 +128,7 @@ default_vcl.h: default.vcl Makefile
-e 's/^/ "/' $(srcdir)/default.vcl >> $@ -e 's/^/ "/' $(srcdir)/default.vcl >> $@
# Explicitly record dependency # Explicitly record dependency
mgt_vcc.c: default_vcl.h mgt/mgt_vcc.c: default_vcl.h
varnishd.1: $(top_srcdir)/doc/sphinx/reference/varnishd.rst varnishd.1: $(top_srcdir)/doc/sphinx/reference/varnishd.rst
if HAVE_RST2MAN if HAVE_RST2MAN
......
...@@ -18,6 +18,8 @@ flexelint \ ...@@ -18,6 +18,8 @@ flexelint \
*.c \ *.c \
storage/*.c \ storage/*.c \
waiter/*.c \ waiter/*.c \
hash/*.c \
mgt/*.c \
../../lib/libvarnish/*.c \ ../../lib/libvarnish/*.c \
../../lib/libvarnishcompat/execinfo.c \ ../../lib/libvarnishcompat/execinfo.c \
../../lib/libvcl/*.c \ ../../lib/libvcl/*.c \
......
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
#include <syslog.h> #include <syslog.h>
#include <unistd.h> #include <unistd.h>
#include "mgt.h" #include "mgt/mgt.h"
#include "heritage.h" #include "heritage.h"
#include "vapi/vsm_int.h" #include "vapi/vsm_int.h"
......
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
#include <syslog.h> #include <syslog.h>
#include <unistd.h> #include <unistd.h>
#include "mgt.h" #include "mgt/mgt.h"
#include "heritage.h" #include "heritage.h"
#include "vcli.h" #include "vcli.h"
......
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
#include <string.h> #include <string.h>
#include <unistd.h> #include <unistd.h>
#include "mgt.h" #include "mgt/mgt.h"
#include "waiter/cache_waiter.h" #include "waiter/cache_waiter.h"
#include "heritage.h" #include "heritage.h"
......
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
#include <string.h> #include <string.h>
#include <unistd.h> #include <unistd.h>
#include "mgt.h" #include "mgt/mgt.h"
#include "heritage.h" #include "heritage.h"
#include "vparam.h" #include "vparam.h"
......
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
#include <syslog.h> #include <syslog.h>
#include <unistd.h> #include <unistd.h>
#include "mgt.h" #include "mgt/mgt.h"
#include "heritage.h" #include "heritage.h"
......
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
#include <syslog.h> #include <syslog.h>
#include <unistd.h> #include <unistd.h>
#include "mgt.h" #include "mgt/mgt.h"
#include "heritage.h" #include "heritage.h"
......
...@@ -97,7 +97,7 @@ ...@@ -97,7 +97,7 @@
#include <string.h> #include <string.h>
#include <unistd.h> #include <unistd.h>
#include "mgt.h" #include "mgt/mgt.h"
#include "flopen.h" #include "flopen.h"
#include "heritage.h" #include "heritage.h"
......
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
#include <string.h> #include <string.h>
#include <unistd.h> #include <unistd.h>
#include "mgt.h" #include "mgt/mgt.h"
#include "libvcl.h" #include "libvcl.h"
#include "vcl.h" #include "vcl.h"
......
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
#include <string.h> #include <string.h>
#include <unistd.h> #include <unistd.h>
#include "mgt.h" #include "mgt/mgt.h"
#include "storage/storage.h" #include "storage/storage.h"
#include "vnum.h" #include "vnum.h"
......
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
#include <time.h> #include <time.h>
#include <unistd.h> #include <unistd.h>
#include "mgt.h" #include "mgt/mgt.h"
#include "hash/hash_slinger.h" #include "hash/hash_slinger.h"
#include "heritage.h" #include "heritage.h"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment