]> git.sur5r.net Git - bacula/docs/blob - docs/autoconf/configure.in
d57a5668cacb0716a756adfcb1d4480b69b1379d
[bacula/docs] / docs / autoconf / configure.in
1 lal#
2 dnl#
3 dnl# Process this file with autoconf to produce a configure script.
4 dnl#
5 AC_INIT(autoconf/configure.in)
6 BUILD_DIR=`pwd`
7 cd ..
8 TOP_DIR=`pwd`
9 cd ${BUILD_DIR}
10 AC_SUBST(BUILD_DIR)
11 AC_CONFIG_AUX_DIR(${BUILD_DIR}/autoconf)
12
13 dnl require a recent autoconf
14 AC_PREREQ(2.13)
15
16
17
18 # ------------------------------------------
19 # Where to get Bacula source
20 # ------------------------------------------
21 AC_ARG_WITH(bacula,
22    [  --with-bacula=PATH    specify path to Bacula source],
23    [
24        if test "x$withval" != "xno" ; then     
25           bacula=$withval
26        fi
27    ]
28 )
29
30 AC_SUBST(bacula)
31 if test "x$bacula" = "x" ; then
32    AC_MSG_ERROR(The Bacula source directory must be specified. Use --with-bacula=<path>)
33 fi
34
35 dnl Bacula version
36 VERSION=`sed -n -e 's/^.*VERSION.*"\(.*\)"$/\1/p' ${bacula}/src/version.h`
37 DATE=`sed -n -e 's/^.*[ \t]*BDATE.*"\(.*\)"$/\1/p' ${bacula}/src/version.h`
38 AC_SUBST(VERSION)dnl 
39 AC_SUBST(DATE)dnl 
40 if test "x$VERSION" = "x" ; then
41    AC_MSG_ERROR(Bacula version not found)
42 fi
43 echo "configuring for Bacula $VERSION ($DATE)"
44
45 dnl -------------------------------------------------------
46 dnl# Check for programs.
47 dnl ------------------------------------------------------
48 AC_PATH_PROGS(TRUEPRG, true, :)
49 AC_PATH_PROGS(FALSEPRG, false, :)
50 AC_PROG_INSTALL
51 AC_PATH_PROG(MV, mv, mv)
52 AC_PATH_PROG(RM, rm, rm)
53 AC_PATH_PROG(CP, cp, cp)
54 AC_PATH_PROG(ECHO, echo, echo)
55 AC_PATH_PROG(AR, ar, ar)
56 AC_PROG_AWK
57 # Some AWK programs fail, so test it and warn the user
58 if echo xfoo | $AWK 'BEGIN { prog=ARGV[1]; ARGC=1 } 
59       { if ((prog == $2) || (("(" prog ")") == $2) ||
60            (("[" prog "]") == $2) ||
61            ((prog ":") == $2)) { print $1 ; exit 0 } }' xfoo>/dev/null; then :;
62 else
63   AC_MSG_ERROR([!!!!!!!!! WARNING !!!!!!!!!!!!!!
64    The regex engine of $AWK is too broken to be used you 
65    might want to install GNU AWK.
66    !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!])
67 fi
68 THE_AWK=$AWK
69 AC_PATH_PROG(AWK, $THE_AWK, $THE_AWK)
70
71 # -------------------------------------------------------------------------
72 #  If the user has not set --exec-prefix, we default to ${prefix}
73 # -------------------------------------------------------------------------
74 if test x${exec_prefix} = xNONE ; then
75     exec_prefix=${prefix}
76 fi
77
78
79 dnl# --------------------------------------------------------------------------
80 dnl# CHECKING COMMAND LINE OPTIONS
81 dnl# --------------------------------------------------------------------------
82
83
84
85 dnl# common parts of the Makefile
86 MCOMMON=./autoconf/Make.common
87 AC_SUBST_FILE(MCOMMON)
88
89
90 AC_OUTPUT([    \
91            autoconf/Make.common \
92            Makefile \
93            manuals/en/catalog/Makefile \
94            manuals/en/catalog/update_version \
95            manuals/en/catalog/version.tex \
96            manuals/en/concepts/Makefile \
97            manuals/en/concepts/update_version \
98            manuals/en/concepts/version.tex \
99            manuals/en/console/Makefile \
100            manuals/en/console/update_version \
101            manuals/en/console/version.tex \
102            manuals/en/developers/Makefile \
103            manuals/en/developers/update_version \
104            manuals/en/developers/version.tex \
105            manuals/en/install/Makefile \
106            manuals/en/install/update_version \
107            manuals/en/install/version.tex \
108            manuals/en/problems/Makefile \
109            manuals/en/problems/update_version \
110            manuals/en/problems/version.tex \
111            manuals/en/utility/Makefile \
112            manuals/en/utility/update_version \
113            manuals/en/utility/version.tex \
114            manual-de/Makefile \
115            manual-de/version.tex \
116            manual-de/update_version \
117            manual-fr/Makefile \
118            manual-fr/version.tex \
119            manual-fr/update_version \
120            bacula-web/Makefile \
121            bacula-web/version.tex \
122            $PFILES ],  
123           [ ]
124 )
125
126 chmod 766 manuals/en/catalog/update_version
127 chmod 766 manuals/en/concepts/update_version
128 chmod 766 manuals/en/console/update_version
129 chmod 766 manuals/en/developers/update_version
130 chmod 766 manuals/en/install/update_version
131 chmod 766 manuals/en/problems/update_version
132 chmod 766 manuals/en/utility/update_version
133 chmod 766 manual-fr/update_version
134 chmod 766 manual-de/update_version
135
136 echo "
137 Configuration on `date`:
138
139   Bacula version:             ${VERSION} (${DATE})
140   Bacula source code:         ${bacula}
141
142   " > config.out
143
144 cat config.out