-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfigure.ac
528 lines (487 loc) · 11.5 KB
/
configure.ac
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
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
# configure.in - Top-level configure.in for Sympa
# RCS Identication ; $Revision: 8595 $ ; $Date: 2013-02-05 15:57:24 +0100 (mar 05 fév 2013) $
#
# Sympa - SYsteme de Multi-Postage Automatique
# Copyright (c) 1997, 1998, 1999, 2000, 2001 Comite Reseau des Universites
# Copyright (c) 1997,1998, 1999 Institut Pasteur & Christophe Wolfhugel
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
AC_PREREQ(2.60)
AC_INIT(sympa, 6.1.17, [email protected])
AM_INIT_AUTOMAKE([foreign -Wall -Werror])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AM_PO_SUBDIRS
AC_PREFIX_DEFAULT(/home/sympa)
## first initialises parameters to the standard Sympa filesystem organization
# $prefix variable initialisation seems to be tricky
if test "$prefix" = "NONE"; then
prefix=$ac_default_prefix
fi
## allow user to select FHS-compliant installation
AC_ARG_ENABLE(
fhs,
AS_HELP_STRING(
[--enable-fhs],
[use standard FHS files and directories locations and naming (default is no)]
),
[fhs=$enableval]
)
if test "$fhs" = "yes"; then
# only define custom variables
initdir=$sysconfdir/rc.d/init.d
piddir=$localstatedir/run/sympa
lockdir=$localstatedir/lock/subsys
modulesdir=$datadir/sympa/lib
scriptdir=$datadir/sympa/bin
defaultdir=$datadir/sympa/default
mailtemplatedir=$defaultdir/mail_tt2
webtemplatedir=$defaultdir/web_tt2
execcgidir=$libdir/sympa/cgi
expldir=$localstatedir/lib/sympa/list_data
staticdir=$localstatedir/lib/sympa/static_content
spooldir=$localstatedir/spool/sympa
arcdir=$localstatedir/lib/sympa/arc
bouncedir=$localstatedir/lib/sympa/bounce
confdir=$sysconfdir
else
# redefine default values for some standard variables,
# but only if no value was given
if test "$sbindir" = '${exec_prefix}/sbin'; then
sbindir=$prefix/bin
fi
if test "$libexecdir" = '${exec_prefix}/libexec'; then
libexecdir=$prefix/bin
fi
if test "$localstatedir" = '${prefix}/var'; then
localstatedir=/var
fi
if test "$localedir" = '${datarootdir}/locale'; then
localedir=$prefix/locale
fi
# define custom variables
initdir=/etc/rc.d/init.d
piddir=$prefix
lockdir=$localstatedir/lock/subsys
modulesdir=$prefix/bin
scriptdir=$prefix/bin
defaultdir=$prefix/default
mailtemplatedir=$defaultdir/mail_tt2
webtemplatedir=$defaultdir/web_tt2
execcgidir=$prefix/bin
expldir=$prefix/list_data
spooldir=$prefix/spool
staticdir=$prefix/static_content
arcdir=$prefix/arc
bouncedir=$prefix/bounce
confdir=/etc
fi
# substitute custom variables
AC_SUBST(initdir)
AC_SUBST(piddir)
AC_SUBST(lockdir)
AC_SUBST(modulesdir)
AC_SUBST(scriptdir)
AC_SUBST(defaultdir)
AC_SUBST(mailtemplatedir)
AC_SUBST(webtemplatedir)
AC_SUBST(execcgidir)
AC_SUBST(expldir)
AC_SUBST(spooldir)
AC_SUBST(staticdir)
AC_SUBST(arcdir)
AC_SUBST(bouncedir)
AC_SUBST(localedir)
AC_SUBST(confdir)
AC_SUBST(docdir)
# allow user to redefine some of them
AC_ARG_WITH(
confdir,
AS_HELP_STRING(
[--with-confdir=DIR],
[sympa main configuration files (sympa.conf and wwsympa.conf) @<:@SYSCONFDIR@:>@]
),
[
confdir="$withval"
]
)
AC_ARG_WITH(
etcdir,
AS_HELP_STRING(
[--with-etcdir=DIR],
[obsolete option, use --sysconfdir instead]
),
[
AC_MSG_WARN([obsolete --with-etcdir option used])
sysconfdir="$withval"
]
)
AC_ARG_WITH(
bindir,
AS_HELP_STRING(
[--with-bindir=DIR],
[obsolete option, those binaries are now installed in libexecdir]
),
[AC_MSG_WARN([obsolete --with-bindir option used])]
)
AC_ARG_WITH(
sbindir,
AS_HELP_STRING(
[--with-sbindir=DIR],
[obsolete option, use --sbindir instead]
),
[
AC_MSG_WARN([obsolete --with-sbindir option used])
sbindir="$withval"
]
)
AC_ARG_WITH(
libexecdir,
AS_HELP_STRING(
[--with-libexecdir=DIR],
[obsolete option, use --libexecdir instead]
),
[
AC_MSG_WARN([obsolete --with-libexecdir option used])
libexecdir="$withval"
]
)
AC_ARG_WITH(
cgidir,
AS_HELP_STRING(
[--with-cgidir=DIR],
[CGI scripts @<:@LIBDIR/sympa/cgi@:>@]
),
[execcgidir="$withval"]
)
AC_ARG_WITH(
datadir,
AS_HELP_STRING(
[--with-datadir=DIR]
[obsolete option, use --datadir instead]
),
[
AC_MSG_WARN([obsolete --with-datadir option used])
datadir="$withval"
]
)
AC_ARG_WITH(
libdir,
AS_HELP_STRING(
[--with-libdir=DIR]
[obsolete option, perl modules are now installed with data]
),
[
AC_MSG_WARN([obsolete --with-libdir option used])
]
)
AC_ARG_WITH(
localedir,
AS_HELP_STRING(
[--with-localedir=DIR],
[Internationalization catalogues directory @<:@LOCALSTATEDIR/locale@:>@]
),
[
localedir="$withval"
]
)
AC_ARG_WITH(
mandir,
AS_HELP_STRING(
[--with-mandir=DIR],
[obsolete option, use --mandir instead]
),
[
AC_MSG_WARN([obsolete --with-mandir option used])
mandir="$withval"
]
)
AC_ARG_WITH(
docdir,
AS_HELP_STRING(
[--with-docdir=DIR],
[documentations]
),
[
docdir="$withval"
]
)
AC_ARG_WITH(
sampledir,
AS_HELP_STRING(
[--with-sampledir=DIR],
[obsolete option, samples are now installed with documentation]
),
[
AC_MSG_WARN([obsolete --with-sampledir option used])
]
)
AC_ARG_WITH(
expldir,
AS_HELP_STRING(
[--with-expldir=DIR],
[list data directory @<:@PREFIX/list_data@:>@]
),
[expldir="$withval"]
)
AC_ARG_WITH(
spooldir,
AS_HELP_STRING(
[--with-spooldir=DIR],
[application spool directory @<:@PREFIX/spool@:>@]
),
[spooldir="$withval"]
)
AC_ARG_WITH(
initdir,
AS_HELP_STRING(
[--with-initdir=DIR],
[install System V init script @<:@SYSCONFDIR/rc.d/init.d@:>@]
),
[initdir="$withval"]
)
AC_ARG_WITH(
lockdir,
AS_HELP_STRING(
[--with-lockdir=DIR],
[lock files @<:@LOCALSTATEDIR/lock/subsys@:>@]
),
[lockdir="$withval"]
)
AC_ARG_WITH(
piddir,
AS_HELP_STRING(
[--with-piddir=DIR],
[.pid files @<:@LOCALSTATEDIR/run@:>@]
),
[piddir="$withval"]
)
AC_ARG_WITH(
modulesdir,
AS_HELP_STRING(
[--with-modulesdir=DIR],
[Perl modules file installed with Sympa @<:@PREFIX/bin@:>@]
),
[modulesdir="$withval"]
)
AC_ARG_WITH(
defaultdir,
AS_HELP_STRING(
[--with-defaultdir=DIR],
[default configuration files (scenarios and templates also) @<:@PREFIX/default@:>@]
),
[defaultdir="$withval"]
)
AC_ARG_WITH(
scriptdir,
AS_HELP_STRING(
[--with-scriptdir=DIR],
[application scripts @<:@PREFIX/bin@:>@]
),
[scriptdir="$withval"]
)
AC_ARG_WITH(
staticdir,
AS_HELP_STRING(
[--with-staticdir=DIR],
[static data @<:@PREFIX/static_content@:>@]
),
[staticdir="$withval"]
)
CONFIG=$confdir/sympa.conf
AC_SUBST(CONFIG)
WWSCONFIG=$confdir/wwsympa.conf
AC_SUBST(WWSCONFIG)
AC_PROG_CC
# needed for using per-target flags
AM_PROG_CC_C_O
AC_PATH_PROGS([SED], [sed gsed])
#AC_PROG_SED
AC_PROG_LN_S
AC_ARG_WITH(
[perl],
AS_HELP_STRING(
[--with-perl=FULLPATH],
[set full path to Perl interpreter]
),
[PERL="$withval"]
)
if test -n "$PERL"; then
# user-supplied value
AC_MSG_CHECKING([user-supplied perl interpreter])
if test -f "$PERL"; then
:
else
AC_MSG_RESULT([non-existing])
AC_MSG_ERROR([invalid value $PERL for perl interpreter])
fi
if test -x "$PERL"; then
:
else
AC_MSG_RESULT([non-executable])
AC_MSG_ERROR([invalid value $PERL for perl interpreter])
fi
AC_MSG_RESULT([$PERL])
else
# check in PATH
AC_PATH_PROG(PERL, perl)
if test -z "$PERL"; then
AC_MSG_ERROR([perl required])
fi
fi
AC_PATH_PROG(POD2MAN, pod2man)
if test -z "$POD2MAN"; then
AC_MSG_ERROR([pod2man required])
fi
USER=sympa
AC_ARG_WITH(
[user],
AS_HELP_STRING(
[--with-user=LOGIN],
[set sympa user name @<:@sympa@:>@]
),
[USER="$withval"]
)
AC_SUBST(USER)
GROUP=sympa
AC_ARG_WITH(
[group],
AS_HELP_STRING(
[--with-group=LOGIN],
[set sympa group name @<:@sympa@:>@]
),
[GROUP="$withval"]
)
AC_SUBST(GROUP)
SENDMAIL_ALIASES=/etc/mail/sympa_aliases
AC_ARG_WITH(
[sendmail_aliases],
AS_HELP_STRING(
[--with-sendmail_aliases=ALIASFILE],
[aliases file to store Sympa mail aliases @<:@/etc/mail/sympa_aliases@:>@]
),
[SENDMAIL_ALIASES="$withval"]
)
AC_SUBST(SENDMAIL_ALIASES)
## The postfix virtual file we use. Better use a seperate one for sympa.
## Of course an extra alias file must be generated with proper permissions
## (owner sympa, write access for sympa, no write access for anyone else)
## and declared in main.cf!
VIRTUAL_ALIASES=/etc/mail/sympa_virtual
AC_ARG_WITH(
[virtual_aliases],
AS_HELP_STRING(
[--with-virtual_aliases=ALIASFILE],
[postfix virtual file to be used by Sympa @<:@/etc/mail/sympa_virtual@:>@]
),
[VIRTUAL_ALIASES="$withval"]
)
AC_SUBST(VIRTUAL_ALIASES)
AC_ARG_WITH(
[newaliases],
AS_HELP_STRING(
[--with-newaliases=FULLPATH],
[path to newaliases command @<:@/usr/bin/newaliases@:>@]
),
[NEWALIASES="$withval"]
)
if test -n "$NEWALIASES"; then
# user-supplied value
AC_MSG_CHECKING([user-supplied newaliases command])
if test -f "$NEWALIASES"; then
:
else
AC_MSG_RESULT([non-existing])
AC_MSG_ERROR([invalid value $NEWALIASES for newaliases command])
fi
if test -x "$NEWALIASES"; then
:
else
AC_MSG_RESULT([non-executable])
AC_MSG_ERROR([invalid value $NEWALIASES for newaliases command])
fi
AC_MSG_RESULT([$NEWALIASES])
else
# default value
NEWALIASES=/usr/bin/newaliases
fi
AC_SUBST(NEWALIASES)
NEWALIASES_ARG=
AC_ARG_WITH(
[newaliases_arg],
AS_HELP_STRING(
[--with-newaliases_arg=ARGS],
[arguments to newaliases command @<:@NONE@:>@]
),
[NEWALIASES_ARG="$withval"]
)
AC_SUBST(NEWALIASES_ARG)
AC_ARG_WITH(
[postmap],
AS_HELP_STRING(
[--with-postmap=FULLPATH],
[path to postfix postmap command @<:@/usr/sbin/postmap@:>@]
),
[POSTMAP="$withval"]
)
if test -n "$POSTMAP"; then
# user-supplied value
AC_MSG_CHECKING([user-supplied postmap command])
if test -f "$POSTMAP"; then
:
else
AC_MSG_RESULT([non-existing])
AC_MSG_ERROR([invalid value $POSTMAP for postmap command])
fi
if test -x "$POSTMAP"; then
:
else
AC_MSG_RESULT([non-executable])
AC_MSG_ERROR([invalid value $POSTMAP for postmap command])
fi
AC_MSG_RESULT([$POSTMAP])
else
# default value
POSTMAP=/usr/sbin/postmap
fi
AC_SUBST(POSTMAP)
POSTMAP_ARG=${VIRTUAL_ALIASES}
AC_ARG_WITH(
[postmap_arg],
AS_HELP_STRING(
[--with-postmap_arg=ARGS],
[set arguments to postfix postmap command @<:@VIRTUAL_ALIASES@:>@]
),
[POSTMAP_ARG="$withval"]
)
AC_SUBST(POSTMAP_ARG)
AC_CONFIG_FILES([
Makefile
src/Makefile
src/etc/Makefile
src/etc/script/Makefile
src/lib/Makefile
soap/Makefile
doc/Makefile
doc/man8/Makefile
doc/sample/Makefile
web_tt2/Makefile
wwsympa/Makefile
wwsympa/icons/Makefile
mail_tt2/Makefile
po/Makefile.in
po-wwsympa/Makefile.in
sympa.spec
])
AC_OUTPUT