blob: 595a41ac1da1d954c73d7258b51e4b25602e2411 (
plain)
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
|
#!/bin/sh
#
# Copyright (C) 2001,2002 Ken'ichi Fukamachi
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
# $FML: config.sh.in,v 1.6 2001/12/11 13:12:17 fukachan Exp $
#
LIBS=@LIBS@
CC=@CC@
CFLAGS=@CFLAGS@
LDFLAGS=@LDFLAGS@
INSTALLCMD=@INSTALL@
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
mandir=@mandir@
config_dir=@fmlconfdir@
libexec_dir=@libexecdir@/fml
lib_dir=@libdir@/fml
data_dir=@datadir@/fml
# ml spool
ml_spool_dir=@mlspooldir@
# owner of /var/spool/ml
owner=@fml_owner@
group=@fml_group@
|