forked from FreeRADIUS/freeradius-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMake.inc.in
More file actions
226 lines (189 loc) · 5.78 KB
/
Make.inc.in
File metadata and controls
226 lines (189 loc) · 5.78 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
# -*- makefile -*-
# Make.inc.in
#
# Version: $Id$
#
# Location of files.
prefix = @prefix@
exec_prefix = @exec_prefix@
sysconfdir = @sysconfdir@
localstatedir = @localstatedir@
libdir = @libdir@
bindir = @bindir@
sbindir = @sbindir@
docdir = @docdir@
mandir = @mandir@
datadir = @datadir@
dictdir = @dictdir@
mibdir = @mibdir@
logdir = @logdir@
includedir = @includedir@
confdir = @confdir@
modconfdir = ${confdir}/mods-config
radacctdir = @radacctdir@
top_builddir = @abs_top_builddir@
top_build_prefix=@abs_top_builddir@/
top_srcdir = @abs_top_srcdir@
datarootdir = @datarootdir@
MAKE = @MAKE@
# Makeflags set within the makefile appear to be additive and override
# flags set on the command line and the environmental variables
MAKEFLAGS = @FR_MAKEFLAGS@
BUILD_SYSTEM = @BUILD_SYSTEM@
BUILD_CC = @BUILD_CC@
BUILD_RANLIB = @BUILD_RANLIB@
BUILD_EXE_EXT = @BUILD_EXE_EXT@
BUILD_LIB_EXT = @BUILD_LIB_EXT@
TARGET_SYSTEM = @TARGET_SYSTEM@
TARGET_CC = @TARGET_CC@
TARGET_RANLIB = @TARGET_RANLIB@
TARGET_EXE_EXT = @TARGET_EXE_EXT@
TARGET_LIB_EXT = @TARGET_LIB_EXT@
# Lazy alias seeing as it's used everywhere
L = .$(TARGET_LIB_EXT)
ifneq "${TARGET_EXE_EXT}" ""
E = .$(TARGET_EXE_EXT)
else
E =
endif
ifneq (,$(findstring wasm,${TARGET_SYSTEM}))
TARGET_IS_WASM = yes
endif
INCLUDE = -I. -Isrc \
-include src/freeradius-devel/autoconf.h \
-include src/freeradius-devel/build.h \
-include src/freeradius-devel/features.h \
-include src/freeradius-devel/radpaths.h
CFLAGS = $(INCLUDE) -fno-strict-aliasing @CFLAGS@
CPPFLAGS = @CPPFLAGS@
LIBPREFIX = @LIBPREFIX@
LIBTOOL = JLIBTOOL
ACLOCAL = @ACLOCAL@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
INSTALL = ${top_builddir}/install-sh -c
INSTALL_PROGRAM = ${INSTALL}
INSTALL_DATA = ${INSTALL} -m 644
INSTALL_SCRIPT = ${INSTALL_PROGRAM}
INSTALLSTRIP = @INSTALLSTRIP@
#
# For clang16+. Shut up a bunch of C++ complaints which are fine for C.b
#
# CFLAGS += -Wno-reserved-identifier -Wno-c2x-extensions -Wno-cast-function-type-strict -Wno-extra-semi-stmt -Wno-unsafe-buffer-usage
#
# Linker arguments for libraries searched for by the main
# configure script.
#
TALLOC_LIBS = @TALLOC_LIBS@
TALLOC_LDFLAGS = @TALLOC_LDFLAGS@
KQUEUE_LIBS = @KQUEUE_LIBS@
KQUEUE_LDFLAGS = @KQUEUE_LDFLAGS@
OPENSSL_LIBS = @OPENSSL_LIBS@
OPENSSL_LDFLAGS = @OPENSSL_LDFLAGS@
OPENSSL_CPPFLAGS = @OPENSSL_CPPFLAGS@
PCAP_LIBS = @PCAP_LIBS@
PCAP_LDFLAGS = @PCAP_LDFLAGS@
COLLECTDC_LIBS = @COLLECTDC_LIBS@
COLLECTDC_LDFLAGS = @COLLECTDC_LDFLAGS@
GPERFTOOLS_LIBS = @GPERFTOOLS_LIBS@
GPERFTOOLS_LDFLAGS = @GPERFTOOLS_LDFLAGS@
SYSTEMD_LIBS = @SYSTEMD_LIBS@
SYSTEMD_LDFLAGS = @SYSTEMD_LDFLAGS@
LCRYPT = @CRYPTLIB@
#
# OpenSSL libs (if used) must be linked everywhere in order for
# the server to work properly on on all platforms.
#
LIBS = $(OPENSSL_LIBS) $(TALLOC_LIBS) $(KQUEUE_LIBS) @LIBS@
LDFLAGS = $(OPENSSL_LDFLAGS) $(TALLOC_LDFLAGS) $(KQUEUE_LDFLAGS) @LDFLAGS@
LOGDIR = ${logdir}
CONFDIR = ${confdir}
RUNDIR = ${localstatedir}/run/radiusd
SBINDIR = ${sbindir}
RADIR = ${radacctdir}
bm_shared_libs = yes
bm_static_libs = yes
LIBREADLINE = @LIBREADLINE@
LIBREADLINE_PREFIX = @LIBREADLINE_PREFIX@
ifneq "$(LIBREADLINE_PREFIX)" ""
LIBREADLINE_CFLAGS = -I$(LIBREADLINE_PREFIX)/include
LIBREADLINE_LDFLAGS = -L$(LIBREADLINE_PREFIX)/lib
endif
#
# Version to use for packaging and other Make related things
#
RADIUSD_VERSION = @RADIUSD_VERSION@
RADIUSD_VERSION_MAJOR = @RADIUSD_VERSION_MAJOR@
RADIUSD_VERSION_MINOR = @RADIUSD_VERSION_MINOR@
RADIUSD_VERSION_INCRM = @RADIUSD_VERSION_INCRM@
RADIUSD_VERSION_COMMIT = @RADIUSD_VERSION_COMMIT@
RADIUSD_DOC_VERSION = @RADIUSD_DOC_VERSION@
#
# This allows dlopen to do runtime checks for version mismatches
# between what it was originally linked with, and the library it's
# actually loading.
#
MODULES = @MODULES@
#
# If the system has OpenSSL, use it's version of MD4/MD5/SHA1, instead of
# using ours.
#
# We don't use OpenSSL SHA1 by default because src/modules/rlm_eap/libeap/fips186prf.c
# needs access to the SHA internals.
#
ifneq ($(OPENSSL_LIBS),)
CFLAGS += -DWITH_OPENSSL_MD4 -DWITH_OPENSSL_MD5
CPPFLAGS := $(OPENSSL_CPPFLAGS) $(CPPFLAGS)
#
# Add optional dependency for libfreeradius-server if we're building with OpenSSL
#
LIBFREERADIUS_SERVER := libfreeradius-internal.a libfreeradius-tls.a
endif
LIBFREERADIUS_SERVER += libfreeradius-server.a libfreeradius-unlang.a
WITH_BACKTRACE = @WITH_BACKTRACE@
ifneq ($(WITH_OPENSSL_MD5),)
WITH_OPENSSL_DIGEST = 1
CFLAGS += -DWITH_OPENSSL_MD5
endif
ifneq ($(WITH_OPENSSL_SHA1),)
WITH_OPENSSL_DIGEST = 1
CFLAGS += -DWITH_OPENSSL_SHA1
endif
ifneq ($(WITH_OPENSSL_DIGEST),)
ifeq ($(OPENSSL_LIBS),)
$(error OPENSSL_LIBS must be define in order to use WITH_OPENSSL_*)
endif
endif
#
# Definitions for the generic logging framework
#
LOG_ID_LIB := 0
LOG_ID_SECTION := 0
CFLAGS += -DLOG_ID_LIB=$(LOG_ID_LIB) -DLOG_ID_SECTION=$(LOG_ID_SECTION)
# Path to clang, setting this enables the 'scan.*' build targets
# which perform static analysis on various server components.
ANALYZE.c := @clang_path@
#
# Have wrappers for the test tools, so that they run.
#
# We have a default maximum execution time of 300 seconds.
# When running under sanitizers, allow 600 seconds due to
# the additional overhead.
#
ifneq "$(findstring sanitize,$(CFLAGS))" ""
TEST_TIMEOUT := 600
else
TEST_TIMEOUT := 300
endif
TEST_BIN_DIR = ./$(BUILD_DIR)/bin/local
TEST_BIN = $(JLIBTOOL) $(if ${VERBOSE},--debug,--silent) --timeout=$(TEST_TIMEOUT) --mode=execute $(TEST_BIN_DIR)
TEST_BIN_NO_TIMEOUT = $(JLIBTOOL) $(if ${VERBOSE},--debug,--silent) --mode=execute $(TEST_BIN_DIR)
#
# For creating documentation via doc/all.mk
#
ASCIIDOCTOR := @ASCIIDOCTOR@
PANDOC := @PANDOC@
PANDOC_ENGINE := @PANDOC_ENGINE@
DOXYGEN := @DOXYGEN@
GRAPHVIZ_DOT := @GRAPHVIZ_DOT@
ANTORA := @ANTORA@