-
Notifications
You must be signed in to change notification settings - Fork 97
/
configure.ac
674 lines (620 loc) · 15.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
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
# configure.ac - Top-level configure.in for Sympa
#
# Sympa - SYsteme de Multi-Postage Automatique
#
# Copyright (c) 1997, 1998, 1999 Institut Pasteur & Christophe Wolfhugel
# Copyright (c) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
# 2006, 2007, 2008, 2009, 2010, 2011 Comite Reseau des Universites
# Copyright (c) 2011, 2012, 2013, 2014, 2015, 2016, 2017 GIP RENATER
# Copyright 2017, 2018, 2019, 2020, 2021, 2022 The Sympa Community. See the
# AUTHORS.md file at the top-level directory of this distribution and at
# <https://github.com/sympa-community/sympa.git>.
#
# 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, see <http://www.gnu.org/licenses/>.
AC_PREREQ(2.60)
AC_INIT(sympa, 6.2.72, [email protected])
AM_INIT_AUTOMAKE([foreign -Wall -Werror 1.9 tar-pax])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AM_PO_SUBDIRS
GETTEXT_MACRO_VERSION=0.19
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
unitsdir=
smrshdir=$sysconfdir/smrsh
piddir=$localstatedir/run/sympa
lockdir=/var/lock/subsys
modulesdir=$datadir/sympa/lib
scriptdir=$datadir/sympa/bin
defaultdir=$datadir/sympa/default
execcgidir=$libdir/sympa/cgi
expldir=$localstatedir/lib/sympa/list_data
staticdir=$localstatedir/lib/sympa/static_content
cssdir=$localstatedir/lib/sympa/static_content/css
picturesdir=$localstatedir/lib/sympa/static_content/pictures
spooldir=$localstatedir/spool/sympa
arcdir=$localstatedir/lib/sympa/arc
bouncedir=$localstatedir/lib/sympa/bounce
confdir=$sysconfdir/sympa
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
unitsdir=
smrshdir=/etc/smrsh
piddir=$prefix
lockdir=/var/lock/subsys
modulesdir=$prefix/bin
scriptdir=$prefix/bin
defaultdir=$prefix/default
execcgidir=$prefix/bin
expldir=$prefix/list_data
spooldir=$prefix/spool
staticdir=$prefix/static_content
cssdir=$prefix/static_content/css
picturesdir=$prefix/static_content/pictures
arcdir=$prefix/arc
bouncedir=$prefix/bounce
confdir=/etc/sympa
fi
# substitute custom variables
AC_SUBST(initdir)
AC_SUBST(unitsdir)
AC_SUBST(smrshdir)
AC_SUBST(piddir)
AC_SUBST(lockdir)
AC_SUBST(modulesdir)
AC_SUBST(scriptdir)
AC_SUBST(defaultdir)
AC_SUBST(execcgidir)
AC_SUBST(expldir)
AC_SUBST(spooldir)
AC_SUBST(staticdir)
AC_SUBST(cssdir)
AC_SUBST(picturesdir)
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],
[Directory of Sympa main configuration file (sympa.conf) @<:@SYSCONFDIR/sympa@:>@]
),
[
confdir="$withval"
]
)
AC_ARG_WITH(
etcdir,
[],
[AC_MSG_ERROR([obsolete --with-etcdir option used. use --sysconfdir instead.])]
)
AC_ARG_WITH(
bindir,
[],
[AC_MSG_ERROR([obsolete --with-bindir option used. those binaries are now installed in LIBEXECDIR.])]
)
AC_ARG_WITH(
sbindir,
[],
[AC_MSG_ERROR([obsolete --with-sbindir option used. use --sbindir instead.])]
)
AC_ARG_WITH(
libexecdir,
[],
[AC_MSG_ERROR([obsolete --with-libexecdir option used. use --libexecdir instead.])]
)
AC_ARG_WITH(
cgidir,
AS_HELP_STRING(
[--with-cgidir=DIR],
[CGI scripts @<:@PREFIX/bin@:>@]
),
[execcgidir="$withval"]
)
AC_ARG_WITH(
datadir,
[],
[AC_MSG_ERROR([obsolete --with-datadir option used. use --datadir instead.])]
)
AC_ARG_WITH(
libdir,
[],
[AC_MSG_ERROR([obsolete --with-libdir option used. use --with-modulesdir instead.])]
)
AC_ARG_WITH(
localedir,
AS_HELP_STRING(
[--with-localedir=DIR],
[Internationalization catalogues directory @<:@PREFIX/locale@:>@]
),
[
localedir="$withval"
]
)
AC_ARG_WITH(
mandir,
[],
[AC_MSG_ERROR([obsolete --with-mandir option used. use --mandir instead.])]
)
AC_ARG_WITH(
docdir,
AS_HELP_STRING(
[--with-docdir=DIR],
[Documentations]
),
[
docdir="$withval"
]
)
AC_ARG_WITH(
sampledir,
[],
[AC_MSG_ERROR([obsolete --with-sampledir option used. samples are now installed with documentation.])]
)
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@:>@]
)
AS_HELP_STRING(
[--without-initdir],
[do not install System V init script]
),
[test "x$withval" = "xyes" || initdir="$withval"; test "x$withval" = "xno" && initdir=""]
)
AM_CONDITIONAL([SYSV_INIT], [test "x$initdir" != "x"])
AC_ARG_WITH(
unitsdir,
AS_HELP_STRING(
[--with-unitsdir=DIR],
[install Systemd unit files @<:@no@:>@]
),
[test "x$withval" = "xyes" || unitsdir="$withval"; test "x$withval" = "xno" && unitsdir=""]
)
AM_CONDITIONAL([SYSTEMD_UNITS], [test "x$unitsdir" != "x"])
AC_ARG_WITH(
smrshdir,
AS_HELP_STRING(
[--with-smrshdir=DIR],
[install symbolic links for Sendmail smrsh @<:@SYSCONFDIR/smrsh@:>@]
)
AS_HELP_STRING(
[--without-smrshdir],
[do not install symbolic links for Sendmail smrsh]
),
[test "x$withval" = "xyes" || smrshdir="$withval"; test "x$withval" = "xno" && smrshdir=""]
)
AM_CONDITIONAL(SMRSH, [test "x$smrshdir" != "x"])
AC_ARG_WITH(
lockdir,
AS_HELP_STRING(
[--with-lockdir=DIR],
[lock files @<:@/var/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"]
)
AC_ARG_WITH(
cssdir,
AS_HELP_STRING(
[--with-cssdir=DIR],
[generated css @<:@PREFIX/static_content/css@:>@]
),
[cssdir="$withval"]
)
AC_ARG_WITH(
picturesdir,
AS_HELP_STRING(
[--with-picturesdir=DIR],
[subscribers pictures @<:@PREFIX/static_content/pictures@:>@]
),
[picturesdir="$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(
[aliases_file],
AS_HELP_STRING(
[--with-aliases_file=ALIASFILE],
[aliases file to store Sympa mail aliases @<:@/etc/mail/sympa_aliases@:>@]
),
[SENDMAIL_ALIASES="$withval"]
)
AC_SUBST(SENDMAIL_ALIASES)
AC_ARG_WITH(
[sendmail_aliases], ,
AC_MSG_ERROR([--with-sendmail_aliases was deprecated. Use --with-aliases_file.])
)
VIRTUAL_ALIASES=
AC_ARG_WITH(
[virtual_aliases], ,
AC_MSG_ERROR([--with-virtual_aliases was deprecated. Use --with-aliases_file.])
)
AC_SUBST(VIRTUAL_ALIASES)
MAKEMAP=
AC_ARG_WITH(
[makemap],
AS_HELP_STRING(
[--with-makemap=FULLPATH],
[path to Sendmail makemap command @<:@AUTO-DETECT@:>@]
),
[MAKEMAP="$withval"]
)
if test -n "$MAKEMAP"; then
# user-supplied value
AC_MSG_CHECKING([user-supplied makemap command])
if test -f "$MAKEMAP"; then
:
else
AC_MSG_RESULT([non-existing])
AC_MSG_ERROR([invalid value $MAKEMAP for makemap command])
fi
if test -x "$MAKEMAP"; then
:
else
AC_MSG_RESULT([non-executable])
AC_MSG_ERROR([invalid value $MAKEMAP for makemap command])
fi
AC_MSG_RESULT([$MAKEMAP])
else
# default value
AC_PATH_PROG([MAKEMAP], [makemap], [/usr/bin/makemap])
fi
AC_SUBST(MAKEMAP)
NEWALIASES=
AC_ARG_WITH(
[newaliases],
AS_HELP_STRING(
[--with-newaliases=FULLPATH],
[path to newaliases command @<:@AUTO-DETECT@:>@]
),
[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
AC_PATH_PROG([NEWALIASES], [newaliases], [/usr/bin/newaliases])
fi
AC_SUBST(NEWALIASES)
if test -n "$CAT"; then
# user-supplied value
AC_MSG_CHECKING([user-supplied cat command])
if test -f "$CAT"; then
:
else
AC_MSG_RESULT([non-existing])
AC_MSG_ERROR([invalid value $CAT for cat command])
fi
if test -x "$CAT"; then
:
else
AC_MSG_RESULT([non-executable])
AC_MSG_ERROR([invalid value $CAT for cat command])
fi
AC_MSG_RESULT([$CAT])
else
# default value
AC_PATH_PROG([CAT], [cat], [/bin/cat])
fi
AC_SUBST(CAT)
AC_MSG_CHECKING([argument to newaliases command])
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)
if test -z "$NEWALIASES_ARG"; then
AC_MSG_RESULT([none])
else
AC_MSG_RESULT([$NEWALIASES_ARG])
fi
POSTALIAS=
AC_ARG_WITH(
[postalias],
AS_HELP_STRING(
[--with-postalias=FULLPATH],
[path to Postfix postalias command @<:@AUTO-DETECT@:>@]
),
[POSTALIAS="$withval"]
)
if test -n "$POSTALIAS"; then
# user-supplied value
AC_MSG_CHECKING([user-supplied postalias command])
if test -f "$POSTALIAS"; then
:
else
AC_MSG_RESULT([non-existing])
AC_MSG_ERROR([invalid value $POSTALIAS for postalias command])
fi
if test -x "$POSTALIAS"; then
:
else
AC_MSG_RESULT([non-executable])
AC_MSG_ERROR([invalid value $POSTALIAS for postalias command])
fi
AC_MSG_RESULT([$POSTALIAS])
else
# default value
AC_PATH_PROG([POSTALIAS], [postalias], [/usr/sbin/postalias])
fi
AC_SUBST(POSTALIAS)
POSTMAP=
AC_ARG_WITH(
[postmap],
AS_HELP_STRING(
[--with-postmap=FULLPATH],
[path to Postfix postmap command @<:@AUTO-DETECT@:>@]
),
[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
AC_PATH_PROG([POSTMAP], [postmap], [/usr/sbin/postmap])
fi
AC_SUBST(POSTMAP)
POSTMAP_ARG=
AC_ARG_WITH(
[postmap_arg], ,
AC_MSG_ERROR([--with-postmap_arg was deprecated. Use --with-newaliases_arg.])
)
AC_SUBST(POSTMAP_ARG)
AC_MSG_CHECKING([whether we install/enable setuid wrappers])
AC_ARG_ENABLE(
setuid,
AS_HELP_STRING(
[--disable-setuid],
[do not install nor enable any setuid wrappers]
), ,
[enable_setuid="yes"],
)
AC_MSG_RESULT([$enable_setuid])
AC_MSG_CHECKING([whether we install setuid wrappers for web interface])
AC_ARG_ENABLE(
setuid_fcgi,
AS_HELP_STRING(
[--disable-setuid_fcgi],
[do not install setuid wrappers for web interface]
), ,
[enable_setuid_fcgi="$enable_setuid"],
)
AC_MSG_RESULT([$enable_setuid_fcgi])
AM_CONDITIONAL(SETUID_FCGI, [test "x$enable_setuid_fcgi" = "xyes"])
AC_MSG_CHECKING([whether we install setuid wrapper for alias maintenance])
AC_ARG_ENABLE(
setuid_newaliases,
AS_HELP_STRING(
[--disable-setuid_newaliases],
[do not install setuid wrappers for web interface]
), ,
[enable_setuid_newaliases="$enable_setuid"],
)
AC_MSG_RESULT([$enable_setuid_newaliases])
AM_CONDITIONAL(SETUID_NEWALIASES, [test "x$enable_setuid_newaliases" = "xyes"])
AC_MSG_CHECKING([whether we set setuid bit of queue programs])
AC_ARG_ENABLE(
setuid_queue,
AS_HELP_STRING(
[--disable-setuid_queue],
[do not set setuid bit of queue programs]
), ,
[enable_setuid_queue="$enable_setuid"],
)
AC_MSG_RESULT([$enable_setuid_queue])
AM_CONDITIONAL(SETUID_QUEUE, [test "x$enable_setuid_queue" = "xyes"])
AC_CONFIG_FILES([
Makefile
sympa.conf
default/Makefile
doc/Makefile
po/Makefile
po/sympa/Makefile.in
po/web_help/Makefile.in
service/Makefile
src/Makefile
src/cgi/Makefile
src/lib/Makefile
src/libexec/Makefile
src/sbin/Makefile
www/Makefile
])
AC_OUTPUT