-
Notifications
You must be signed in to change notification settings - Fork 28
/
conf_macros.m4
329 lines (308 loc) · 11.7 KB
/
conf_macros.m4
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
AC_DEFUN([WITH_DISTRO_VERSION],
[ AC_ARG_WITH([distro-version],
[AC_HELP_STRING([--with-distro-version=VERSION],
[Distro version number []]
)
]
)
AC_DEFINE_UNQUOTED(DISTRO_VERSION, "$with_distro_version",
[Distro version number])
])
AC_DEFUN([WITH_LOG_PATH],
[ AC_ARG_WITH([log-path],
[AC_HELP_STRING([--with-log-path=PATH],
[Where to store log files for gssproxy [/var/log/gssproxy]]
)
]
)
config_logpath="\"VARDIR\"/log/gssproxy"
logpath="${localstatedir}/log/gssproxy"
if test x"$with_log_path" != x; then
config_logpath=$with_log_path
logpath=$with_log_path
fi
AC_SUBST(logpath)
AC_DEFINE_UNQUOTED(LOG_PATH, "$config_logpath", [Where to store log files for gssproxy])
])
AC_DEFUN([WITH_PUBCONF_PATH],
[ AC_ARG_WITH([pubconf-path],
[AC_HELP_STRING([--with-pubconf-path=PATH],
[Where to store pubconf files for gssproxy [/etc/gssproxy]]
)
]
)
config_pubconfpath="\"SYSCONFDIR\"/gssproxy"
pubconfpath="${sysconfdir}/gssproxy"
if test x"$with_pubconf_path" != x; then
config_pubconfpath=$with_pubconf_path
pubconfpath=$with_pubconf_path
fi
AC_SUBST(pubconfpath)
AC_DEFINE_UNQUOTED(PUBCONF_PATH, "$config_pubconfpath", [Where to store pubconf files for gssproxy])
])
AC_DEFUN([WITH_GSSCONF_PATH],
[ AC_ARG_WITH([gssconf-path],
[AC_HELP_STRING([--with-gssconf-path=PATH],
[Where to store gss mech config [/etc/gss/mech.d]]
)
]
)
config_gssconfpath="\"SYSCONFDIR\"/gss/mech.d"
gssconfpath="${sysconfdir}/gss/mech.d"
if test x"$with_gssconf_path" != x; then
config_gssconfpath=$with_gssconf_path
gssconfpath=$with_gssconf_path
fi
AC_SUBST(gssconfpath)
AC_DEFINE_UNQUOTED(GSSCONF_PATH, "$config_gssconfpath", [Where to store gss mech config])
])
AC_DEFUN([WITH_SOCKET_NAME],
[ AC_ARG_WITH([socket-name],
[AC_HELP_STRING([--with-socket-name=PATH],
[Name of the GSS Proxy socket file [/var/lib/gssproxy/default.sock]]
)
]
)
gp_socket_name="\"VARDIR\"/lib/gssproxy/default.sock"
socketname="${localstatedir}/lib/gssproxy/default.sock"
if test x"$with_socket_name" != x; then
gp_socket_name=$with_socket_name
socketname=$with_socket_name
fi
AC_SUBST(socketname)
AC_DEFINE_UNQUOTED(GP_SOCKET_NAME, "$gp_socket_name", [The name of the GSS Proxy socket file])
])
AC_DEFUN([WITH_PID_FILE],
[ AC_ARG_WITH([pid-file],
[AC_HELP_STRING([--with-pid-file=PATH],
[Name of the GSS Proxy pid file [/var/run/gssproxy.pid]]
)
]
)
gp_pid_file="\"VARDIR\"/run/gssproxy.pid"
pidfile="${localstatedir}/run/gssproxy.pid"
if test x"$with_pid_file" != x; then
gp_pid_file=$with_pid_file
pidfile=$with_pid_file
fi
AC_SUBST(pidfile)
AC_DEFINE_UNQUOTED(GP_PID_FILE, "$gp_pid_file", [The name of the GSS Proxy pid file])
])
AC_DEFUN([WITH_INITSCRIPT],
[ AC_ARG_WITH([initscript],
[AC_HELP_STRING([--with-initscript=INITSCRIPT_TYPE],
[Type of your init script (systemd|none). [systemd]]
)
]
)
default_initscript=systemd
if test x"$with_initscript" = x; then
with_initscript=$default_initscript
fi
if test x"$with_initscript" = xsystemd || \
test x"$with_initscript" = xnone; then
initscript=$with_initscript
else
AC_MSG_ERROR([Illegal value -$with_initscript- for option --with-initscript])
fi
AM_CONDITIONAL([HAVE_SYSTEMD_UNIT], [test x"$initscript" = xsystemd])
AC_MSG_NOTICE([Will use init script type: $initscript])
])
dnl A macro to configure the directory to install the systemd unit files to
AC_DEFUN([WITH_SYSTEMD_UNIT_DIR],
[ AC_ARG_WITH([systemdunitdir],
[ AC_HELP_STRING([--with-systemdunitdir=DIR],
[Directory for systemd service files [Auto]]
),
],
)
if test x"$with_systemdunitdir" != x; then
systemdunitdir=$with_systemdunitdir
else
systemdunitdir=$($PKG_CONFIG --variable=systemdsystemunitdir systemd)
if test x"$systemdunitdir" = x; then
AC_MSG_ERROR([Could not detect systemd unit directory])
fi
fi
AC_SUBST(systemdunitdir)
])
dnl A macro to configure the directory to install the systemd user unit files to
AC_DEFUN([WITH_SYSTEMD_USER_UNIT_DIR],
[ AC_ARG_WITH([systemduserunitdir],
[ AC_HELP_STRING([--with-systemduserunitdir=DIR],
[Directory for systemd user service files [Auto]]
),
],
)
if test x"$with_systemduserunitdir" != x; then
systemduserunitdir=$with_systemduserunitdir
else
systemduserunitdir=$($PKG_CONFIG --variable=systemduserunitdir systemd)
if test x"$systemduserunitdir" = x; then
AC_MSG_ERROR([Could not detect systemd user unit directory])
fi
fi
AC_SUBST(systemduserunitdir)
])
AC_DEFUN([WITH_MANPAGES],
[ AC_ARG_WITH([manpages],
[AC_HELP_STRING([--with-manpages],
[Whether to regenerate man pages from DocBook sources [yes]]
)
],
[],
with_manpages=yes
)
if test x"$with_manpages" = xyes; then
HAVE_MANPAGES=1
AC_SUBST(HAVE_MANPAGES)
fi
])
AM_CONDITIONAL([BUILD_MANPAGES], [test x$with_manpages = xyes])
AC_DEFUN([WITH_XML_CATALOG],
[ AC_ARG_WITH([xml-catalog-path],
[AC_HELP_STRING([--with-xml-catalog-path=PATH],
[Where to look for XML catalog [/etc/xml/catalog]]
)
]
)
SGML_CATALOG_FILES="/etc/xml/catalog"
if test x"$with_xml_catalog_path" != x; then
SGML_CATALOG_FILES="$with_xml_catalog_path"
fi
AC_SUBST([SGML_CATALOG_FILES])
])
AC_DEFUN([WITH_SELINUX],
[ AC_ARG_WITH([selinux],
[AC_HELP_STRING([--with-selinux],
[Whether to build with SELinux support [yes]]
)
],
[],
with_selinux=yes
)
if test x"$with_selinux" = xyes; then
HAVE_SELINUX=1
AC_SUBST(HAVE_SELINUX)
AC_DEFINE_UNQUOTED(HAVE_SELINUX, 1, [Build with SELinux support])
fi
AM_CONDITIONAL([BUILD_SELINUX], [test x"$with_selinux" = xyes])
])
AC_DEFUN([WITH_TEST_DIR],
[ AC_ARG_WITH([test-dir],
[AC_HELP_STRING([--with-test-dir=PATH],
[Directory used for make check temporary files [$builddir]]
)
]
)
TEST_DIR=$with_test_dir
AC_SUBST(TEST_DIR)
AC_DEFINE_UNQUOTED(TEST_DIR, "$with_test_dir", [Directory used for 'make check' temporary files])
])
AC_ARG_ENABLE([all-experimental-features],
[AS_HELP_STRING([--enable-all-experimental-features],
[build all experimental features])],
[build_all_experimental_features=$enableval],
[build_all_experimental_features=no])
AC_DEFUN([WITH_CC_PATH],
[ AC_ARG_WITH([cc-path],
[AC_HELP_STRING([--with-cc-path=PATH],
[Where to store ccache files for gssproxy [/var/run/user/gssproxy]]
)
]
)
config_ccpath="\"VARDIR\"/run/user/gssproxy"
ccpath="${localstatedir}/run/user/gssproxy"
if test x"$with_cc_path" != x; then
config_ccpath=$with_cc_path
ccpath=$with_cc_path
fi
AC_SUBST(ccpath)
AC_DEFINE_UNQUOTED(CCACHE_PATH, "$config_ccpath", [Where to store ccache files for gssproxy])
])
AC_DEFUN([WITH_GPSTATE_PATH],
[ AC_ARG_WITH([gpstate-path],
[AC_HELP_STRING([--with-gpstate-path=PATH],
[Where to create default socket for gssproxy [/var/lib/gssproxy]]
)
]
)
config_gpstatepath="\"VARDIR\"/lib/gssproxy"
gpstatedir="${localstatedir}/lib/gssproxy"
if test x"$with_gpstate_path" != x; then
config_gpstatepath=$with_gpstate_path
gpstatepath=$with_gpstate_path
fi
AC_SUBST(gpstatedir)
AC_DEFINE_UNQUOTED(GPSTATE_PATH, "$config_gpstatepath", [Where to store ccache files for gssproxy])
])
AC_DEFUN([WITH_GSSIDEBUG],
[ AC_ARG_WITH([gssidebug],
[AC_HELP_STRING([--with-gssidebug],
[Whether to build with interposer debugging support [no]]
)
],
[],
with_gssidebug=no
)
if test x"$with_gssidebug" = xyes; then
AC_DEFINE_UNQUOTED(GSSI_DEBUGGING, 1, [Build with interposer debugging support])
fi
])
AC_DEFUN([WITH_GPP_DEFAULT_BEHAVIOR],
[ AC_ARG_WITH([gpp_default_behavior],
[AC_HELP_STRING([--with-gpp-default-behavior=LOCAL_FIRST|LOCAL_ONLY|REMOTE_FIRST|REMOTE_ONLY],
[Which default behavior the gssproxy interposer plugin should use [LOCAL_FIRST]]
)
],
[],
)
default_behavior=GPP_LOCAL_FIRST
default_behavior_env=LOCAL_FIRST
if test x"$with_gpp_default_behavior" = x"LOCAL_FIRST"; then
AC_MSG_RESULT([Using gssproxy interposer behavior LOCAL_FIRST])
default_behavior=GPP_LOCAL_FIRST
default_behavior_env=LOCAL_FIRST
elif test x"$with_gpp_default_behavior" = x"LOCAL_ONLY"; then
AC_MSG_RESULT([Using gssproxy interposer behavior LOCAL_ONLY])
default_behavior=GPP_LOCAL_ONLY
default_behavior_env=LOCAL_ONLY
elif test x"$with_gpp_default_behavior" = x"REMOTE_FIRST"; then
AC_MSG_RESULT([Using gssproxy interposer behavior REMOTE_FIRST])
default_behavior=GPP_REMOTE_FIRST
default_behavior_env=REMOTE_FIRST
elif test x"$with_gpp_default_behavior" = x"REMOTE_ONLY"; then
AC_MSG_ERROR([REMOTE_ONLY currently not supported])
elif test x"$with_gpp_default_behavior" != x; then
AC_MSG_ERROR([unknown gpp default behavior])
fi
AC_SUBST(GPP_DEFAULT_BEHAVIOR, $default_behavior_env)
AC_DEFINE_UNQUOTED(GPP_DEFAULT_BEHAVIOR, $default_behavior, [Default gssproxy interposer plugin behavior])
])
AC_DEFUN([WITH_HARDENING],
[ AC_ARG_WITH([hardening],
[AC_HELP_STRING([--with-hardening],
[Whether to add extra hardening flags [no]]
)
],
[],
with_hardening=no
)
AM_CONDITIONAL([BUILD_HARDENING], [test x"$with_hardening" = xyes])
])
AC_DEFUN([WITH_CAP],
[ AC_ARG_WITH([cap],
[AC_HELP_STRING([--with-cap],
[Whether to build with libcap [no]]
)
],
[],
with_cap=no
)
if test x"$with_cap" = xyes; then
HAVE_CAP=1
AC_SUBST(HAVE_CAP)
AC_DEFINE_UNQUOTED([HAVE_CAP], [1], [Build with capabilities support])
fi
])
AM_CONDITIONAL([HAVE_CAP], [test x$with_cap = xyes])