diff options
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) |