From af4dd91223f8d555fa8a0136108000c9b5c88de9 Mon Sep 17 00:00:00 2001 From: Steve Date: Thu, 10 Feb 2005 18:35:02 +0000 Subject: Added Dummy handler --- daemon/Makefile.am | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) (limited to 'daemon/Makefile.am') diff --git a/daemon/Makefile.am b/daemon/Makefile.am index 3c22d10..0e871fa 100644 --- a/daemon/Makefile.am +++ b/daemon/Makefile.am @@ -1,31 +1,33 @@ sbin_PROGRAMS = httpauthd -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 \ - ../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/stringx.c ../common/stringx.h - LDAP_SOURCES = ldap.c PGSQL_SOURCES = pgsql.c MYSQL_SOURCES = mysql.c +EXTRA_SRC = + if WITH_LDAP -httpauthd_SOURCES += $(LDAP_SOURCES) +EXTRA_SRC += $(LDAP_SOURCES) endif if WITH_PGSQL -httpauthd_SOURCES += $(PGSQL_SOURCES) +EXTRA_SRC += $(PGSQL_SOURCES) endif if WITH_MYSQL -httpauthd_SOURCES += $(MYSQL_SOURCES) +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 \ + ../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/stringx.c ../common/stringx.h $(EXTRA_SRC) + httpauthd_CFLAGS = -D_THREAD_SAFE -pthread -DLinux \ -I${top_srcdir}/common/ -I${top_srcdir} httpauthd_LDFLAGS = -pthread -- cgit v1.2.3