blob: ea88dd3e8b69dd7a0692380e7d2b6d692e341148 (
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
|
#!/bin/sh
#
# Copyright (C) 2001 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.5 2001/12/11 12:13:48 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
# ml spool
ml_spool_dir=@mlspooldir@
# owner of /var/spool/ml
owner=@fml_owner@
group=@fml_group@
|