"Fossies" - the Fresh Open Source Software Archive 
Member "courier-1.2.2/courier/doc/configure.ac" (29 Nov 2022, 1716 Bytes) of package /linux/misc/courier-1.2.2.tar.bz2:
As a special service "Fossies" has tried to format the requested text file into HTML format (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 dnl Process this file with autoconf to produce a configure script.
2 dnl
3 dnl Copyright 1998 - 2001 Double Precision, Inc. See COPYING for
4 dnl distribution information.
5 AC_INIT([courier-doc],[0.10],[courier-users@lists.sourceforge.net])
6
7 >confdefs.h # Kill PACKAGE_ macros
8
9 AC_CONFIG_SRCDIR(index.html)
10 AM_INIT_AUTOMAKE([foreign no-define])
11 LPATH="$PATH:/usr/local/bin"
12
13
14 AC_ARG_WITH(mailuser, [--with-mailuser=user Specify mail user name (defaults to mail)],
15 mailuser="$withval",
16 mailuser=mail
17 )
18
19 AC_ARG_WITH(mailgroup, [--with-mailgroup=group Specify mail group name (defaults to mail)],
20 mailgroup="$withval",
21 mailgroup=mail
22 )
23 AC_SUBST(mailuser)
24 AC_SUBST(mailgroup)
25
26 version=`cat ../../version`
27 AC_SUBST(version)
28
29 AC_ARG_WITH(extension,
30 [--with-extension=prefix Read $HOME/.prefix and .prefix-foo
31 for delivery instructions ],
32 extension="$withval", extension="courier")
33 AC_SUBST(extension)
34
35 dnl Checks for programs.
36
37 dnl I need perl only to build man pages
38
39 AC_PATH_PROGS(PERL, perl5 perl, perl, $LPATH)
40 AC_PROG_LN_S
41
42 dnl Checks for libraries.
43
44 dnl Checks for header files.
45
46 dnl Checks for typedefs, structures, and compiler characteristics.
47
48 dnl Checks for library functions.
49
50 dnl Evaluate actual directory location.
51
52 test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
53
54 eval "prefix=\"$prefix\""
55 eval "exec_prefix=\"$exec_prefix\""
56 eval "bindir=\"$bindir\""
57 eval "sbindir=\"$sbindir\""
58 eval "sysconfdir=\"$sysconfdir\""
59 eval "datarootdir=\"$datarootdir\""
60 eval "datadir=\"$datadir\""
61 eval "localstatedir=\"$localstatedir\""
62 eval "libexecdir=\"$libexecdir\""
63
64 AM_CONDITIONAL(HAVE_SGML, test -d ${srcdir}/../../libs/docbook)
65
66 AC_CONFIG_FILES([Makefile ])
67 AC_OUTPUT