forked from kamailio/kamailio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.radius
48 lines (37 loc) · 1.1 KB
/
Makefile.radius
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
46
47
48
# Kamailio build system
#
# Radiusclient library detection comes here
#
# (To be included from Makefiles of radius related modules)
#
# The purpose of this makefile is to perform RADIUS client library
# selection (radiusclient-ng or freeradius-client) and setup
# library and include paths in DEFS and LIBS variables.
#
# In addition RADIUSCLIENT_NG_4 will be defined when
# libradiusclient-ng version 4 is detected. That means the module
# should include radiusclient.h, otherwise radiusclient-ng.h
# should be included. Variable RADIUSCLIENT_LIB contains the
# name of the shared library.
#
#
# Radiusclient-ng is often installed from tarballs so we
# need to look int /usr/local/lib as well
#
INCLUDES+=-I$(LOCALBASE)/include
ifeq ($(FREERADIUS),1)
# - freeradius-client library
DEFS+= -DUSE_FREERADIUS
RADIUSCLIENT_LIB=freeradius-client
else
# - radiusclient-ng v5 or v4 library
ifneq ($(radiusclient_ng), 4)
# radiusclient-ng 5+
# DEFS+=-DRADIUSCLIENT_NG_5P
RADIUSCLIENT_LIB=radiusclient-ng
else
DEFS+=-DRADIUSCLIENT_NG_4
RADIUSCLIENT_LIB=radiusclient
endif
endif
LIBS=-L$(LOCALBASE)/lib -l$(RADIUSCLIENT_LIB)