blob: f0d325fa51d0638facd6aef1a5116eb67a32bd36 (
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
38
|
#!/bin/sh
#
# Copyright (C) 2001,2002,2003 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.8 2003/01/28 04:12:36 fukachan Exp $
#
LIBS=@LIBS@
CC=@CC@
CFLAGS="@CFLAGS@"
LDFLAGS="@LDFLAGS@"
INSTALLCMD="@INSTALL@"
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
mandir=@mandir@
datarootdir=@datarootdir@
config_dir=@fmlconfdir@
libexec_dir=@libexecdir@/fml
lib_dir=@libdir@/fml
data_dir=@datarootdir@/fml
# ml spool
ml_spool_dir=@mlspooldir@
# owner of /var/spool/ml
owner=@fml_owner@
group=@fml_group@
|