Last change
on this file since 88cde4e was
50bb490,
checked in by Dennis Kaarsemaker <dennis@…>, at 2016-03-25T18:07:53Z
|
ldap authentication backend
We only support the openldap scheme for now, with users that are
posixAccounts. Moreover, as the plugin cannot be configured directly,
you must configure libldap correctly in /etc/openldap/ldap.conf
|
-
Property mode set to
100644
|
File size:
891 bytes
|
Rev | Line | |
---|
[dcf0f3e] | 1 | -include ../Makefile.settings |
---|
[7fa5c19] | 2 | ifdef _SRCDIR_ |
---|
| 3 | _SRCDIR_ := $(_SRCDIR_)tests/ |
---|
[f60079b] | 4 | endif |
---|
[c2fa827] | 5 | |
---|
[6a6d7d8] | 6 | CFLAGS += $(shell pkg-config --cflags check) |
---|
| 7 | LFLAGS += $(shell pkg-config --libs check) |
---|
[c2fa827] | 8 | |
---|
[6a6d7d8] | 9 | all: check |
---|
[7bcdde3] | 10 | ./check $(CHECKFLAGS) |
---|
[c2fa827] | 11 | |
---|
[66b9e86e] | 12 | clean: |
---|
| 13 | rm -f check *.o |
---|
| 14 | |
---|
[dcf0f3e] | 15 | distclean: clean |
---|
| 16 | |
---|
[50bb490] | 17 | main_objs = bitlbee.o conf.o dcc.o help.o ipc.o irc.o irc_cap.o irc_channel.o irc_commands.o irc_im.o irc_send.o irc_user.o irc_util.o irc_commands.o log.o nick.o query.o root_commands.o set.o storage.o storage_xml.o auth.o auth_pam.o auth_ldap.o |
---|
[1fc2958] | 18 | |
---|
[3963fdd] | 19 | test_objs = check.o check_util.o check_nick.o check_md5.o check_arc.o check_irc.o check_help.o check_user.o check_set.o check_jabber_sasl.o check_jabber_util.o |
---|
[66b9e86e] | 20 | |
---|
[2c7df62] | 21 | check: $(test_objs) $(addprefix ../, $(main_objs)) ../protocols/protocols.o ../lib/lib.o |
---|
[c2fa827] | 22 | @echo '*' Linking $@ |
---|
| 23 | @$(CC) $(CFLAGS) -o $@ $^ $(LFLAGS) $(EFLAGS) |
---|
| 24 | |
---|
[7fa5c19] | 25 | %.o: $(_SRCDIR_)%.c |
---|
[c2fa827] | 26 | @echo '*' Compiling $< |
---|
| 27 | @$(CC) -c $(CFLAGS) $< -o $@ |
---|
Note: See
TracBrowser
for help on using the repository browser.