]> git.sur5r.net Git - bacula/docs/blob - docs/autoconf/configure.in
5daed5acd2b0ecd4bf70eddab368bccdc7732d69
[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            manual/Makefile \
94            manual/version.tex \
95            manual-de/Makefile \
96            manual-de/version.tex \
97            manual-fr/Makefile \
98            manual-fr/version.tex \
99            $PFILES ],  
100           [ ]
101 )
102
103
104 echo "
105 Configuration on `date`:
106
107   Bacula version:             ${VERSION} (${DATE})
108   Bacula source code:         ${bacula}
109
110   " > config.out
111
112 cat config.out