3 dnl Process this file with autoconf to produce a configure script.
12 AC_CONFIG_AUX_DIR(${BUILD_DIR}/autoconf)
13 AC_CONFIG_HEADER(src/config.h:autoconf/config.h.in)
15 dnl minimal Win32 stuff for "make clean"
16 WIN32BUILDDIR=${BUILD_DIR}/src/win32
17 WIN32MAINDIR=${BUILD_DIR}
18 WIN32TOPDIR=${TOP_DIR}
19 AC_SUBST(WIN32BUILDDIR)
20 AC_SUBST(WIN32MAINDIR)
23 dnl require a recent autoconf
27 dnl search for true and false programs.
28 AC_PATH_PROGS(TRUEPRG, true, :)
29 AC_PATH_PROGS(FALSEPRG, false, :)
34 if test "x$BACULA" != x; then
35 post_host=`echo -${BACULA} | tr 'A-Z ' 'a-z-'`
37 BACULA=${BACULA:-Bacula}
38 VERSION=`sed -n -e 's/^.*VERSION.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
39 DATE=`sed -n -e 's/^.*[ \t]*BDATE.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
40 LSMDATE=`sed -n -e 's/^.*LSMDATE.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
45 AC_SUBST(post_host)dnl
46 echo "configuring for ${BACULA} $VERSION ($DATE)"
48 dnl -------------------------------------------------------
49 dnl Check for compiler.
50 dnl ------------------------------------------------------
54 AC_PROG_CC_C_O dnl Determine if C compiler support -c -o.
55 AC_PROG_GCC_TRADITIONAL dnl Determine if ioctl() need -traditional.
59 if test "x$BASECC" = xgcc; then
63 AC_PATH_PROG(CXX, $CXX, $CXX)
64 if test ! -e $CXX; then
65 AC_MSG_ERROR(Unable to find C++ compiler)
68 dnl -------------------------------------------------------
69 dnl Check for programs.
70 dnl ------------------------------------------------------
72 AC_PATH_PROG(MV, mv, mv)
74 dnl If we name the variable RM it will shadow the RM variable in the configure script and we overwrite the
75 dnl value with the name of the rm command and not rm -f which is its normal content. This gives all kind
76 dnl of strange output of the configure script (like things don't exist etc.).
77 dnl So we name it REMOVE (more software has run into this problem)
78 AC_PATH_PROG(REMOVE, rm, rm)
79 AC_PATH_PROG(CP, cp, cp)
80 AC_PATH_PROG(SED, sed, sed)
81 AC_PATH_PROG(ECHO, echo, echo)
82 AC_PATH_PROG(CMP, cmp, cmp)
83 AC_PATH_PROG(TBL, tbl, tbl)
84 AC_PATH_PROG(AR, ar, ar)
85 AC_PATH_PROG(OPENSSL, openssl, none)
86 AC_PATH_PROG(MTX, mtx, mtx)
87 AC_PATH_PROG(DD, dd, dd)
88 AC_PATH_PROG(MKISOFS, mkisofs, mkisofs)
89 AC_PATH_PROG(PYTHON, python, python)
90 AC_PATH_PROG(GROWISOFS, growisofs, growisofs)
91 AC_PATH_PROG(DVDRWMEDIAINFO, dvd+rw-mediainfo, dvd+rw-mediainfo)
92 AC_PATH_PROG(DVDRWFORMAT, dvd+rw-format, dvd+rw-format)
93 AC_PATH_PROG(PKGCONFIG, pkg-config, pkg-config)
94 AC_PATH_PROG(QMAKE, qmake, none)
95 AC_PATH_PROG(QMAKEQT4, qmake-qt4, none)
96 AC_PATH_PROG(GMAKE, gmake, none)
97 AC_ARG_VAR(WXCONFIG, [wx-config command. On some systems, you must set it to wx-config-2.6 to use wxWidgets 2.6.])
98 if test "x$WXCONFIG" = x; then
101 AC_PATH_PROG(WXCONFIG, ${WXCONFIG}, ${WXCONFIG})
102 AC_ARG_VAR(WXFLAGS, [Parameters to pass to wx-config (e.g. --unicode=no).])
103 AC_PATH_PROG(CDRECORD, cdrecord, cdrecord)
104 AC_PATH_PROG(PIDOF, pidof, pidof)
106 # Some AWK programs fail, so test it and warn the user
107 if echo xfoo | $AWK 'BEGIN { prog=ARGV[1]; ARGC=1 }
108 { if ((prog == $2) || (("(" prog ")") == $2) ||
109 (("[" prog "]") == $2) ||
110 ((prog ":") == $2)) { print $1 ; exit 0 } }' xfoo>/dev/null; then :;
112 AC_MSG_ERROR([!!!!!!!!! WARNING !!!!!!!!!!!!!!
113 The regex engine of $AWK is too broken to be used you
114 might want to install GNU AWK.
115 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!])
118 AC_PATH_PROG(AWK, $THE_AWK, $THE_AWK)
121 test -n "$ARFLAG" || ARFLAGS="cr"
128 AC_SUBST(LOCAL_CFLAGS)
129 AC_SUBST(LOCAL_LDFLAGS)
132 dnl --------------------------------------------------
134 dnl --------------------------------------------------
136 AC_ARG_ENABLE(libtool,
137 AC_HELP_STRING([--enable-libtool], [enable building using GNU libtool @<:@default=yes@:>@]),
139 if test x$enableval = xno; then
144 LT_INIT([shared disable-static])
147 if test x$use_libtool != xno; then
148 DEFAULT_OBJECT_TYPE=".lo"
149 DEFAULT_ARCHIVE_TYPE=".la"
150 DEFAULT_SHARED_OBJECT_TYPE=".la"
151 LIBTOOL="\$(LIBTOOL)"
152 LIBTOOL_INSTALL_TARGET="libtool-install"
153 LIBTOOL_UNINSTALL_TARGET="libtool-uninstall"
154 LIBTOOL_CLEAN_TARGET="libtool-clean"
155 QMAKE_LIBTOOL="${BUILD_DIR}/libtool"
157 DEFAULT_OBJECT_TYPE=".o"
158 DEFAULT_ARCHIVE_TYPE=".a"
159 DEFAULT_SHARED_OBJECT_TYPE=".so"
160 LIBTOOL="# \$(LIBTOOL)"
161 LIBTOOL_INSTALL_TARGET=""
162 LIBTOOL_UNINSTALL_TARGET=""
163 LIBTOOL_CLEAN_TARGET=""
164 QMAKE_LIBTOOL="# ${BUILD_DIR}/libtool"
167 AC_SUBST(DEFAULT_OBJECT_TYPE)
168 AC_SUBST(DEFAULT_ARCHIVE_TYPE)
169 AC_SUBST(DEFAULT_SHARED_OBJECT_TYPE)
171 AC_SUBST(LIBTOOL_INSTALL_TARGET)
172 AC_SUBST(LIBTOOL_UNINSTALL_TARGET)
173 AC_SUBST(LIBTOOL_CLEAN_TARGET)
174 AC_SUBST(QMAKE_LIBTOOL)
176 dnl --------------------------------------------------
177 dnl Include file handling
178 dnl --------------------------------------------------
179 AC_ARG_ENABLE(includes,
180 AC_HELP_STRING([--enable-includes], [enable installing of include files @<:@default=no@:>@]),
182 if test x$enableval = xyes; then
188 dnl It only makes sense to install include files when you install libraries which only happens when
189 dnl libtool is enabled
191 if test x$use_libtool != xno -a x$install_includes = xyes; then
192 INCLUDE_INSTALL_TARGET="install-includes"
193 INCLUDE_UNINSTALL_TARGET="uninstall-includes"
195 INCLUDE_INSTALL_TARGET=""
196 INCLUDE_UNINSTALL_TARGET=""
198 AC_SUBST(INCLUDE_INSTALL_TARGET)
199 AC_SUBST(INCLUDE_UNINSTALL_TARGET)
201 dnl --------------------------------------------------
202 dnl Bacula OP Sys determination (see aclocal.m4)
203 dnl --------------------------------------------------
206 dnl -----------------------------------------------------------
207 dnl Bacula OPSys Distribution determination (see aclocal.m4)
208 dnl ----------------------------------------------------------
209 BA_CHECK_OPSYS_DISTNAME
211 dnl --------------------------------------------------
212 dnl Suppport for gettext (translations)
213 dnl By default, $datarootdir is ${prefix}/share
214 dnl --------------------------------------------------
215 AM_GNU_GETTEXT([external])
217 dnl ------------------------------------------------------------------
218 dnl If the user has not set --prefix, we set our default to nothing.
219 dnl In this case, if the user has not set --sysconfdir, we set it
220 dnl to the package default of /etc/bacula. If either --prefix or
221 dnl --sysconfdir is set, we leave sysconfdir alone except to eval it.
222 dnl If the user has not set --libdir, we set it to the package
223 dnl default of /usr/lib. If either --prefix or --libdir is set,
224 dnl we leave libdir alone except to eval it. If the user has not set
225 dnl --includedir, we set it to the package default of /usr/include.
226 dnl If either --prefix or --includedir is set, we leave includedir
227 dnl alone except to eval it
228 dnl ------------------------------------------------------------------
229 os_name=`uname -s 2>/dev/null`
230 if test x${prefix} = xNONE ; then
231 if test `eval echo ${sysconfdir}` = NONE/etc ; then
232 sysconfdir=/etc/bacula
235 if test `eval echo ${libdir}` = NONE/lib ; then
238 os_processor=`uname -p 2>/dev/null`
239 case ${os_processor} in
254 if test `eval echo ${includedir}` = NONE/include ; then
255 includedir=/usr/include
258 if test `eval echo ${datarootdir}` = NONE/share ; then
259 datarootdir=/usr/share
264 dnl -------------------------------------------------------------------------
265 dnl If the user has not set --exec-prefix, we default to ${prefix}
266 dnl -------------------------------------------------------------------------
267 if test x${exec_prefix} = xNONE ; then
268 exec_prefix=${prefix}
271 sysconfdir=`eval echo ${sysconfdir}`
272 datarootdir=`eval echo ${datarootdir}`
273 docdir=`eval echo ${docdir}`
274 htmldir=`eval echo ${htmldir}`
275 libdir=`eval echo ${libdir}`
276 includedir=`eval echo ${includedir}`
277 localedir=`eval echo ${datarootdir}/locale`
278 AC_DEFINE_UNQUOTED(SYSCONFDIR, "$sysconfdir")
279 AC_DEFINE_UNQUOTED(LOCALEDIR, "$localedir")
281 dnl ------------------------------------------------------------------
282 dnl If the user has not set --sbindir, we set our default as /sbin
283 dnl ------------------------------------------------------------------
284 if test x$sbindir = x'${exec_prefix}/sbin' ; then
285 sbindir=${exec_prefix}/sbin
287 sbindir=`eval echo ${sbindir}`
289 dnl -------------------------------------------------------------------------
290 dnl If the user has not set --mandir, we default to /usr/share/man
291 dnl -------------------------------------------------------------------------
292 if test x$mandir = x'${prefix}/man' ; then
293 mandir=/usr/share/man
296 dnl -------------------------------------------------------------------------
297 dnl If the user has not set --htmldir, we default to /usr/share/doc/bacula/html
298 dnl -------------------------------------------------------------------------
299 if test x$htmldir = x${docdir} ; then
300 htmldir=`eval echo ${docdir}bacula/html`
303 dnl -------------------------------------------------------------------------
304 dnl If the user has not set --docdir, we default to /usr/share/doc/
305 dnl -------------------------------------------------------------------------
306 if test x$docdir = x'/usr/share/doc/' ; then
307 docdir=`eval echo ${docdir}bacula`
311 AC_PATH_PROGS(MSGFMT, msgfmt, no)
312 if test "$MSGFMT" = "no"
314 echo 'msgfmt program not found, disabling NLS !'
316 USE_INCLUDED_LIBINTL=no
324 support_postgresql=no
326 support_smartalloc=yes
331 support_wx_console=no
332 support_tray_monitor=no
337 support_static_tools=no
340 support_static_dir=no
341 support_static_cons=no
351 dnl --------------------------------------------------------------------------
352 dnl CHECKING COMMAND LINE OPTIONS
353 dnl --------------------------------------------------------------------------
355 dnl -------------------------------------------
356 dnl gnome (default off)
357 dnl -------------------------------------------
359 AC_HELP_STRING([--enable-gnome], [enable build of bgnome-console GUI @<:@default=no@:>@]),
361 if test x$enableval = xyes; then
368 if test x$support_gnome = xyes; then
369 AC_MSG_ERROR(bgnome-console no longer supported)
370 AC_MSG_ERROR(--enable-gnome option no longer supported)
372 # AC_SUBST(GNOME_DIR)
374 dnl -------------------------------------------
375 dnl bat (default off)
376 dnl -------------------------------------------
378 AC_HELP_STRING([--enable-bat], [enable build of bat Qt4 GUI @<:@default=no@:>@]),
380 if test x$enableval = xyes; then
381 AC_DEFINE(HAVE_BAT, 1, [Set if Bacula bat Qt4 GUI support enabled])
388 if test x$support_bat = xyes; then
389 abc=`$PKGCONFIG --atleast-version=4.2 QtGui`
391 if test $pkg = 0; then
392 BAT_DIR=src/qt-console
394 AC_MSG_ERROR(Unable to find Qt4 installation needed by bat)
399 dnl If bat is enabled, we need the qwt library
407 if test x$support_bat = xyes; then
408 AC_MSG_CHECKING(for qwt support)
410 AC_HELP_STRING([--with-qwt@<:@=DIR@:>@], [specify qwt library directory]),
417 if test -f ${with_qwt}/include/qwt.h; then
418 QWT_INC="${with_qwt}/include"
419 QWT_LDFLAGS="-L${with_qwt}/lib"
429 dnl Search in standard places, or --with-qwt not specified
431 if test $no_qwt = no; then
432 if test x$QWT_INC = x; then
433 for root in /usr /usr/local; do
434 for ver in qwt qwt5 qwt-qt4; do
435 if test -f ${root}/include/${ver}/qwt.h; then
436 QWT_INC="${root}/include/${ver}"
437 if test -d ${root}/lib64/; then
438 QWT_LDFLAGS="-L${root}/lib64"
439 elif test -d ${root}/lib/64/; then
440 QWT_LDFLAGS="-L${root}/64"
442 QWT_LDFLAGS="-L${root}/lib"
453 if test x$QWT_INC = x; then
456 AC_DEFINE(HAVE_QWT, 1, [Set if bat QWT library found])
463 AC_SUBST(QWT_LDFLAGS)
467 dnl -------------------------------------------
468 dnl bwx-console (default off)
469 dnl -------------------------------------------
470 AC_ARG_ENABLE(bwx-console,
471 AC_HELP_STRING([--enable-bwx-console], [enable build of wxWidgets console @<:@default=no@:>@]),
473 if test x$enableval = xyes; then
474 support_wx_console=yes
480 if test x$support_wx_console = xyes; then
481 abc=`$WXCONFIG $WXFLAGS --cppflags`
483 if test $pkg = 0; then
484 wx_version="wxWidgets `$WXCONFIG $WXFLAGS --release`"
485 WXCONS_CPPFLAGS=`$WXCONFIG $WXFLAGS --cppflags`
486 WXCONS_LDFLAGS=`$WXCONFIG $WXFLAGS --libs`
488 AC_SUBST(WXCONS_CPPFLAGS)
489 AC_SUBST(WXCONS_LDFLAGS)
490 WX_DIR="src/wx-console"
493 echo "wx-config program not found. bwx-console disabled."
495 support_wx_console=no
500 dnl -------------------------------------------
501 dnl tray-monitor (default off)
502 dnl -------------------------------------------
503 AC_ARG_ENABLE(tray-monitor,
504 AC_HELP_STRING([--enable-tray-monitor], [enable build of Gnome tray monitor (compatible with KDE @<:@default=no@:>@]),
506 if test x$enableval = xyes; then
507 support_tray_monitor=yes
513 if test x$support_tray_monitor = xyes; then
514 abc=`$PKGCONFIG --exists gtk+-2.0`
516 if test $pkg = 0; then
517 TRAY_MONITOR_CPPFLAGS=`$PKGCONFIG --cflags gtk+-2.0`
518 TRAY_MONITOR_LDFLAGS=`$PKGCONFIG --libs gtk+-2.0`
519 AC_SUBST(TRAY_MONITOR_CPPFLAGS)
520 AC_SUBST(TRAY_MONITOR_LDFLAGS)
521 TRAY_MONITOR_DIR=src/tray-monitor
522 abc=`$PKGCONFIG --atleast-version=2.4 gtk+-2.0`
524 if test $pkg = 0; then
525 AC_DEFINE(HAVE_GTK_2_4, 1, [Set if you have GTK 4.2 or greater loaded])
529 AC_SUBST(TRAY_MONITOR_DIR)
531 dnl -------------------------------------------
532 dnl smartalloc (default off)
533 dnl -------------------------------------------
534 AC_ARG_ENABLE(smartalloc,
535 AC_HELP_STRING([--enable-smartalloc], [enable smartalloc debugging support @<:@default=no@:>@]),
537 if test x$enableval = xno; then
538 support_smartalloc=no
543 if test x$support_smartalloc = xyes; then
544 AC_DEFINE(SMARTALLOC, 1, [Set if you want Smartalloc enabled])
547 dnl -------------------------------------------
548 dnl Lock Manager (default off)
549 dnl -------------------------------------------
550 AC_ARG_ENABLE(lockmgr,
551 AC_HELP_STRING([--enable-lockmgr], [enable lock manager support @<:@default=no@:>@]),
553 if test x$enableval = xyes; then
559 if test x$support_lockmgr = xyes; then
560 AC_DEFINE(_USE_LOCKMGR, 1, [Set if you want Lock Manager enabled])
564 dnl -------------------------------------------
565 dnl static-tools (default off)
566 dnl -------------------------------------------
567 AC_ARG_ENABLE(static-tools,
568 AC_HELP_STRING([--enable-static-tools], [enable static tape tools @<:@default=no@:>@]),
570 if test x$enableval = xyes; then
571 if test x$use_libtool = xyes; then
572 AC_MSG_ERROR([Libtool is enabled, not compatible with static tools,
573 please rerun configure with --disable-libtool])
575 support_static_tools=yes
581 if test x$support_static_tools = xyes; then
582 TTOOL_LDFLAGS="-static"
584 AC_SUBST(TTOOL_LDFLAGS)
586 dnl -------------------------------------------
587 dnl static-fd (default off)
588 dnl -------------------------------------------
589 AC_ARG_ENABLE(static-fd,
590 AC_HELP_STRING([--enable-static-fd], [enable static File daemon @<:@default=no@:>@]),
592 if test x$enableval = xyes; then
593 if test x$use_libtool = xyes; then
594 AC_MSG_ERROR([Libtool is enabled, not compatible with static tools,
595 please rerun configure with --disable-libtool])
597 support_static_fd=yes
603 if test x$support_static_fd = xyes; then
604 STATIC_FD="static-bacula-fd"
608 dnl -------------------------------------------
609 dnl static-sd (default off)
610 dnl -------------------------------------------
611 AC_ARG_ENABLE(static-sd,
612 AC_HELP_STRING([--enable-static-sd], [enable static Storage daemon @<:@default=no@:>@]),
614 if test x$enableval = xyes; then
615 if test x$use_libtool = xyes; then
616 AC_MSG_ERROR([Libtool is enabled, not compatible with static tools,
617 please rerun configure with --disable-libtool])
619 support_static_sd=yes
625 if test x$support_static_sd = xyes; then
626 STATIC_SD="static-bacula-sd"
630 dnl -------------------------------------------
631 dnl static-dir (default off)
632 dnl -------------------------------------------
633 AC_ARG_ENABLE(static-dir,
634 AC_HELP_STRING([--enable-static-dir], [enable static Director @<:@default=no@:>@]),
636 if test x$enableval = xyes; then
637 if test x$use_libtool = xyes; then
638 AC_MSG_ERROR([Libtool is enabled, not compatible with static tools,
639 please rerun configure with --disable-libtool])
641 support_static_dir=yes
647 if test x$support_static_dir = xyes; then
648 STATIC_DIR="static-bacula-dir"
652 dnl -------------------------------------------
653 dnl static-cons (default off)
654 dnl -------------------------------------------
655 AC_ARG_ENABLE(static-cons,
656 AC_HELP_STRING([--enable-static-cons], [enable static Console @<:@default=no@:>@]),
658 if test x$enableval = xyes; then
659 if test x$use_libtool = xyes; then
660 AC_MSG_ERROR([Libtool is enabled, not compatible with static tools,
661 please rerun configure with --disable-libtool])
663 support_static_cons=yes
671 if test x$support_static_cons = xyes; then
672 STATIC_CONS="static-bconsole"
673 STATIC_GNOME_CONS="static-bgnome-console"
674 STATIC_WX_CONS="static-bwx-console"
676 AC_SUBST(STATIC_CONS)
677 AC_SUBST(STATIC_GNOME_CONS)
678 AC_SUBST(STATIC_WX_CONS)
680 dnl -------------------------------------------
681 dnl client_only (default off)
682 dnl -------------------------------------------
683 AC_ARG_ENABLE(client-only,
684 AC_HELP_STRING([--enable-client-only], [build client (File daemon) only @<:@default=no@:>@]),
686 if test x$enableval = xyes; then
687 build_client_only=yes
693 if test x$build_client_only = xno; then
700 dnl -------------------------------------------
701 dnl director (default on)
702 dnl -------------------------------------------
703 AC_ARG_ENABLE(build-dird,
704 AC_HELP_STRING([--enable-build-dird], [enable building of dird (Director) @<:@default=yes@:>@]),
706 if test x$enableval = xno; then
711 if test x$build_dird = xyes; then
716 DIR_TOOLS="NODIRTOOLS"
721 dnl -------------------------------------------
722 dnl stored (default on)
723 dnl -------------------------------------------
724 AC_ARG_ENABLE(build-stored,
725 AC_HELP_STRING([--enable-build-stored], [enable building of stored (Storage daemon) @<:@default=yes@:>@]),
727 if test x$enableval = xno; then
732 if test x$build_stored = xyes; then
733 STORED_DIR="src/stored"
739 dnl ---------------------------------------------------
740 dnl Check for conio (Bacula readline substitute)(
741 dnl ---------------------------------------------------
742 dnl this allows you to turn it completely off
744 AC_HELP_STRING([--disable-conio], [disable conio support @<:@default=no@:>@]),
746 if test x$enableval = xno; then
753 dnl ---------------------------------------------------
754 dnl Check for IPv6 support
755 dnl ---------------------------------------------------
756 dnl this allows you to turn it completely off
759 AC_HELP_STRING([--enable-ipv6], [enable ipv6 support @<:@default=yes@:>@]),
761 if test x$enableval = xno; then
767 if test x$support_ipv6 = xyes; then
768 AC_TRY_LINK([ #include <sys/types.h>
769 #include <sys/socket.h>
770 #include <netinet/in.h>], [struct sockaddr_in6 s; struct in6_addr t=in6addr_any; int i=AF_INET6; s; t.s6_addr[0] = 0;],
771 [support_ipv6=yes], [support_ipv6=no])
774 if test x$support_ipv6 = xyes; then
775 AC_DEFINE(HAVE_IPV6,1,[Whether to enable IPv6 support])
779 if test x$support_conio = xyes; then
780 AC_CHECK_HEADER(termcap.h,
781 [ AC_CHECK_LIB(termcap, tgetent,
782 [ CONS_LIBS="-ltermcap"
787 AC_DEFINE(HAVE_CONIO, 1, [Set if Bacula conio support enabled])
789 [ AC_CHECK_LIB(ncurses, tgetent,
790 [ CONS_LIBS="-lncurses"
795 AC_DEFINE(HAVE_CONIO, 1, [Set if Bacula conio support enabled])
800 AC_CHECK_HEADERS(curses.h)
801 AC_CHECK_HEADER(term.h,
802 [ AC_CHECK_LIB(curses, tgetent,
803 [ CONS_LIBS="-lcurses"
808 AC_DEFINE(HAVE_CONIO, 1, [Set if Bacula conio support enabled])
811 [ echo " "; echo "Required libraries not found. CONIO turned off ..."; echo " "],
820 dnl ---------------------------------------------------
821 dnl Check for readline support/directory (default off)
822 dnl ---------------------------------------------------
823 dnl this allows you to turn it completely off
824 AC_ARG_ENABLE(readline,
825 AC_HELP_STRING([--disable-readline], [disable readline support @<:@default=yes@:>@]),
827 if test x$enableval = xno; then
835 if test x$support_readline = xyes; then
836 AC_ARG_WITH(readline,
837 AC_HELP_STRING([--with-readline@<:@=DIR@:>@], [specify readline library directory]),
839 case "$with_readline" in
844 if test -f ${with_readline}/readline.h; then
845 CONS_INC="-I${with_readline}"
846 CONS_LDFLAGS="-L$with_readline"
847 elif test -f ${with_readline}/include/readline/readline.h; then
848 CONS_INC="-I${with_readline}/include/readline"
849 CONS_LDFLAGS="-L${with_readline}/lib"
850 with_readline="${with_readline}/include/readline"
852 with_readline="/usr/include/readline"
855 AC_CHECK_HEADER(${with_readline}/readline.h,
857 AC_DEFINE(HAVE_READLINE, 1, [Set to enable readline support])
858 CONS_LIBS="-lreadline -lhistory -ltermcap"
862 echo "readline.h not found. readline turned off ..."
869 dnl check for standard readline library
870 AC_CHECK_HEADER(/usr/include/readline/readline.h,
872 AC_DEFINE(HAVE_READLINE, 1, [Set to enable readline support])
874 CONS_INC="-I/usr/include/readline"
875 CONS_LIBS="-lreadline -ltermcap"
877 dnl Did not find standard library, so try Bacula's default
878 AC_CHECK_HEADER(${TOP_DIR}/depkgs/readline/readline.h,
880 AC_DEFINE(HAVE_READLINE, 1, [Set to enable readline support])
882 CONS_INC="-I${TOP_DIR}/depkgs/readline"
883 CONS_LIBS="-lreadline -lhistory -ltermcap"
884 CONS_LDFLAGS="-L${TOP_DIR}/depkgs/readline"
885 PRTREADLINE_SRC="${TOP_DIR}/depkgs/readline"
888 echo "readline.h not found. readline turned off ..."
902 AC_SUBST(CONS_LDFLAGS)
903 AC_SUBST(READLINE_SRC)
905 dnl Minimal stuff for readline Makefile configuration
910 AC_CHECK_FUNCS(strcasecmp select setenv putenv tcgetattr lstat lchown)
911 AC_CHECK_FUNCS(nanosleep nl_langinfo)
912 AC_CHECK_HEADERS(varargs.h)
914 dnl End of readline/conio stuff
915 dnl -----------------------------------------------------------------------
917 dnl -----------------------------------------------------------------------
918 dnl Check for Python support
920 AC_MSG_CHECKING(for Python support)
922 AC_HELP_STRING([--with-python@<:@=DIR@:>@], [Include Python support. DIR is the Python base install directory, default is to search through a number of common places for the Python files.]),
926 if test "$withval" != "no"; then
927 if test "$withval" = "yes"; then
928 if test -e /usr/bin/python-config ; then
929 PYTHON_INCDIR=`/usr/bin/python-config --includes`
930 PYTHON_LIBS=`/usr/bin/python-config --libs`
932 for python_root in /usr /usr/local /usr/sfw; do
933 for ver in python2.2 python2.3 python2.4 python2.5 python2.6 python3; do
934 if test -f $python_root/include/${ver}/Python.h; then
935 PYTHON_INCDIR=-I$python_root/include/${ver}
936 if test -d $python_root/lib64/${ver}/config; then
937 PYTHON_LIBS="-L$python_root/lib64/${ver}/config -l${ver}"
939 PYTHON_LIBS="-L$python_root/lib/${ver}/config -l${ver}"
946 if test x$PYTHON_INCDIR = x; then
947 if test -f $prefix/include/Python.h; then
948 PYTHON_INCDIR=-I$prefix/include
949 if test -d $prefix/lib64/config; then
950 PYTHON_LIBS="-L$prefix/lib64/config -lpython"
952 PYTHON_LIBS="-L$prefix/lib/config -lpython"
956 AC_MSG_ERROR(Unable to find Python.h in standard locations)
961 if test -e $withval/bin/python-config ; then
962 PYTHON_INCDIR=`$withval/bin/python-config --includes`
963 PYTHON_LIBS=`$withval/bin/python-config --libs`
964 elif test -f $withval/Python.h; then
965 PYTHON_INCDIR=-I$withval
966 PYTHON_LIBS="-L$withval/config -lpython"
967 elif test -f $withval/include/Python.h; then
968 PYTHON_INCDIR=-I$withval/include
969 if test -d $withval/lib64/config; then
970 PYTHON_LIBS="-L$withval/lib64/config -lpython"
972 PYTHON_LIBS="-L$withval/lib/config -lpython"
974 elif test -f $withval/include/python/Python.h; then
975 PYTHON_INCDIR=-I$withval/include/python
976 if test -d $withval/lib64/python/config; then
977 PYTHON_LIBS="-L$withval/lib64/python/config -lpython"
979 PYTHON_LIBS="-L$withval/lib/python/config -lpython"
983 AC_MSG_ERROR(Invalid Python directory $withval - unable to find Python.h under $withval)
987 AC_DEFINE([HAVE_PYTHON], 1)
990 AC_MSG_NOTICE(checking for more Python libs)
991 saved_LIBS="$LIBS"; LIBS=
992 AC_SEARCH_LIBS(shm_open, [rt])
993 AC_CHECK_LIB(util, openpty)
994 PYTHON_LIBS="$PYTHON_LIBS $LIBS"
1003 AC_SUBST(PYTHON_LIBS)
1004 AC_SUBST(PYTHON_INCDIR)
1007 dnl Find where sockets are (especially for Solaris)
1008 dnl Do this before the TCP Wrappers test since tcp wrappers
1009 dnl uses the socket library and some linkers are stupid.
1011 AC_CHECK_FUNC(socket,
1012 AC_MSG_RESULT(using libc's socket),
1013 AC_CHECK_LIB(xnet,socket)
1014 AC_CHECK_LIB(socket,socket)
1015 AC_CHECK_LIB(inet,socket))
1017 dnl -----------------------------------------------------------
1018 dnl Check whether user wants TCP wrappers support (default off)
1019 dnl -----------------------------------------------------------
1022 AC_ARG_WITH(tcp-wrappers,
1023 AC_HELP_STRING([--with-tcp-wrappers@<:@=DIR@:>@], [enable tcpwrappers support]),
1025 if test "x$withval" != "xno" ; then
1027 LIBS="$saved_LIBS -lwrap"
1028 AC_SEARCH_LIBS(nanosleep, [rt])
1029 AC_MSG_CHECKING(for libwrap)
1032 #include <sys/types.h>
1034 int deny_severity = 0;
1035 int allow_severity = 0;
1036 struct request_info *req;
1041 AC_DEFINE(HAVE_LIBWRAP, 1, [Set to enable libwraper support])
1046 LIBS="$saved_LIBS -lwrap -lnsl"
1047 WRAPLIBS="$saved_LIBS -lwrap -lnsl"
1050 #include <sys/types.h>
1052 int deny_severity = 0;
1053 int allow_severity = 0;
1054 struct request_info *req;
1059 AC_DEFINE(HAVE_LIBWRAP, 1, [Set to enable libwraper support])
1064 AC_MSG_ERROR([*** libwrap missing])
1073 dnl -----------------------------------------------------------
1074 dnl Check whether OpenSSL is available
1075 dnl -----------------------------------------------------------
1076 AC_MSG_CHECKING([for OpenSSL])
1077 dnl The following uses quadrigraphs:
1080 AC_ARG_WITH(openssl,
1081 AC_HELP_STRING([--with-openssl@<:@=DIR@:>@], [Include OpenSSL support. DIR is the OpenSSL base]),
1083 with_openssl_directory=${withval}
1087 if test "x$with_openssl_directory" != "xno"; then
1088 OPENSSL_LIBS="-lssl -lcrypto"
1091 if test "x$with_openssl_directory" != "xyes" && test x"${with_openssl_directory}" != "x"; then
1093 # Make sure the $with_openssl_directory also makes sense
1095 if test -d "$with_openssl_directory/lib" -a -d "$with_openssl_directory/include"; then
1096 OPENSSL_LIBS="-L$with_openssl_directory/lib $OPENSSL_LIBS"
1097 OPENSSL_INC="-I$with_openssl_directory/include $OPENSSL_INC"
1101 saved_LIBS="${LIBS}"
1102 saved_CFLAGS="${CFLAGS}"
1103 LIBS="${saved_LIBS} ${OPENSSL_LIBS}"
1104 CFLAGS="${saved_CFLAGS} ${OPENSSL_INC}"
1108 #include <openssl/ssl.h>
1110 CRYPTO_set_id_callback(NULL);
1113 support_crypto="yes"
1121 #include <openssl/evp.h>
1125 ac_cv_openssl_sha2="yes"
1127 ac_cv_openssl_sha2="no"
1131 dnl Solaris disables greater than 128+ bit encryption in their OpenSSL
1132 dnl implementation, presumably for export reasons. If 192bit AES
1133 dnl is available, we assume that we're running with a 'non-export'
1134 dnl openssl library.
1137 #include <openssl/evp.h>
1141 ac_cv_openssl_export="no"
1143 ac_cv_openssl_export="yes"
1147 LIBS="${saved_LIBS}"
1148 CFLAGS="${saved_CFLAGS}"
1150 if test "$support_tls" = "yes"; then
1151 AC_DEFINE(HAVE_OPENSSL, 1, [Define if OpenSSL library is available])
1152 AC_DEFINE(HAVE_TLS, 1, [Define if TLS support should be enabled])
1153 AC_DEFINE(HAVE_CRYPTO, 1, [Define if encryption support should be enabled])
1156 if test "$ac_cv_openssl_sha2" = "yes"; then
1157 AC_DEFINE(HAVE_SHA2, 1, [Define if the SHA-2 family of digest algorithms is available])
1160 if test "$ac_cv_openssl_export" = "yes"; then
1161 AC_DEFINE(HAVE_OPENSSL_EXPORT_LIBRARY, 1, [Define if the OpenSSL library is export-contrained to 128bit ciphers])
1170 if test "$support_tls" = "no"; then
1175 AC_MSG_RESULT([$support_tls])
1176 AC_SUBST(OPENSSL_LIBS)
1177 AC_SUBST(OPENSSL_INC)
1179 dnl -----------------------------------------------------------
1180 dnl dlopen is needed for plugins
1181 dnl -----------------------------------------------------------
1182 AC_SEARCH_LIBS(dlopen, [dl])
1184 dnl ------------------------------------------
1185 dnl Where to place working dir
1186 dnl ------------------------------------------
1187 working_dir=`eval echo ${prefix}/var/bacula/working`
1188 AC_ARG_WITH(working-dir,
1189 AC_HELP_STRING([--with-working-dir=PATH], [specify path of Bacula working directory]),
1191 if test "x$withval" != "xno" ; then
1192 working_dir=$withval
1197 AC_SUBST(working_dir)
1199 dnl ------------------------------------------------------------------
1200 dnl If the user has not set archivedir, we set our default as /tmp
1201 dnl ------------------------------------------------------------------
1203 AC_ARG_WITH(archivedir,
1204 AC_HELP_STRING([--with-archivedir=PATH], [specify path of SD archive directory]),
1206 if test "x$withval" != "xno" ; then
1212 AC_SUBST(archivedir)
1214 dnl ------------------------------------------------------------------
1215 dnl Allow the user to specify the daemon resource name default hostname
1216 dnl ------------------------------------------------------------------
1218 AC_ARG_WITH(basename,
1219 AC_HELP_STRING([--with-basename=RESNAME], [specify base resource name for daemons]),
1221 if test "x$withval" != "xno" ; then
1229 dnl ------------------------------------------------------------------
1230 dnl Allow the user to override the hostname (default = machine hostname)
1231 dnl ------------------------------------------------------------------
1232 hostname=`uname -n | cut -d '.' -f 1`
1233 if test x${hostname} = x ; then
1234 hostname="localhost"
1236 AC_ARG_WITH(hostname,
1237 AC_HELP_STRING([--with-hostname=RESNAME], [specify host name for daemons]),
1239 if test "x$withval" != "xno" ; then
1248 dnl ------------------------------------------
1249 dnl Where to place scriptdir (script files)
1250 dnl ------------------------------------------
1251 scriptdir=`eval echo ${sysconfdir}`
1252 AC_ARG_WITH(scriptdir,
1253 AC_HELP_STRING([--with-scriptdir=PATH], [specify path of Bacula scripts directory]),
1255 if test "x$withval" != "xno" ; then
1264 dnl ------------------------------------------
1265 dnl Where to place bsrdir (bsr files)
1266 dnl ------------------------------------------
1269 AC_HELP_STRING([--with-bsrdir=PATH], [specify path of Bacula bsrs directory]),
1271 if test "x$withval" != "xno" ; then
1279 dnl ------------------------------------------
1280 dnl Where to place logdir (bsr files)
1281 dnl ------------------------------------------
1284 AC_HELP_STRING([--with-logdir=PATH], [specify path of Bacula logs directory]),
1286 if test "x$withval" != "xno" ; then
1295 # ------------------------------------------
1296 # Where to place plugindir (plugin files)
1297 # ------------------------------------------
1298 plugindir=`eval echo ${libdir}`
1299 AC_ARG_WITH(plugindir,
1300 AC_HELP_STRING([--with-plugindir=PATH], [specify path of Bacula plugins directory]),
1302 if test "x$withval" != "xno" ; then
1310 dnl ------------------------------------------
1311 dnl Where to send dump email
1312 dnl ------------------------------------------
1313 dump_email=root@localhost
1314 AC_ARG_WITH(dump-email,
1315 AC_HELP_STRING([--with-dump-email=EMAIL], [dump email address]),
1317 if test "x$withval" != "xno" ; then
1323 AC_SUBST(dump_email)
1325 dnl ------------------------------------------
1326 dnl Where to send job email
1327 dnl ------------------------------------------
1328 job_email=root@localhost
1329 AC_ARG_WITH(job-email,
1330 AC_HELP_STRING([--with-job-email=EMAIL], [job output email address]),
1332 if test "x$withval" != "xno" ; then
1340 dnl ------------------------------------------
1341 dnl Where to find smtp host
1342 dnl ------------------------------------------
1344 AC_ARG_WITH(smtp_host,
1345 AC_HELP_STRING([--with-smtp-host=HOST], [SMTP mail host address]),
1347 if test "x$withval" != "xno" ; then
1355 dnl ------------------------------------
1356 dnl Where to place pid files
1357 dnl ------------------------------------
1359 AC_ARG_WITH(pid-dir,
1360 AC_HELP_STRING([--with-pid-dir=PATH], [specify location of Bacula pid files]),
1362 if test "x$withval" != "xno" ; then
1368 AC_DEFINE_UNQUOTED(_PATH_BACULA_PIDDIR, "$piddir")
1371 dnl ------------------------------------
1372 dnl Where to place subsys "lock file"
1373 dnl ------------------------------------
1374 subsysdir=/var/run/subsys
1375 if test -d /var/run/subsys; then
1376 subsysdir=/var/run/subsys
1377 elif test -d /var/lock/subsys; then
1378 subsysdir=/var/lock/subsys
1380 subsysdir=/var/run/subsys
1382 AC_ARG_WITH(subsys-dir,
1383 AC_HELP_STRING([--with-subsys-dir=PATH], [specify location of Bacula subsys file]),
1385 if test "x$withval" != "xno" ; then
1393 dnl ------------------------------------
1394 dnl Where to start assigning ports
1395 dnl ------------------------------------
1397 AC_ARG_WITH(baseport,
1398 AC_HELP_STRING([--with-baseport=PORT], [specify base port address for daemons]),
1400 if test "x$withval" != "xno" ; then
1407 dir_port=`expr $baseport`
1408 fd_port=`expr $baseport + 1`
1409 sd_port=`expr $fd_port + 1`
1415 dnl ------------------------------------------
1416 dnl Generate passwords
1417 dnl ------------------------------------------
1419 AC_ARG_WITH(dir-password,
1420 AC_HELP_STRING([--with-dir-password=PASSWORD], [specify Director's password]),
1422 if test "x$withval" != "xno" ; then
1423 dir_password=$withval
1428 if test "x$dir_password" = "x" ; then
1429 if test "x$OPENSSL" = "xnone" ; then
1430 key=`autoconf/randpass 33`
1432 key=`openssl rand -base64 33`
1438 AC_ARG_WITH(fd-password,
1439 AC_HELP_STRING([--with-fd-password=PASSWORD], [specify Client's password]),
1441 if test "x$withval" != "xno" ; then
1442 fd_password=$withval
1447 if test "x$fd_password" = "x" ; then
1448 if test "x$OPENSSL" = "xnone" ; then
1449 key=`autoconf/randpass 37`
1451 key=`openssl rand -base64 33`
1457 AC_ARG_WITH(sd-password,
1458 AC_HELP_STRING([--with-sd-password=PASSWORD], [specify Storage daemon's password]),
1460 if test "x$withval" != "xno" ; then
1461 sd_password=$withval
1466 if test "x$sd_password" = "x" ; then
1467 if test "x$OPENSSL" = "xnone" ; then
1468 key=`autoconf/randpass 41`
1470 key=`openssl rand -base64 33`
1476 AC_ARG_WITH(mon-dir-password,
1477 AC_HELP_STRING([--with-mon-dir-password=PASSWORD], [specify Director's password used by the monitor]),
1479 if test "x$withval" != "xno" ; then
1480 mon_dir_password=$withval
1485 if test "x$mon_dir_password" = "x" ; then
1486 if test "x$OPENSSL" = "xnone" ; then
1487 key=`autoconf/randpass 33`
1489 key=`openssl rand -base64 33`
1491 mon_dir_password=$key
1495 AC_ARG_WITH(mon-fd-password,
1496 AC_HELP_STRING([--with-mon-fd-password=PASSWORD], [specify Client's password used by the monitor]),
1498 if test "x$withval" != "xno" ; then
1499 mon_fd_password=$withval
1504 if test "x$mon_fd_password" = "x" ; then
1505 if test "x$OPENSSL" = "xnone" ; then
1506 key=`autoconf/randpass 37`
1508 key=`openssl rand -base64 33`
1510 mon_fd_password=$key
1514 AC_ARG_WITH(mon-sd-password,
1515 AC_HELP_STRING([--with-mon-sd-password=PASSWORD], [specify Storage daemon's password used by the monitor]),
1517 if test "x$withval" != "xno" ; then
1518 mon_sd_password=$withval
1523 if test "x$mon_sd_password" = "x" ; then
1524 if test "x$OPENSSL" = "xnone" ; then
1525 key=`autoconf/randpass 41`
1527 key=`openssl rand -base64 33`
1529 mon_sd_password=$key
1532 AC_SUBST(dir_password)
1533 AC_SUBST(fd_password)
1534 AC_SUBST(sd_password)
1535 AC_SUBST(mon_dir_password)
1536 AC_SUBST(mon_fd_password)
1537 AC_SUBST(mon_sd_password)
1540 dnl Pickup any database name
1543 AC_ARG_WITH(db_name,
1544 AC_HELP_STRING([--with-db-name=DBNAME], [specify database name @<:@default=bacula@:>@]),
1546 if test "x$withval" != "x" ; then
1554 AC_ARG_WITH(db_user,
1555 AC_HELP_STRING([--with-db-user=UNAME], [specify database user @<:@default=bacula@:>@]),
1557 if test "x$withval" != "x" ; then
1565 AC_ARG_WITH(db_password,
1566 AC_HELP_STRING([--with-db-password=PWD], [specify database password @<:@default=*none*@:>@]),
1568 if test "x$withval" != "x" ; then
1569 db_password=$withval
1573 AC_SUBST(db_password)
1576 dnl Pickup a database port
1579 AC_ARG_WITH(db_port,
1580 AC_HELP_STRING([--with-db-port=DBPORT], [specify a database port @<:@default=null@:>@]),
1582 if test "x$withval" != "x" ; then
1590 # Handle users and groups for each daemon
1593 AC_ARG_WITH(dir_user,
1594 AC_HELP_STRING([--with-dir-user=USER], [specify user for Director daemon]),
1596 if test "x$withval" != "x" ; then
1603 AC_ARG_WITH(dir_group,
1604 AC_HELP_STRING([--with-dir-group=GROUP], [specify group for Director daemon]),
1606 if test "x$withval" != "x" ; then
1613 AC_ARG_WITH(sd_user,
1614 AC_HELP_STRING([--with-sd-user=USER], [specify user for Storage daemon]),
1616 if test "x$withval" != "x" ; then
1623 AC_ARG_WITH(sd_group,
1624 AC_HELP_STRING([--with-sd-group=GROUP], [specify group for Storage daemon]),
1626 if test "x$withval" != "x" ; then
1633 AC_ARG_WITH(fd_user,
1634 AC_HELP_STRING([--with-fd-user=USER], [specify user for File daemon]),
1636 if test "x$withval" != "x" ; then
1643 AC_ARG_WITH(fd_group,
1644 AC_HELP_STRING([--with-fd-group=GROUP], [specify group for File daemon]),
1646 if test "x$withval" != "x" ; then
1660 dnl allow setting default executable permissions
1663 AC_ARG_WITH(sbin-perm,
1664 AC_HELP_STRING([--with-sbin-perm=MODE], [specify permissions for sbin binaries @<:@default=0754@:>@]),
1666 if test "x$withval" != "x" ; then
1674 dnl ------------------------------------------------
1675 dnl Bacula check for various SQL database engines
1676 dnl ------------------------------------------------
1678 BA_CHECK_POSTGRESQL_DB
1684 # BA_CHECK_SQLITE_DB
1693 dnl -------------------------------------------
1694 dnl enable batch attribute DB insert (default on)
1695 dnl -------------------------------------------
1696 support_batch_insert=no
1697 A=`test -f $SQL_LIB && nm $SQL_LIB | grep pthread_mutex_lock`
1699 if test $pkg = 0; then
1700 support_batch_insert=yes
1701 AC_ARG_ENABLE(batch-insert,
1702 AC_HELP_STRING([--enable-batch-insert], [enable the DB batch insert code @<:@default=no@:>@]),
1704 if test x$enableval = xno; then
1705 support_batch_insert=no
1707 support_batch_insert=yes
1713 dnl Check if postgresql can support batch mode
1714 if test x$DB_TYPE = xpostgresql; then
1715 AC_CHECK_LIB(pq, PQisthreadsafe, AC_DEFINE(HAVE_PQISTHREADSAFE))
1716 AC_CHECK_LIB(pq, PQputCopyData, AC_DEFINE(HAVE_PQ_COPY))
1717 if test "x$ac_cv_lib_pq_PQisthreadsafe" != "xyes" -o "x$ac_cv_lib_pq_PQputCopyData" != "xyes"
1719 support_batch_insert=no
1723 if test x$DB_TYPE = xdbi; then
1727 dnl Check for batch insert
1728 if test $DB_PROG = postgresql; then
1729 AC_CHECK_LIB(pq, PQisthreadsafe, AC_DEFINE(HAVE_PQISTHREADSAFE))
1730 AC_CHECK_LIB(pq, PQputCopyData, AC_DEFINE(HAVE_PQ_COPY))
1731 test "x$ac_cv_lib_pq_PQisthreadsafe" != "xyes" -o "x$ac_cv_lib_pq_PQputCopyData" != "xyes"
1735 if test $DB_PROG = mysql; then
1736 A=`test -f $SQL_LIB && nm $DB_PROG_LIB | grep pthread_mutex_lock`
1740 if test $DB_PROG = sqlite3; then
1741 A=`test -f $SQL_LIB && nm $DB_PROG_LIB | grep pthread_mutex_lock`
1745 if test $pkg = 0; then
1746 AC_ARG_ENABLE(batch-insert,
1747 AC_HELP_STRING([--enable-batch-insert], [enable the DB batch insert code @<:@default=no@:>@]),
1749 if test x$enableval = xno; then
1750 support_batch_insert=no
1752 support_batch_insert=yes
1758 dnl If dbi was not chosen, let the comment in file
1762 AC_SUBST(uncomment_dbi)
1764 if test $support_batch_insert = yes ; then
1765 AC_DEFINE(HAVE_BATCH_FILE_INSERT, 1, [Set if DB batch insert code enabled])
1768 AC_DEFINE(PROTOTYPES)
1770 dnl --------------------------------------------------------------------------
1771 dnl Supply default CFLAGS, if not specified by `CFLAGS=flags ./configure'
1773 if test -z "$CFLAGS" -o "$CFLAGS" = "-g -O2"; then
1774 if test -z "$CCOPTS"; then
1775 CCOPTS='-g -O2 -Wall'
1783 dnl See if we can use 64 bit file addresses
1784 largefile_support="no"
1789 dnl --------------------------------------------------------------------------
1790 dnl CHECKING FOR HEADER FILES
1791 dnl --------------------------------------------------------------------------
1829 AC_STRUCT_ST_BLKSIZE
1833 dnl --------------------------------------------------------------------------
1834 dnl Check for utime.h structure
1835 dnl --------------------------------------------------------------------------
1836 AC_CACHE_CHECK(for utime.h, ba_cv_header_utime_h,
1840 #include <sys/types.h>
1845 ba_cv_header_utime_h=yes
1847 ba_cv_header_utime_h=no
1852 test $ba_cv_header_utime_h = yes && AC_DEFINE(HAVE_UTIME_H, 1, [Set if utime.h exists])
1854 dnl --------------------------------------------------------------------------
1855 dnl Check for socklen_t
1856 dnl --------------------------------------------------------------------------
1857 AC_CACHE_CHECK(for socklen_t, ba_cv_header_socklen_t,
1861 #include <sys/types.h>
1862 #include <sys/socket.h>
1866 ba_cv_header_socklen_t=yes
1868 ba_cv_header_socklen_t=no
1873 test $ba_cv_header_socklen_t = yes && AC_DEFINE(HAVE_SOCKLEN_T)
1875 dnl --------------------------------------------------------------------------
1876 dnl Check for typeof()
1877 dnl --------------------------------------------------------------------------
1879 AC_CACHE_CHECK(for typeof, ba_cv_have_typeof,
1883 main(){char *a = 0; a = (typeof a)a;}
1885 ba_cv_have_typeof=yes
1887 ba_cv_have_typeof=no
1889 ba_cv_have_typeof=no
1894 test $ba_cv_have_typeof = yes && AC_DEFINE([HAVE_TYPEOF], 1, [Defind to 1 if compiler has typeof])
1899 dnl --------------------------------------------------------------------------
1900 dnl CHECKING FOR FILESYSTEM TYPE
1901 dnl --------------------------------------------------------------------------
1902 AC_MSG_CHECKING(how to get filesystem type)
1904 # The order of these tests is important.
1907 #include <sys/statvfs.h>
1908 #include <sys/fstyp.h>
1910 AC_DEFINE(FSTYPE_STATVFS) fstype=SVR4
1912 if test $fstype = no; then
1915 #include <sys/statfs.h>
1916 #include <sys/fstyp.h>
1918 AC_DEFINE(FSTYPE_USG_STATFS) fstype=SVR3
1921 if test $fstype = no; then
1924 #include <sys/statfs.h>
1925 #include <sys/vmount.h>
1927 AC_DEFINE(FSTYPE_AIX_STATFS) fstype=AIX
1930 if test $fstype = no; then
1935 AC_DEFINE(FSTYPE_MNTENT) fstype=4.3BSD
1938 if test $fstype = no; then
1939 AC_EGREP_HEADER(f_type;, sys/mount.h, AC_DEFINE(FSTYPE_STATFS) fstype=4.4BSD/OSF1)
1941 if test $fstype = no; then
1944 #include <sys/mount.h>
1945 #include <sys/fs_types.h>
1947 AC_DEFINE(FSTYPE_GETMNT) fstype=Ultrix
1950 AC_MSG_RESULT($fstype)
1952 AC_CHECK_HEADER(sys/statvfs.h, [ AC_DEFINE(HAVE_SYS_STATVFS_H,1,[Defines if your system have the sys/statvfs.h header file])] , )
1954 dnl --------------------------------------------------------------------------
1955 dnl CHECKING FOR TYPEDEFS, STRUCTURES, AND COMPILER CHARACTERISTICS.
1956 dnl --------------------------------------------------------------------------
1966 AC_CHECK_TYPE(ino_t, unsigned long)
1967 AC_CHECK_TYPE(dev_t, unsigned long)
1968 AC_CHECK_TYPE(daddr_t, long)
1969 AC_CHECK_TYPE(major_t, int)
1970 AC_CHECK_TYPE(minor_t, int)
1971 AC_CHECK_TYPE(ssize_t, int)
1977 AC_CHECK_SIZEOF(char, 1)
1978 AC_CHECK_SIZEOF(short int, 2)
1979 AC_CHECK_SIZEOF(int, 4)
1980 AC_CHECK_SIZEOF(long int, 4)
1981 AC_CHECK_SIZEOF(long long int, 8)
1982 AC_CHECK_SIZEOF(int *, 4)
1984 dnl Check for sys/types.h types
1985 AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int,
1989 #include <sys/types.h>
1993 ac_cv_have_u_int="yes"
1995 ac_cv_have_u_int="no"
2000 if test "x$ac_cv_have_u_int" = "xyes" ; then
2001 AC_DEFINE(HAVE_U_INT)
2005 AC_CACHE_CHECK([for intmax_t type], ac_cv_have_intmax_t,
2009 #include <sys/types.h>
2013 ac_cv_have_intmax_t="yes"
2021 ac_cv_have_intmax_t="yes"
2023 ac_cv_have_intmax_t="no"
2030 if test "x$ac_cv_have_intmax_t" = "xyes" ; then
2031 AC_DEFINE(HAVE_INTMAX_T)
2035 AC_CACHE_CHECK([for u_intmax_t type], ac_cv_have_u_intmax_t,
2039 #include <sys/types.h>
2041 u_intmax_t a; a = 1;
2043 ac_cv_have_u_intmax_t="yes"
2049 u_intmax_t a; a = 1;
2051 ac_cv_have_u_intmax_t="yes"
2053 ac_cv_have_u_intmax_t="no"
2060 if test "x$ac_cv_have_u_intmax_t" = "xyes" ; then
2061 AC_DEFINE(HAVE_U_INTMAX_T)
2065 AC_CACHE_CHECK([for intXX_t types], ac_cv_have_intxx_t,
2069 #include <sys/types.h>
2071 int8_t a; int16_t b; int32_t c; a = b = c = 1;
2073 ac_cv_have_intxx_t="yes"
2075 ac_cv_have_intxx_t="no"
2080 if test "x$ac_cv_have_intxx_t" = "xyes" ; then
2081 AC_DEFINE(HAVE_INTXX_T)
2085 AC_CACHE_CHECK([for int64_t type], ac_cv_have_int64_t,
2089 #include <sys/types.h>
2093 ac_cv_have_int64_t="yes"
2095 ac_cv_have_int64_t="no"
2100 if test "x$ac_cv_have_int64_t" = "xyes" ; then
2101 AC_DEFINE(HAVE_INT64_T)
2105 AC_CACHE_CHECK([for u_intXX_t types], ac_cv_have_u_intxx_t,
2109 #include <sys/types.h>
2111 u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;
2113 ac_cv_have_u_intxx_t="yes"
2115 ac_cv_have_u_intxx_t="no"
2120 if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then
2121 AC_DEFINE(HAVE_U_INTXX_T)
2125 AC_CACHE_CHECK([for u_int64_t types], ac_cv_have_u_int64_t,
2129 #include <sys/types.h>
2133 ac_cv_have_u_int64_t="yes"
2135 ac_cv_have_u_int64_t="no"
2140 if test "x$ac_cv_have_u_int64_t" = "xyes" ; then
2141 AC_DEFINE(HAVE_U_INT64_T)
2145 if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \
2146 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
2148 AC_MSG_CHECKING([for intXX_t and u_intXX_t types in sys/bitypes.h])
2151 #include <sys/bitypes.h>
2153 int8_t a; int16_t b; int32_t c;
2154 u_int8_t e; u_int16_t f; u_int32_t g;
2155 a = b = c = e = f = g = 1;
2157 AC_DEFINE(HAVE_U_INTXX_T)
2158 AC_DEFINE(HAVE_INTXX_T)
2159 AC_DEFINE(HAVE_SYS_BITYPES_H)
2167 if test -z "$have_u_intxx_t" ; then
2168 AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t,
2172 #include <sys/types.h>
2174 uint8_t a; uint16_t b;
2175 uint32_t c; a = b = c = 1;
2177 ac_cv_have_uintxx_t="yes"
2179 ac_cv_have_uintxx_t="no"
2184 if test "x$ac_cv_have_uintxx_t" = "xyes" ; then
2185 AC_DEFINE(HAVE_UINTXX_T)
2189 if (test -z "$have_u_int64_t" || test -z "$have_int64_t" && \
2190 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
2192 AC_MSG_CHECKING([for int64_t and u_int64_t types in sys/bitypes.h])
2195 #include <sys/bitypes.h>
2197 int64_t a; u_int64_t b;
2200 AC_DEFINE(HAVE_U_INT64_T)
2201 AC_DEFINE(HAVE_INT64_T)
2209 if (test -z "$have_uintxx_t" && \
2210 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
2212 AC_MSG_CHECKING([for uintXX_t types in sys/bitypes.h])
2215 #include <sys/bitypes.h>
2217 uint8_t a; uint16_t b;
2218 uint32_t c; a = b = c = 1;
2220 AC_DEFINE(HAVE_UINTXX_T)
2228 dnl --------------------------------------------------------------------------
2229 dnl CHECKING FOR REQUIRED LIBRARY FUNCTIONS
2230 dnl --------------------------------------------------------------------------
2246 [echo 'configure: cannot find needed function.'; exit 1]
2249 AC_CHECK_FUNCS(fchdir, [AC_DEFINE(HAVE_FCHDIR)])
2250 AC_CHECK_FUNCS(strtoll, [AC_DEFINE(HAVE_STRTOLL)])
2251 AC_CHECK_FUNCS(posix_fadvise)
2252 AC_CHECK_FUNCS(fdatasync)
2254 AC_CHECK_FUNCS(chflags)
2256 AC_CHECK_FUNCS(snprintf vsnprintf gethostid fseeko)
2258 AC_CACHE_CHECK(for va_copy, ba_cv_va_copy,
2263 void use_va_copy(va_list args){va_list args2; va_copy(args2,args); va_end(args2);}
2264 void call_use_va_copy(int junk,...){va_list args; va_start(args,junk); use_va_copy(args); va_end(args);}
2266 call_use_va_copy(1,2,3)
2275 test $ba_cv_va_copy = yes && AC_DEFINE(HAVE_VA_COPY, 1, [Set if va_copy exists])
2277 dnl --------------------------------------------------------------------------
2278 dnl CHECKING FOR THREAD SAFE FUNCTIONS
2279 dnl --------------------------------------------------------------------------
2280 AC_CHECK_FUNCS(localtime_r readdir_r strerror_r gethostbyname_r)
2282 # If resolver functions are not in libc check for -lnsl or -lresolv.
2283 AC_CHECK_FUNC(gethostbyname_r,
2284 AC_MSG_RESULT(using libc's resolver),
2285 AC_CHECK_LIB(nsl,gethostbyname_r)
2286 AC_CHECK_LIB(resolv,gethostbyname_r))
2288 AC_CHECK_FUNCS(inet_pton, [AC_DEFINE(HAVE_INET_PTON)])
2289 AC_CHECK_FUNCS(inet_ntop, [AC_DEFINE(HAVE_INET_NTOP)])
2290 AC_CHECK_FUNCS(gethostbyname2, [AC_DEFINE(HAVE_GETHOSTBYNAME2)])
2292 dnl ----------------------------
2293 dnl check sa_len of sockaddr
2294 dnl ----------------------------
2295 AC_CACHE_CHECK(for struct sockaddr has a sa_len field, ac_cv_struct_sockaddr_sa_len,
2299 #include <sys/socket.h>
2301 struct sockaddr s; s.sa_len;
2303 ac_cv_struct_sockaddr_sa_len=yes
2304 ], [ac_cv_struct_sockaddr_sa_len=no
2310 if test $ac_cv_struct_sockaddr_sa_len = yes; then
2311 AC_DEFINE(HAVE_SA_LEN, 1, [Define if sa_len field exists in struct sockaddr])
2318 AC_FUNC_CLOSEDIR_VOID
2319 AC_FUNC_SETPGRP dnl check for BSD setpgrp.
2320 # AC_FUNC_FNMATCH dnl use local version
2322 AC_CHECK_LIB(intl, gettext, [LIBS="$LIBS -lintl"])
2324 AC_CHECK_LIB(sun, getpwnam)
2326 AC_CHECK_HEADERS(zlib.h)
2327 AC_CHECK_LIB(z, deflate, [FDLIBS="-lz"])
2329 if test x$FDLIBS = x-lz; then
2330 AC_DEFINE(HAVE_LIBZ)
2335 dnl Check for ACL support and libraries
2339 AC_HELP_STRING([--disable-acl], [disable acl support @<:@default=auto@:>@]),
2341 if test x$enableval = xyes; then
2343 elif test x$enableval = xno; then
2350 have_extended_acl=no
2351 if test x$support_acl = xyes -o x$support_acl = xauto; then
2352 AC_CHECK_HEADER(sys/acl.h, [ AC_DEFINE(HAVE_SYS_ACL_H,1,[Defines if your system have the sys/acl.h header file])] , )
2353 AC_CHECK_FUNC(acl_get_file,
2357 AC_CHECK_LIB(acl, acl_get_file,
2360 FDLIBS="-lacl $FDLIBS"
2362 AC_CHECK_LIB(pacl, acl_get_file,
2365 FDLIBS="-lpacl $FDLIBS"
2367 AC_CHECK_LIB(sec, acltotext,
2370 FDLIBS="-lsec $FDLIBS"
2372 AC_CHECK_LIB(sec, acl_totext,
2374 have_extended_acl=yes
2386 if test x$support_acl = xyes -a $have_acl != yes; then
2387 AC_MSG_ERROR([acl support explicitly enabled but no supported acl implementation found,
2388 please either load the acl libraries or rerun configure without --enable-acl])
2390 if test $have_acl = yes; then
2391 AC_DEFINE([HAVE_ACL],1,[Normal acl support])
2394 if test $have_extended_acl = yes; then
2395 AC_DEFINE([HAVE_EXTENDED_ACL],1,[Extended acl support])
2401 dnl Check for XATTR support
2404 AC_ARG_ENABLE(xattr,
2405 AC_HELP_STRING([--disable-xattr], [disable xattr support @<:@default=auto@:>@]),
2407 if test x$enableval = xyes; then
2409 elif test x$enableval = xno; then
2416 if test x$support_xattr = xyes -o x$support_xattr = xauto; then
2418 dnl First check for *BSD support
2420 AC_CHECK_HEADER(sys/extattr.h, [ AC_DEFINE(HAVE_SYS_EXTATTR_H,1,[Defines if your system have the sys/extattr.h header file])] , )
2421 AC_CHECK_HEADER(libutil.h, [ AC_DEFINE(HAVE_LIBUTIL_H,1,[Defines if your system have the libutil.h header file])] , )
2422 AC_CHECK_FUNCS(extattr_get_link extattr_set_link extattr_list_link,
2425 AC_DEFINE([HAVE_EXTATTR_GET_LINK],1,[Define to 1 if you have the 'extattr_get_link' function.])
2426 AC_DEFINE([HAVE_EXTATTR_SET_LINK],1,[Define to 1 if you have the 'extattr_set_link' function.])
2427 AC_DEFINE([HAVE_EXTATTR_LIST_LINK],1,[Define to 1 if you have the 'extattr_list_link' function.])
2431 if test $have_xattr = no; then
2432 AC_CHECK_FUNCS(extattr_get_file extattr_set_file extattr_list_file,
2435 AC_DEFINE([HAVE_EXTATTR_GET_FILE],1,[Define to 1 if you have the 'extattr_get_file' function.])
2436 AC_DEFINE([HAVE_EXTATTR_SET_FILE],1,[Define to 1 if you have the 'extattr_set_file' function.])
2437 AC_DEFINE([HAVE_EXTATTR_LIST_FILE],1,[Define to 1 if you have the 'extattr_list_file' function.])
2442 if test $have_xattr = yes; then
2443 have_extattr_string_in_libc=no
2444 AC_CHECK_FUNCS(extattr_namespace_to_string extattr_string_to_namespace,
2446 have_extattr_string_in_libc=yes
2447 AC_DEFINE([HAVE_EXTATTR_NAMESPACE_TO_STRING],1,[Define to 1 if you have the 'extattr_namespace_to_string' function.])
2448 AC_DEFINE([HAVE_EXTATTR_STRING_TO_NAMESPACE],1,[Define to 1 if you have the 'extattr_string_to_namespace' function.])
2453 dnl If extattr_namespace_to_string and extattr_string_to_namespace are not in libc see if they are in libutil
2455 if test $have_extattr_string_in_libc = no; then
2456 AC_CHECK_LIB(util, extattr_namespace_to_string extattr_string_to_namespace,
2458 AC_DEFINE([HAVE_EXTATTR_NAMESPACE_TO_STRING],1,[Define to 1 if you have the 'extattr_namespace_to_string' function.])
2459 AC_DEFINE([HAVE_EXTATTR_STRING_TO_NAMESPACE],1,[Define to 1 if you have the 'extattr_string_to_namespace' function.])
2460 FDLIBS="-lutil $FDLIBS"
2467 dnl If we failed to find *BSD support try the Linux or OSX implementation of xattr
2469 if test $have_xattr = no; then
2470 AC_CHECK_HEADER(sys/xattr.h, [ AC_DEFINE(HAVE_SYS_XATTR_H,1,[Defines if your system have the sys/xattr.h header file])] , )
2471 AC_CHECK_FUNCS(llistxattr lgetxattr lsetxattr,
2474 AC_DEFINE([HAVE_LLISTXATTR],1,[Define to 1 if you have the 'llistxattr' function.])
2475 AC_DEFINE([HAVE_LGETXATTR],1,[Define to 1 if you have the 'lgetxattr' function.])
2476 AC_DEFINE([HAVE_LSETXATTR],1,[Define to 1 if you have the 'lsetxattr' function.])
2480 if test $have_xattr = no; then
2481 AC_CHECK_FUNCS(listxattr getxattr setxattr,
2484 AC_DEFINE([HAVE_LISTXATTR],1,[Define to 1 if you have the 'listxattr' function.])
2485 AC_DEFINE([HAVE_GETXATTR],1,[Define to 1 if you have the 'getxattr' function.])
2486 AC_DEFINE([HAVE_SETXATTR],1,[Define to 1 if you have the 'setxattr' function.])
2493 dnl If we failed to find *BSD support and the Linux or OSX implementation of xattr try the Solaris xattr implementation
2495 if test $have_xattr = no; then
2496 AC_CHECK_HEADER(sys/attr.h, [ AC_DEFINE(HAVE_SYS_ATTR_H,1,[Defines if your system have the sys/attr.h header file])] , )
2497 AC_CHECK_HEADER(sys/nvpair.h, [ AC_DEFINE(HAVE_SYS_NVPAIR_H,1,[Defines if your system have the sys/nvpair.h header file])] , )
2498 AC_CHECK_HEADER(attr.h, [ AC_DEFINE(HAVE_ATTR_H,1,[Defines if your system have the attr.h header file])] , )
2500 AC_CHECK_FUNCS(openat fstatat unlinkat fchownat futimesat,
2503 AC_DEFINE([HAVE_OPENAT],1,[Define to 1 if you have the 'openat' function.])
2504 AC_DEFINE([HAVE_FSTATAT],1,[Define to 1 if you have the 'fstatat' function.])
2505 AC_DEFINE([HAVE_UNLINKAT],1,[Define to 1 if you have the 'unlinkat' function.])
2506 AC_DEFINE([HAVE_FCHOWNAT],1,[Define to 1 if you have the 'fchownat' function.])
2507 AC_DEFINE([HAVE_FUTIMESAT],1,[Define to 1 if you have the 'futimesat' function.])
2511 if test $have_xattr = yes; then
2512 AC_CHECK_LIB(nvpair, nvlist_next_nvpair,
2514 AC_DEFINE([HAVE_NVLIST_NEXT_NVPAIR],1,[Define to 1 if you have the 'nvlist_next_nvpair' function.])
2515 FDLIBS="-lnvpair $FDLIBS"
2521 if test x$support_xattr = xyes -a $have_xattr != yes; then
2522 AC_MSG_ERROR([xattr support explicitly enabled but no supported xattr implementation found,
2523 please either load the xattr libraries or rerun configure without --enable-xattr])
2525 if test $have_xattr = yes; then
2526 AC_DEFINE([HAVE_XATTR],1,[Extended Attributes support])
2532 dnl Check for pthread libraries
2535 AC_CHECK_LIB(pthread, pthread_create, PTHREAD_LIB="-lpthread",
2537 AC_CHECK_LIB(pthreads, pthread_create, PTHREAD_LIB="-lpthreads",
2539 AC_CHECK_LIB(c_r, pthread_create, PTHREAD_LIB="-lc_r",
2541 AC_CHECK_FUNC(pthread_create)
2550 dnl Check for headers, functions and libraries required to support
2551 dnl keeping readall capabilities
2553 AC_CHECK_HEADERS(sys/prctl.h sys/capability.h)
2554 AC_CHECK_FUNCS(prctl setreuid)
2555 AC_CHECK_LIB([cap], [cap_set_proc], [CAP_LIBS="-lcap"], [CAP_LIBS=])
2556 if test x$CAP_LIBS = x-lcap; then
2557 AC_DEFINE(HAVE_LIBCAP, 1, [Define if you have libcap])
2566 if test x$have_gcc = xyes ; then
2567 CPPFLAGS="$CPPFLAGS -fno-strict-aliasing -fno-exceptions -fno-rtti"
2568 CFLAGS="$CFLAGS -fno-strict-aliasing -fno-exceptions -fno-rtti"
2570 LDFLAGS=${LDFLAGS--O}
2571 DB_LIBS="${SQL_LFLAGS}"
2572 CPPFLAGS="$CPPFLAGS"
2585 AC_SUBST(X_EXTRA_LIBS)
2590 dnl extra configurable objects
2601 dnl Finally we set appropriate distribution specific
2602 dnl variables and defaults
2604 dnl PFILES are platform specific files
2605 PFILES="platforms/Makefile"
2610 hostname=`uname -n | cut -d '.' -f 1`
2611 if test x${hostname} = x ; then
2612 hostname="localhost"
2614 dnl Make sure hostname is resolved
2615 ping -c 1 $hostname 2>/dev/null 1>/dev/null
2616 if test ! $? = 0; then
2617 hostname="localhost"
2623 PSCMD="ps -e -o pid,comm"
2625 platforms/aix/Makefile"
2626 TAPEDRIVE="/dev/rmt0.1"
2630 PTHREAD_LIB="-lpthread -lexc"
2631 if test "${CC}" = "gcc" ; then
2638 TAPEDRIVE="/dev/nrmt0"
2641 DISTVER=`uname -a |awk '{print $3}'`
2642 TAPEDRIVE="/dev/nrmt0"
2643 PTHREAD_LIB="-pthread"
2644 CFLAGS="${CFLAGS} -pthread"
2645 PSCMD="ps -ax -o pid,command"
2649 platforms/bsdi/Makefile \
2650 platforms/bsdi/bacula-fd \
2651 platforms/bsdi/bacula-sd \
2652 platforms/bsdi/bacula-dir"
2653 largefile_support="yes"
2656 DISTVER=`uname -a |awk '{print $3}'`
2657 TAPEDRIVE="/dev/nrst0"
2660 WLDFLAGS="-mwindows"
2664 TAPEDRIVE="/dev/nst0"
2665 PSCMD="ps -e -o pid,command"
2668 platforms/darwin/Makefile"
2672 TAPEDRIVE="/dev/nst0"
2673 PSCMD="ps -e -o pid,command"
2676 platforms/osx/Makefile"
2679 if `test -f /etc/apt/sources.list && grep -q ubuntu /etc/apt/sources.list`; then
2682 DISTVER=`cat /etc/debian_version`
2683 if test -f /etc/lsb-release ; then
2685 if test "x$DISTRIB_ID" != "x" ; then
2686 DISTNAME=$DISTRIB_ID
2688 if test "x$DISTRIB_RELEASE" != "x" ; then
2689 DISTVER=$DISTRIB_RELEASE
2692 if test "$DISTNAME" = "Ubuntu" ; then
2695 TAPEDRIVE="/dev/nst0"
2696 PSCMD="ps -e -o pid,command"
2697 if test "$DISTNAME" = "ubuntu" ; then
2699 platforms/ubuntu/Makefile \
2700 platforms/ubuntu/bacula-fd \
2701 platforms/ubuntu/bacula-sd \
2702 platforms/ubuntu/bacula-dir"
2705 platforms/debian/Makefile \
2706 platforms/debian/bacula-fd \
2707 platforms/debian/bacula-sd \
2708 platforms/debian/bacula-dir"
2712 DISTVER=`uname -a |awk '{print $3}'`
2713 VER=`echo $DISTVER | cut -c 1`
2714 if test x$VER = x4 ; then
2715 PTHREAD_LIB="${PTHREAD_LIBS:--pthread}"
2716 CFLAGS="${CFLAGS} ${PTHREAD_CFLAGS:--pthread}"
2720 TAPEDRIVE="/dev/nrsa0"
2721 PSCMD="ps -ax -o pid,command"
2723 platforms/freebsd/Makefile \
2724 platforms/freebsd/bacula-fd \
2725 platforms/freebsd/bacula-sd \
2726 platforms/freebsd/bacula-dir"
2727 largefile_support="yes"
2730 PSCMD="UNIX95=1; ps -e -o pid,comm"
2731 CFLAGS="${CFLAGS} -D_XOPEN_SOURCE_EXTENDED=1"
2733 TAPEDRIVE="/dev/rmt/0hnb"
2734 PTHREAD_LIB="-lpthread"
2735 AC_DEFINE([_INCLUDE_LONGLONG])
2739 TAPEDRIVE="/dev/rmt/0cbn"
2740 PSCMD="ps -e -o pid,comm"
2742 platforms/irix/Makefile \
2743 platforms/irix/bacula-fd \
2744 platforms/irix/bacula-sd \
2745 platforms/irix/bacula-dir"
2748 DISTVER=`uname -a |awk '{print $3}'`
2751 TAPEDRIVE="/dev/nrst0"
2752 PSCMD="ps -ax -o pid,command"
2753 PTHREAD_LIB="-pthread"
2754 CFLAGS="${CFLAGS} -pthread"
2757 DISTVER=`uname -a |awk '{print $3}'`
2760 TAPEDRIVE="/dev/nrst0"
2761 PSCMD="ps -ax -o pid,command"
2762 PTHREAD_LIB="-pthread"
2763 CFLAGS="${CFLAGS} -pthread"
2765 platforms/openbsd/Makefile \
2766 platforms/openbsd/bacula-fd \
2767 platforms/openbsd/bacula-sd \
2768 platforms/openbsd/bacula-dir"
2771 if test -f /etc/whitebox-release ; then
2772 f=/etc/whitebox-release
2774 f=/etc/redhat-release
2776 if test `cat $f | grep release |\
2777 cut -f 3 -d ' '`x = "Enterprise"x ; then
2778 DISTVER="Enterprise "`cat $f | grep release |\
2781 DISTVER=`cat /etc/redhat-release | grep release |\
2784 TAPEDRIVE="/dev/nst0"
2785 PSCMD="ps -e -o pid,command"
2787 platforms/redhat/Makefile \
2788 platforms/redhat/bacula-fd \
2789 platforms/redhat/bacula-sd \
2790 platforms/redhat/bacula-dir
2794 DISTVER=`cat /etc/mandrake-release | grep release |\
2796 TAPEDRIVE="/dev/nst0"
2797 PSCMD="ps -e -o pid,command"
2799 platforms/mandrake/Makefile \
2800 platforms/mandrake/bacula-fd \
2801 platforms/mandrake/bacula-sd \
2802 platforms/mandrake/bacula-dir \
2803 platforms/mandrake/bacula.spec \
2807 DISTVER=`awk '/version / {print $5}' < /etc/gentoo-release`
2808 TAPEDRIVE="/dev/nst0"
2809 PSCMD="ps -e -o pid,command"
2811 platforms/gentoo/Makefile \
2812 platforms/gentoo/bacula-init \
2813 platforms/gentoo/bacula-fd \
2814 platforms/gentoo/bacula-sd \
2815 platforms/gentoo/bacula-dir"
2818 DISTVER=`cat /etc/slackware-version`
2819 TAPEDRIVE="/dev/nst0"
2820 PSCMD="ps -e -o pid,command"
2822 platforms/slackware/Makefile \
2823 platforms/slackware/rc.bacula-fd \
2824 platforms/slackware/rc.bacula-sd \
2825 platforms/slackware/rc.bacula-dir\
2826 platforms/slackware/functions.bacula"
2830 TAPEDRIVE="/dev/rmt/0cbn"
2831 PSCMD="ps -e -o pid,comm"
2833 platforms/solaris/Makefile \
2834 platforms/solaris/bacula-fd \
2835 platforms/solaris/bacula-sd \
2836 platforms/solaris/bacula-dir"
2837 if test x$DISTVER = x5.6 ; then
2838 AC_DEFINE(HAVE_OLD_SOCKOPT)
2840 LIBS="$LIBS -lresolv"
2843 DISTVER=`cat /etc/SuSE-release |grep VERSION|\
2845 TAPEDRIVE="/dev/nst0"
2846 PSCMD="ps -e -o pid,command"
2848 platforms/suse/Makefile \
2849 platforms/suse/bacula-fd \
2850 platforms/suse/bacula-sd \
2851 platforms/suse/bacula-dir \
2852 platforms/suse/bacula \
2853 platforms/suse/bacula.spec"
2858 TAPEDRIVE="/dev/nst0"
2859 PSCMD="ps -e -o pid,command"
2861 platforms/suse/Makefile \
2862 platforms/suse/bacula-fd \
2863 platforms/suse/bacula-sd \
2864 platforms/suse/bacula-dir"
2868 TAPEDRIVE="/dev/nst0"
2871 echo " === Something went wrong. Unknown DISTNAME $DISTNAME ==="
2877 LIBS="$PTHREAD_LIB $LIBS"
2879 AC_DEFINE_UNQUOTED(lld, "$lld")
2880 AC_DEFINE_UNQUOTED(llu, "$llu")
2888 dnl common parts of the Makefile
2889 MCOMMON=./autoconf/Make.common
2890 AC_SUBST_FILE(MCOMMON)
2893 if test "x${subsysdir}" = "x${sbindir}" ; then
2896 echo "You have set both --sbindir and --with-subsys-dir"
2897 echo " equal to: ${subsysdir} "
2898 echo "This is not permitted. Please reconfigure."
2900 echo "Aborting configuration ..."
2906 AC_OUTPUT([autoconf/Make.common \
2909 scripts/startmysql \
2911 scripts/btraceback \
2917 scripts/bacula-ctl-dir \
2918 scripts/bacula-ctl-fd \
2919 scripts/bacula-ctl-sd \
2920 scripts/devel_bacula \
2923 scripts/bacula.desktop.gnome1 \
2924 scripts/bacula.desktop.gnome2 \
2925 scripts/bacula.desktop.gnome1.consolehelper \
2926 scripts/bacula.desktop.gnome2.consolehelper \
2927 scripts/bacula.desktop.gnome1.xsu \
2928 scripts/bacula.desktop.gnome2.xsu \
2929 scripts/bgnome-console.console_apps \
2930 scripts/mtx-changer \
2931 scripts/disk-changer \
2932 scripts/dvd-handler \
2933 scripts/dvd-simulator \
2934 scripts/bacula-tray-monitor.desktop \
2935 scripts/logwatch/Makefile \
2936 scripts/logwatch/logfile.bacula.conf \
2937 scripts/wxconsole.console_apps \
2938 scripts/wxconsole.desktop.consolehelper \
2939 scripts/wxconsole.desktop.xsu \
2940 scripts/bat.desktop \
2941 scripts/bat.desktop.xsu \
2942 scripts/bat.desktop.consolehelper \
2943 scripts/bat.console_apps \
2946 src/console/Makefile \
2947 src/console/bconsole.conf \
2948 src/qt-console/bat.conf \
2949 src/qt-console/bat.pro \
2950 src/qt-console/bat.pro.mingw32 \
2951 src/qt-console/install_conf_file \
2952 src/wx-console/Makefile \
2953 src/wx-console/bwx-console.conf \
2954 src/tray-monitor/Makefile \
2955 src/tray-monitor/tray-monitor.conf \
2957 src/dird/bacula-dir.conf \
2959 src/stored/Makefile \
2960 src/stored/bacula-sd.conf \
2961 src/filed/Makefile \
2962 src/filed/bacula-fd.conf \
2964 src/cats/make_catalog_backup \
2965 src/cats/delete_catalog_backup \
2966 src/cats/create_postgresql_database \
2967 src/cats/update_postgresql_tables \
2968 src/cats/make_postgresql_tables \
2969 src/cats/grant_postgresql_privileges \
2970 src/cats/drop_postgresql_tables \
2971 src/cats/drop_postgresql_database \
2972 src/cats/create_mysql_database \
2973 src/cats/update_mysql_tables \
2974 src/cats/make_mysql_tables \
2975 src/cats/grant_mysql_privileges \
2976 src/cats/drop_mysql_tables \
2977 src/cats/drop_mysql_database \
2978 src/cats/create_sqlite3_database \
2979 src/cats/update_sqlite3_tables \
2980 src/cats/make_sqlite3_tables \
2981 src/cats/grant_sqlite3_privileges \
2982 src/cats/drop_sqlite3_tables \
2983 src/cats/drop_sqlite3_database \
2986 src/cats/create_bdb_database \
2987 src/cats/update_bdb_tables \
2988 src/cats/make_bdb_tables \
2989 src/cats/grant_bdb_privileges \
2990 src/cats/drop_bdb_tables \
2991 src/cats/drop_bdb_database \
2992 src/cats/create_bacula_database \
2993 src/cats/update_bacula_tables \
2994 src/cats/grant_bacula_privileges \
2995 src/cats/make_bacula_tables \
2996 src/cats/drop_bacula_tables \
2997 src/cats/drop_bacula_database \
2998 src/findlib/Makefile \
2999 src/tools/Makefile \
3000 src/plugins/fd/Makefile \
3001 src/plugins/sd/Makefile \
3002 src/plugins/dir/Makefile \
3003 src/win32/Makefile.inc \
3005 updatedb/update_mysql_tables_9_to_10 \
3006 updatedb/update_sqlite3_tables_9_to_10 \
3007 updatedb/update_postgresql_tables_9_to_10 \
3008 updatedb/update_mysql_tables_10_to_11 \
3009 updatedb/update_sqlite3_tables_10_to_11 \
3010 updatedb/update_postgresql_tables_10_to_11 \
3011 examples/nagios/check_bacula/Makefile \
3016 if test "${support_bat}" = "yes" ; then
3017 if test "x$QMAKE" = "xnone" && test "x$QMAKEQT4" = "xnone"; then
3018 AC_MSG_ERROR([Could not find qmake or qmake-qt4 in $PATH. Check your Qt installation])
3023 if test "x$QMAKEQT4" != "xnone"; then
3028 echo "Creating bat Makefile"
3037 dnl if CC is gcc, we can rebuild the dependencies (since the depend rule
3038 dnl requires gcc). If it's not, don't rebuild dependencies
3040 if test X"$GCC" = "Xyes" ; then
3041 echo "Doing make of dependencies"
3042 ${MAKE:-make} depend
3046 chmod 755 install_conf_file build-depkgs-qt-console
3050 chmod 755 startmysql stopmysql bacula startit stopit btraceback mtx-changer
3051 chmod 755 dvd-handler dvd-simulator breload make_catalog_backup.pl
3052 chmod 755 bconsole gconsole mtx-changer devel_bacula logrotate
3056 chmod 755 $c/update_mysql_tables_10_to_11 $c/update_sqlite3_tables_10_to_11
3057 chmod 755 $c/update_postgresql_tables_10_to_11
3061 chmod 755 $c/create_bacula_database $c/update_bacula_tables $c/make_bacula_tables
3062 chmod 755 $c/grant_bacula_privileges $c/drop_bacula_tables $c/drop_bacula_database
3064 chmod 755 $c/create_bdb_database $c/update_bdb_tables $c/make_bdb_tables
3065 chmod 755 $c/grant_bdb_privileges $c/drop_bdb_tables $c/drop_bdb_database
3067 chmod 755 $c/create_mysql_database $c/update_mysql_tables $c/make_mysql_tables
3068 chmod 755 $c/grant_mysql_privileges $c/drop_mysql_tables $c/drop_mysql_database
3070 chmod 755 $c/create_sqlite3_database $c/update_sqlite3_tables $c/make_sqlite3_tables
3071 chmod 755 $c/grant_sqlite3_privileges $c/drop_sqlite3_tables $c/drop_sqlite3_database
3073 chmod 755 $c/create_postgresql_database $c/update_postgresql_tables $c/make_postgresql_tables
3074 chmod 755 $c/grant_postgresql_privileges $c/drop_postgresql_tables $c/drop_postgresql_database
3076 chmod 755 $c/make_catalog_backup $c/delete_catalog_backup
3080 chmod 755 src/win32/build-depkgs-mingw32
3082 if test "x$ac_cv_sys_largefile_CFLAGS" != "xno" ; then
3083 largefile_support="yes"
3086 dnl Only try to find out the version number of the compiler when we know its some kind of GCC compiler
3087 if test X"$GCC" = "Xyes" ; then
3089 dnl A whole lot of hand springs to get the compiler version.
3090 dnl This is because gcc changed the output in version 3.0
3092 CCVERSION=`${CC} --version | tr '\n' ' ' | cut -f 3 -d ' '`
3093 if test "x${CCVERSION}" = "x" ; then
3094 CCVERSION=`${CC} --version | tr '\n' ' ' | cut -f 1 -d ' '`
3096 CXXVERSION=`${CXX} --version | tr '\n' ' ' | cut -f 3 -d ' '`
3097 if test x"${CXXVERSION}" = x ; then
3098 CXXVERSION=`${CXX} --version | tr '\n' ' ' | cut -f 1 -d ' '`
3102 # clean up any old junk
3108 if test "x${db_type}" = "xInternal" ; then
3111 echo "You have not specified either --enable-client-only or one of the"
3112 echo " supported databases: MySQL, PostgreSQL, SQLite3, SQLite or DBI."
3113 echo " This is not permitted. Please reconfigure."
3115 echo "Aborting the configuration ..."
3122 Configuration on `date`:
3124 Host: ${host}${post_host} -- ${DISTNAME} ${DISTVER}
3125 Bacula version: ${BACULA} ${VERSION} (${DATE})
3126 Source code location: ${srcdir}
3127 Install binaries: ${sbindir}
3128 Install libraries: ${libdir}
3129 Install config files: ${sysconfdir}
3130 Scripts directory: ${scriptdir}
3131 Archive directory: ${archivedir}
3132 Working directory: ${working_dir}
3133 PID directory: ${piddir}
3134 Subsys directory: ${subsysdir}
3135 Man directory: ${mandir}
3136 Data directory: ${datarootdir}
3137 Plugin directory: ${plugindir}
3138 C Compiler: ${CC} ${CCVERSION}
3139 C++ Compiler: ${CXX} ${CXXVERSION}
3140 Compiler flags: ${WCFLAGS} ${CFLAGS}
3141 Linker flags: ${WLDFLAGS} ${LDFLAGS}
3143 Statically Linked Tools: ${support_static_tools}
3144 Statically Linked FD: ${support_static_fd}
3145 Statically Linked SD: ${support_static_sd}
3146 Statically Linked DIR: ${support_static_dir}
3147 Statically Linked CONS: ${support_static_cons}
3148 Database type: ${db_type}
3149 Database port: ${db_port}
3150 Database lib: ${DB_LIBS}
3151 Database name: ${db_name}
3152 Database user: ${db_user}
3154 Job Output Email: ${job_email}
3155 Traceback Email: ${dump_email}
3156 SMTP Host Address: ${smtp_host}
3158 Director Port: ${dir_port}
3159 File daemon Port: ${fd_port}
3160 Storage daemon Port: ${sd_port}
3162 Director User: ${dir_user}
3163 Director Group: ${dir_group}
3164 Storage Daemon User: ${sd_user}
3165 Storage DaemonGroup: ${sd_group}
3166 File Daemon User: ${fd_user}
3167 File Daemon Group: ${fd_group}
3169 SQL binaries Directory ${SQL_BINDIR}
3171 Large file support: $largefile_support
3172 Bacula conio support: ${got_conio} ${CONS_LIBS}
3173 readline support: ${got_readline} ${PRTREADLINE_SRC}
3174 TCP Wrappers support: ${TCPW_MSG} ${WRAPLIBS}
3175 TLS support: ${support_tls}
3176 Encryption support: ${support_crypto}
3177 ZLIB support: ${have_zlib}
3178 enable-smartalloc: ${support_smartalloc}
3179 enable-lockmgr: ${support_lockmgr}
3180 bat support: ${support_bat} ${QWT_LDFLAGS}
3181 enable-gnome: ${support_gnome} ${gnome_version}
3182 enable-bwx-console: ${support_wx_console} ${wx_version}
3183 enable-tray-monitor: ${support_tray_monitor}
3184 client-only: ${build_client_only}
3185 build-dird: ${build_dird}
3186 build-stored: ${build_stored}
3187 ACL support: ${have_acl}
3188 XATTR support: ${have_xattr}
3189 Python support: ${support_python} ${PYTHON_LIBS}
3190 Batch insert enabled: ${support_batch_insert}