diff options
author | Stef Walter <stef@memberwebs.com> | 2008-07-21 19:35:56 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2008-07-21 19:35:56 +0000 |
commit | 4c4bfb64b62ff5b7b7fa21ec0185db797f434386 (patch) | |
tree | 531eaed845b2997a3d71edaf2a522a00ea9307da /daemon/Makefile.am | |
parent | 56805d33c1ed477f6839074748bfa373db01c431 (diff) |
- Rework event handling system so we don't use a full thread per
connection, but instead only use threads for active requests.
Diffstat (limited to 'daemon/Makefile.am')
-rw-r--r-- | daemon/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/daemon/Makefile.am b/daemon/Makefile.am index 2e7be2f..b4b9f0c 100644 --- a/daemon/Makefile.am +++ b/daemon/Makefile.am @@ -28,10 +28,11 @@ EXTRA_SRC += $(MYSQL_SOURCES) endif httpauthd_SOURCES = httpauthd.c httpauthd.h usuals.h bd.h bd.c misc.c basic.h basic.c \ - digest.h digest.c defaults.h simple.c dummy.c \ + digest.h digest.c defaults.h simple.c dummy.c request.c \ ../common/compat.h ../common/compat.c ../common/buffer.h ../common/buffer.c \ ../common/hash.h ../common/hash.c ../common/md5.h ../common/md5.c \ ../common/sha1.h ../common/sha1.c ../common/sock-any.c ../common/sock-any.h \ + ../common/tpool.c ../common/tpool.h ../common/server-mainloop.c ../common/server-mainloop.h \ ../common/stringx.c ../common/stringx.h $(EXTRA_SRC) httpauthd_CFLAGS = -D_THREAD_SAFE -pthread -DLinux \ |