diff options
author | Stef Walter <stef@memberwebs.com> | 2004-08-12 00:50:29 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2004-08-12 00:50:29 +0000 |
commit | 86e45cfbd0655193e363be6daadbfd5434566a03 (patch) | |
tree | 5391fdcbfd6b3e360d425f0bd4b260d073901a21 /daemon/Makefile.am | |
parent | c44a74e52a8b227857f28289a91d126b7edc959c (diff) |
- Added postgresql database support
- Lots of changes to properly abstract bd handlers
- Handle multiple passwords and ha1s properly.
Diffstat (limited to 'daemon/Makefile.am')
-rw-r--r-- | daemon/Makefile.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/daemon/Makefile.am b/daemon/Makefile.am index 7eb7087..db83f8b 100644 --- a/daemon/Makefile.am +++ b/daemon/Makefile.am @@ -10,6 +10,8 @@ httpauthd_SOURCES = httpauthd.c httpauthd.h usuals.h bd.h bd.c misc.c basic.h ba LDAP_SOURCES = ldap.c +PGSQL_SOURCES = pgsql.c + NTLM_SOURCES = ntlm.c ntlmssp.h ntlmssp.c \ smblib/smblib.c smblib/smblib-util.c smblib/file.c smblib/smb-errors.c \ smblib/exper.c smblib/smblib-api.c smblib/smblib.h smblib/std-defines.h \ @@ -26,8 +28,12 @@ if WITH_NTLM httpauthd_SOURCES += $(NTLM_SOURCES) endif +if WITH_PGSQL +httpauthd_SOURCES += $(PGSQL_SOURCES) +endif + httpauthd_CFLAGS = -D_THREAD_SAFE -pthread -DLinux \ -I${top_srcdir}/common/ -I${top_srcdir} httpauthd_LDFLAGS = -pthread -EXTRA_DIST = $(LDAP_SOURCES) +EXTRA_DIST = $(LDAP_SOURCES) $(NTLM_SOURCES) $(PGSQL_SOURCES) |