mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 08:51:50 -06:00
203754691c
This daemon listens for RADIUS packets on a well known UNIX domain socket. When a packet is received, it queries LDAP to see if the user is configured for RADIUS authentication. If so, then the packet is forwarded to the 3rd party RADIUS server. Otherwise, a bind is attempted against the LDAP server. https://fedorahosted.org/freeipa/ticket/3366 http://freeipa.org/page/V3/OTP
46 lines
724 B
Makefile
46 lines
724 B
Makefile
# This file will be processed with automake-1.7 to create Makefile.in
|
|
#
|
|
AUTOMAKE_OPTIONS = 1.7
|
|
|
|
NULL =
|
|
|
|
AM_CFLAGS = $(NULL)
|
|
if HAVE_GCC
|
|
AM_CFLAGS += -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith \
|
|
-Wcast-align -Werror-implicit-function-declaration \
|
|
$(NULL)
|
|
endif
|
|
export AM_CFLAGS
|
|
|
|
SUBDIRS = \
|
|
ipa-kdb \
|
|
ipa-slapi-plugins \
|
|
ipa-sam \
|
|
ipa-otpd \
|
|
$(NULL)
|
|
|
|
DISTCLEANFILES = \
|
|
$(NULL)
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
*~ \
|
|
intltool-*.in \
|
|
compile \
|
|
configure \
|
|
COPYING \
|
|
INSTALL \
|
|
install-sh \
|
|
missing \
|
|
mkinstalldirs \
|
|
config.guess \
|
|
ltmain.sh \
|
|
config.sub \
|
|
depcomp \
|
|
Makefile.in \
|
|
config.h.* \
|
|
aclocal.m4 \
|
|
version.m4 \
|
|
ipa-client.spec \
|
|
py-compile \
|
|
$(NULL)
|