blob: e4eecdef19bc7f7c1f9890c3ea7c097ff327ee7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
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
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 \
smblib/smblib-priv.h smblib/smblib-common.h \
rfcnb/rfcnb-io.c rfcnb/rfcnb-util.c rfcnb/session.c rfcnb/byteorder.h \
rfcnb/rfcnb-common.h rfcnb/rfcnb-error.h rfcnb/rfcnb.h rfcnb/rfcnb-io.h \
rfcnb/rfcnb-priv.h rfcnb/rfcnb-util.h rfcnb/std-includes.h
if WITH_LDAP
httpauthd_SOURCES += $(LDAP_SOURCES)
endif
if WITH_NTLM
httpauthd_SOURCES += $(NTLM_SOURCES)
endif
if WITH_PGSQL
httpauthd_SOURCES += $(PGSQL_SOURCES)
endif
if WITH_MYSQL
httpauthd_SOURCES += $(MYSQL_SOURCES)
endif
httpauthd_CFLAGS = -D_THREAD_SAFE -pthread -DLinux \
-I${top_srcdir}/common/ -I${top_srcdir}
httpauthd_LDFLAGS = -pthread
EXTRA_DIST = $(LDAP_SOURCES) $(NTLM_SOURCES) $(PGSQL_SOURCES) $(MYSQL_SOURCES)
|