]> git.sur5r.net Git - bacula/bacula/blob - bacula/autoconf/configure.in
b6dc8b419db0c21b0e837426022d23a3885bff63
[bacula/bacula] / bacula / autoconf / configure.in
1 lal#
2 dnl#
3 dnl# Process this file with autoconf to produce a configure script.
4 dnl#
5 AC_INIT(src/version.h)
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 AC_CONFIG_HEADER(src/config.h:autoconf/config.h.in)
13
14 dnl require a recent autoconf
15 AC_PREREQ(2.13)
16
17
18 dnl search for true and false programs.
19 AC_PATH_PROGS(TRUEPRG, true, :)
20 AC_PATH_PROGS(FALSEPRG, false, :)
21
22 #AC_CANONICAL_HOST
23
24 dnl bacula version
25 VERSION=`sed -n -e 's/^.*VERSION.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
26 DATE=`sed -n -e 's/^.*[ \t]*BDATE.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
27 LSMDATE=`sed -n -e 's/^.*LSMDATE.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
28 AC_SUBST(VERSION)dnl 
29 AC_SUBST(DATE)dnl 
30 AC_SUBST(LSMDATE)dnl 
31 echo "configuring for bacula $VERSION ($DATE)"
32
33
34 dnl -------------------------------------------------------
35 dnl# Check for compiler.
36 dnl ------------------------------------------------------
37
38 AC_PROG_CC
39 AC_PROG_CXX
40 AC_PROG_CC_C_O                  dnl Determine if C compiler support -c -o.
41 AC_PROG_GCC_TRADITIONAL         dnl Determine if ioctl() need -traditional.
42
43 if test "x$CC" = xgcc
44 then
45    AC_DEFINE(HAVE_GCC)
46 fi
47
48 dnl -------------------------------------------------------
49 dnl# Check for programs.
50 dnl ------------------------------------------------------
51 AC_PROG_INSTALL
52 AC_PROG_RANLIB
53 AC_PATH_PROG(MV, mv, mv)
54 AC_PATH_PROG(RM, rm, rm)
55 AC_PATH_PROG(CP, cp, cp)
56 AC_PATH_PROG(SED, sed, sed)
57 AC_PATH_PROG(AWK, awk, awk)
58 AC_PATH_PROG(ECHO, echo, echo)
59 AC_PATH_PROG(CMP, cmp, cmp)
60 AC_PATH_PROG(TBL, tbl, tbl)
61 AC_PATH_PROG(AR, ar, ar)
62 dnl AC_PATH_PROG(RANLIB, ranlib, ranlib)
63 AC_PATH_PROG(OPENSSL, openssl, none)
64 AC_PATH_PROG(MTX, mtx, mtx)
65 AC_PATH_PROG(PKGCONFIG, pkg-config, pkg-config)
66 AC_PATH_PROG(WXCONFIG, wx-config, wx-config)
67 AC_PATH_PROG(CDRECORD, cdrecord) 
68
69 test -n "$ARFLAG" || ARFLAGS="cr"
70 AC_SUBST(ARFLAGS)
71
72 MAKE_SHELL=/bin/sh
73 AC_SUBST(MAKE_SHELL)
74
75 AC_SUBST(LOCAL_LIBS)
76 AC_SUBST(LOCAL_CFLAGS)
77 AC_SUBST(LOCAL_LDFLAGS)
78 AC_SUBST(LOCAL_DEFS)
79
80
81
82 dnl --------------------------------------------------
83 dnl Bacula OP Sys determination (see aclocal.m4)
84 dnl --------------------------------------------------
85 BA_CHECK_OPSYS
86
87 # -----------------------------------------------------------
88 dnl Bacula OPSys Distribution determination (see aclocal.m4)
89 # ----------------------------------------------------------
90 BA_CHECK_OPSYS_DISTNAME
91
92 # -----------------------------------------------------------
93 dnl Check for gnome stuff for gnome-console
94 # ----------------------------------------------------------
95 AM_ACLOCAL_INCLUDE(gnome-macros)
96
97 # ------------------------------------------------------------------
98 #  If the user has not set --prefix, we set our default to nothing.
99 #  In this case, if the user has not set --sysconfdir, we set it
100 #  to the package default of /etc/bacula.  If either --prefix or
101 #  --sysconfdir is set, we leave sysconfdir alone except to eval it.
102 # ------------------------------------------------------------------
103 if test x${prefix} = xNONE ; then
104     if test `eval echo ${sysconfdir}` = NONE/etc ; then
105         sysconfdir=/etc/bacula
106     fi
107     prefix=
108 fi
109 sysconfdir=`eval echo ${sysconfdir}`
110
111 # -------------------------------------------------------------------------
112 #  If the user has not set --exec-prefix, we default to ${prefix}
113 # -------------------------------------------------------------------------
114 if test x${exec_prefix} = xNONE ; then
115     exec_prefix=${prefix}
116 fi
117
118 # ------------------------------------------------------------------
119 # If the user has not set --sbindir, we set our default as /sbin
120 # ------------------------------------------------------------------
121 if test x$sbindir = x'${exec_prefix}/sbin' ; then
122     sbindir=${exec_prefix}/sbin
123 fi
124 sbindir=`eval echo ${sbindir}`
125                       
126 # ------------------------------------------------------------------
127 # All list of languages for which a translation exist. Each
128 #  language is separated by a space.
129 # ------------------------------------------------------------------
130 ALL_LINGUAS=""
131
132 AC_PATH_PROGS(MSGFMT, msgfmt, no)
133 if test "$MSGFMT" = "no"
134 then
135    echo 'msgfmt program not found, disabling NLS !'
136    USE_NLS=no
137    USE_INCLUDED_LIBINTL=no
138 #else
139 #   AM_GNU_GETTEXT
140 fi
141
142
143 support_mysql=no
144 support_sqlite=no
145 support_postgresql=no
146 support_smartalloc=yes
147 support_readline=yes
148 support_conio=yes
149 support_gnome=no
150 support_wx_console=no
151 gnome_version=
152 support_static_tools=no
153 support_static_fd=no
154 support_static_sd=no
155 support_static_dir=no
156 support_static_cons=no
157 build_client_only=no
158 cats=
159 db_name=Internal
160 DB_NAME=bdb
161
162 dnl# --------------------------------------------------------------------------
163 dnl# CHECKING COMMAND LINE OPTIONS
164 dnl# --------------------------------------------------------------------------
165
166 # -------------------------------------------
167 # gnome (default off)
168 # -------------------------------------------
169 AC_ARG_ENABLE(gnome,
170   [  --enable-gnome       enable build of gnome-console GUI [disabled]],
171   [if test x$enableval = xyes; then
172     support_gnome=yes
173   fi])
174
175 GNOME_DIR=
176 if test x$support_gnome = xyes; then
177   abc=`$PKGCONFIG --exists libgnomeui-2.0`
178   pkg=$?
179   if test $pkg = 0; then
180      GNOME_INCLUDEDIR=`$PKGCONFIG --cflags-only-I libgnomeui-2.0`
181      GNOMEUI_LIBS=`$PKGCONFIG --libs-only-l libgnomeui-2.0`
182      GNOME_LIBDIR=`$PKGCONFIG --libs libgnomeui-2.0`
183      GNOME_LIBS=`$PKGCONFIG --libs-only-l libgnomeui-2.0`
184      AC_SUBST(GNOME_INCLUDEDIR)
185      AC_SUBST(GNOMEUI_LIBS)
186      AC_SUBST(GNOME_LIBDIR)
187      AC_SUBST(GNOME_LIBS)
188      GNOME_DIR=src/gnome2-console
189      gnome_version="Version 2.x"
190   else
191 dnl do 1.4 stuff
192      GNOME_INIT
193      GNOME_DIR=src/gnome-console
194      gnome_version="Version 1.4"
195   fi
196 fi
197 AC_SUBST(GNOME_DIR)
198
199
200 # -------------------------------------------
201 # wx-console (default off)
202 # -------------------------------------------
203 AC_ARG_ENABLE(wx-console,
204   [  --enable-wx-console     enable build of wxWidgets console [disabled]],
205   [if test x$enableval = xyes; then
206     support_wx_console=yes
207   fi])
208
209 WX_DIR=
210 if test x$support_wx_console = xyes; then
211   abc=`$WXCONFIG --cppflags`
212   pkg=$?
213   if test $pkg = 0; then
214      WXCONS_CPPFLAGS=`$WXCONFIG --cppflags`
215      WXCONS_LDFLAGS=`$WXCONFIG --libs`
216      AC_SUBST(WXCONS_CPPFLAGS)
217      AC_SUBST(WXCONS_LDFLAGS)
218      WX_DIR=src/wx-console
219   else
220      echo " "
221      echo "wx-config program not found. wx-console disabled."
222      echo " "
223      support_wx_console=no
224   fi
225 fi
226 AC_SUBST(WX_DIR)
227
228
229 # -------------------------------------------
230 # tray-monitor (default off)
231 # -------------------------------------------
232 AC_ARG_ENABLE(tray-monitor,
233   [  --enable-tray-monitor   enable build of Gnome tray monitor (compatible with KDE) [disabled]],
234   [if test x$enableval = xyes; then
235     support_tray_monitor=yes
236   fi])
237
238 TRAY_MONITOR_DIR=
239 if test x$support_tray_monitor = xyes; then
240   abc=`$PKGCONFIG --exists gtk+-2.0`
241   pkg=$?
242   if test $pkg = 0; then
243      TRAY_MONITOR_CPPFLAGS=`$PKGCONFIG --cflags gtk+-2.0`
244      TRAY_MONITOR_LDFLAGS=`$PKGCONFIG --libs gtk+-2.0`
245      AC_SUBST(TRAY_MONITOR_CPPFLAGS)
246      AC_SUBST(TRAY_MONITOR_LDFLAGS)
247      TRAY_MONITOR_DIR=src/tray-monitor
248      abc=`$PKGCONFIG --atleast-version=2.4 gtk+-2.0`
249      pkg=$?
250      if test $pkg = 0; then
251         AC_DEFINE(HAVE_GTK_2_4)
252      fi
253   fi
254 fi
255 AC_SUBST(TRAY_MONITOR_DIR)
256
257 # -------------------------------------------
258 # smartalloc (default off)
259 # -------------------------------------------
260 AC_ARG_ENABLE(smartalloc,
261   [  --enable-smartalloc     enable smartalloc debugging support [disabled]],
262   [if test x$enableval = xno; then
263     support_smartalloc=no
264   fi])
265
266 if test x$support_smartalloc = xyes; then
267    AC_DEFINE(SMARTALLOC)
268 fi
269
270 # -------------------------------------------
271 # static-tools (default off)
272 # -------------------------------------------
273 AC_ARG_ENABLE(static-tools,
274    [  --enable-static-tools   enable static tape tools [disabled]],
275    [if test x$enableval = xyes; then
276      support_static_tools=yes
277    fi])
278
279 TTOOL_LDFLAGS=
280 if test x$support_static_tools = xyes; then
281    TTOOL_LDFLAGS="-static"
282 fi
283 AC_SUBST(TTOOL_LDFLAGS)
284
285 # -------------------------------------------
286 # static-fd    (default off)
287 # -------------------------------------------
288 AC_ARG_ENABLE(static-fd,
289    [  --enable-static-fd      enable static File daemon [disabled]],
290    [if test x$enableval = xyes; then
291      support_static_fd=yes
292    fi])
293
294 STATIC_FD=
295 if test x$support_static_fd = xyes; then
296    STATIC_FD="static-bacula-fd"
297 fi
298 AC_SUBST(STATIC_FD)
299
300 # -------------------------------------------
301 # static-sd    (default off)
302 # -------------------------------------------
303 AC_ARG_ENABLE(static-sd,
304    [  --enable-static-sd      enable static Storage daemon [disabled]],
305    [if test x$enableval = xyes; then
306      support_static_sd=yes
307    fi])
308
309 STATIC_SD=
310 if test x$support_static_sd = xyes; then
311    STATIC_SD="static-bacula-sd"
312 fi
313 AC_SUBST(STATIC_SD)
314
315 # -------------------------------------------
316 # static-dir   (default off)
317 # -------------------------------------------
318 AC_ARG_ENABLE(static-dir,
319    [  --enable-static-dir     enable static Director [disabled]],
320    [if test x$enableval = xyes; then
321      support_static_dir=yes
322    fi])
323
324 STATIC_DIR=
325 if test x$support_static_dir = xyes; then
326    STATIC_DIR="static-bacula-dir"
327 fi
328 AC_SUBST(STATIC_DIR)
329
330 # -------------------------------------------
331 # static-cons  (default off)
332 # -------------------------------------------
333 AC_ARG_ENABLE(static-cons,
334    [  --enable-static-cons    enable static Console [disabled]],
335    [if test x$enableval = xyes; then
336      support_static_cons=yes
337    fi])
338
339 STATIC_CONS=
340 STATIC_GNOME_CONS=
341 STATIC_WX_CONS=
342 if test x$support_static_cons = xyes; then
343    STATIC_CONS="static-bconsole"
344    STATIC_GNOME_CONS="static-gnome-console"
345    STATIC_WX_CONS="static-wx-console"
346 fi
347 AC_SUBST(STATIC_CONS)
348 AC_SUBST(STATIC_GNOME_CONS)
349 AC_SUBST(STATIC_WX_CONS)
350
351 # -------------------------------------------
352 # client_only  (default off)
353 # -------------------------------------------
354 AC_ARG_ENABLE(client-only,
355    [  --enable-client-only    build client (File daemon) only [disabled]],
356    [if test x$enableval = xyes; then
357      build_client_only=yes
358     db_name=None
359     DB_NAME=none
360    fi])
361 if test x$build_client_only = xno; then
362    ALL_DIRS="subdirs"
363 else
364    ALL_DIRS=""
365 fi
366 AC_SUBST(ALL_DIRS)
367
368 # ---------------------------------------------------
369 # Check for conio (Bacula readline substitute)(
370 # ---------------------------------------------------
371 # this allows you to turn it completely off
372 AC_ARG_ENABLE(conio,   
373   [  --disable-conio         disable conio support [enabled]
374                                                       ],
375   [if test x$enableval = xno; then
376     support_conio=no
377   fi])
378
379 got_conio="no"
380 if test x$support_conio = xyes; then
381    AC_CHECK_HEADER(termcap.h, 
382      [ AC_CHECK_LIB(termcap, tgetent, 
383        [ CONS_LIBS="-ltermcap"
384          CONS_OBJ="conio.o"
385          CONS_SRC="conio.c"
386          got_conio="yes"
387          support_readline=no
388          AC_DEFINE(HAVE_CONIO, 1, [Set if Bacula conio support enabled]) 
389        ],   
390        [ AC_CHECK_LIB(ncurses, tgetent,
391          [ CONS_LIBS="-lncurses"
392            CONS_OBJ="conio.o"
393            CONS_SRC="conio.c"
394            got_conio="yes"
395            support_readline=no
396            AC_DEFINE(HAVE_CONIO, 1, [Set if Bacula conio support enabled]) 
397          ])
398        ])
399      ],
400      [
401          AC_CHECK_HEADERS(curses.h)
402          AC_CHECK_HEADER(term.h,
403                [ AC_CHECK_LIB(curses, tgetent, 
404                  [ CONS_LIBS="-lcurses"
405                    CONS_OBJ="conio.o"
406                    CONS_SRC="conio.c"
407                    got_conio="yes"
408                    support_readline=no
409                    AC_DEFINE(HAVE_CONIO, 1, [Set if Bacula conio support enabled]) 
410                  ])
411                ],
412                [ echo " "; echo "Required libraries not found. CONIO turned off ..."; echo " "],
413 [#if HAVE_CURSES_H
414 #include <curses.h>
415 #endif
416 ])
417      ])
418 fi
419
420
421 # ---------------------------------------------------
422 # Check for readline support/directory (default off)
423 # ---------------------------------------------------
424 # this allows you to turn it completely off
425 AC_ARG_ENABLE(readline,
426   [  --disable-readline      disable readline support [disable]
427                                                       ],
428   [if test x$enableval = xno; then
429     support_readline=no
430   fi])
431
432 got_readline="no"
433 READLINE_SRC=
434 if test x$support_readline = xyes; then
435    AC_ARG_WITH(readline,
436      [ --with-readline=DIR               specify readline library directory],
437      [
438         case "$with_readline" in
439         no) : ;;
440         yes|*)
441           if test "$with_readline" != "yes"; then
442             CONS_INC="-I${with_readline}"
443             CONS_LDFLAGS="-L$with_readline"
444           else
445              with_readline="/usr/include/readline" 
446           fi
447           AC_CHECK_HEADER(${with_readline}/readline.h, 
448              [ AC_DEFINE(HAVE_READLINE) 
449                CONS_LIBS="-lreadline -ltermcap"
450                got_readline="yes"   
451              ],
452              [ echo " "
453                echo "readline.h not found. readline turned off ..."
454                echo " "
455              ]
456           )
457           ;;
458         esac
459      ],[
460        # check for standard readline library
461        AC_CHECK_HEADER(/usr/include/readline/readline.h, 
462          [ AC_DEFINE(HAVE_READLINE)
463            got_readline="yes"
464            CONS_INC="-I/usr/include/readline"
465            CONS_LIBS="-lreadline -ltermcap"
466          ], [
467            # Did not find standard library, so try Bacula's default
468             AC_CHECK_HEADER(${TOP_DIR}/depkgs/readline/readline.h, 
469               [ AC_DEFINE(HAVE_READLINE) 
470                  got_readline="yes"   
471                  CONS_INC="-I${TOP_DIR}/depkgs/readline"
472                  CONS_LIBS="-lreadline -lhistory -ltermcap"
473                  CONS_LDFLAGS="-L${TOP_DIR}/depkgs/readline"
474                  PRTREADLINE_SRC="${TOP_DIR}/depkgs/readline"
475               ],
476               [ echo " "
477                 echo "readline.h not found. readline turned off ..."
478                 echo " "
479               ]
480             )
481          ]
482        )
483      ]   
484    )
485 fi
486
487
488
489 AC_SUBST(CONS_INC)
490 AC_SUBST(CONS_OBJ)
491 AC_SUBST(CONS_SRC)
492 AC_SUBST(CONS_LIBS)
493 AC_SUBST(CONS_LDFLAGS)
494 AC_SUBST(READLINE_SRC)
495
496 # Minimal stuff for readline Makefile configuration
497 MAKE_SHELL=/bin/sh
498 AC_SUBST(MAKE_SHELL)
499 AC_HEADER_STAT
500 AC_HEADER_DIRENT
501 AC_CHECK_FUNCS(strcasecmp select setenv putenv tcgetattr setlocale lstat lchown)
502 AC_CHECK_FUNCS(nanosleep nl_langinfo)
503 AC_CHECK_HEADERS(varargs.h)
504
505 # End of readline/conio stuff
506 # -----------------------------------------------------------------------
507
508 # -------------------------------------------
509 # check for cdrecord writer location
510 # get scsibus,target,lun
511 # -------------------------------------------
512 CDSTL="3,0,0"
513 if test ! x$CDRECORD = x ; then
514    CDSTL=`${CDRECORD} -scanbus 2>/dev/null | grep CD-RW | ${AWK} '{print $1}'`
515    if test x${CDSTL} = x ; then
516       CDSTL=`${CDRECORD} -scanbus 2>/dev/null | grep CD+RW | ${AWK} '{print $1}'`
517    fi
518    if test x${CDSTL} = x ; then
519       CDSTL="3,0,0"
520    fi
521 fi
522 AC_SUBST(CDSTL)
523
524
525 # ---------------------------------------------------
526 # Check for GMP support/directory
527 # ---------------------------------------------------
528 #GMP_SRC=
529 #local_gmp="no"
530 #AC_ARG_WITH(gmp,
531 #  [  --with-gmp[=DIR]   Specify gmp library directory],
532 #  [
533 #     case "$with_gmp" in
534 #     no) : ;;
535 #     yes|*)
536 #       if test "$with_gmp" != "yes"; then
537 #         GMP_INC="-I$with_gmp"
538 #         GMP_LIBS="-lgmp"
539 #         GMP_LDFLAGS="-L$with_gmp"
540 #       else
541 #          with_gmp="/usr/include" 
542 #       fi
543 #       AC_CHECK_HEADER($with_gmp/gmp.h, 
544 #          [ AC_MSG_RESULT(yes)
545 #            AC_DEFINE(HAVE_GMP) 
546 #            GMP_LIBS="-lgmp"
547 #            got_gmp="yes"   
548 #          ],
549 #          [ AC_MSG_ERROR([*** gmp library missing]) 
550 #          ]
551 #       )
552 #       ;;
553 #     esac
554 #  ],[
555 #    # check for standard gmp library
556 #    AC_CHECK_HEADER(/usr/include/gmp.h,
557 #    [ AC_MSG_RESULT(yes)
558 #      AC_DEFINE(HAVE_GMP)
559 #      got_gmp="yes"
560 #      GMP_INC=
561 #      GMP_LIBS="-lgmp"
562 #    ], [
563 #      # Did not find standard library, so use our own
564 #      AC_MSG_RESULT(yes)
565 #      AC_DEFINE(HAVE_GMP)
566 #      got_gmp="yes"
567 #      local_gmp="yes"
568 #      GMP_INC="-I${TOP_DIR}/depkgs/gmp"
569 #      GMP_LIBS="-lgmp"
570 #      GMP_LDFLAGS="-L${TOP_DIR}/depkgs/gmp"
571 #      GMP_SRC="${TOP_DIR}/depkgs/gmp"
572 #    ])
573 #  ]   
574 #)
575 #AC_SUBST(GMP_INC)
576 #AC_SUBST(GMP_LIBS)
577 #AC_SUBST(GMP_LDFLAGS)
578 #AC_SUBST(GMP_SRC)
579
580 # End of GMP stuff
581 # -----------------------------------------------------------------------
582
583
584 # ---------------------------------------------------
585 # Check for CWEB support/directory
586 # ---------------------------------------------------
587 #CWEB_SRC=
588 #CWEB=/bin
589 #local_cweb="no"
590 #AC_ARG_WITH(cweb,
591 #  [  --with-cweb[=DIR]   Specify cweb library directory],
592 #  [
593 #     case "$with_cweb" in
594 #     no) : ;;
595 #     yes|*)
596 #       if test "$with_cweb" != "yes"; then
597 #         CWEB_INC="-I$with_cweb"
598 #         CWEB_LIBS="-lcweb"
599 #         CWEB_LDFLAGS="-L$with_cweb"
600 #       else
601 #          with_cweb="/usr/include" 
602 #       fi
603 #       AC_CHECK_HEADER($with_cweb/cweb.h, 
604 #          [ AC_MSG_RESULT(yes)
605 #            AC_DEFINE(HAVE_CWEB) 
606 #            CWEB_LIBS="-lcweb"
607 #            got_cweb="yes"   
608 #          ],
609 #          [ AC_MSG_ERROR([*** cweb library missing]) 
610 #          ]
611 #       )
612 #       ;;
613 #     esac
614 #  ],[
615 #    # check for standard cweb library
616 #    AC_CHECK_HEADER(/usr/include/cweb.h,
617 #    [ AC_MSG_RESULT(yes)
618 #      AC_DEFINE(HAVE_CWEB)
619 #      got_cweb="yes"
620 #      CWEB_INC=
621 #      CWEB_LIBS="-lcweb"
622 #    ], [
623 #      # Did not find starndard library, so use our own
624 #      AC_MSG_RESULT(yes)
625 #      AC_DEFINE(HAVE_CWEB)
626 #      got_cweb="yes"
627 #      local_cweb="yes"
628 #      CWEB=${TOP_DIR}/depkgs/cweb
629 #      CWEB_INC="-I${TOP_DIR}/depkgs/cweb"
630 #      CWEB_LIBS="-lcweb"
631 #      CWEB_LDFLAGS="-L${TOP_DIR}/depkgs/cweb"
632 #      CWEB_SRC="${TOP_DIR}/depkgs/cweb"
633 #    ])
634 #  ]   
635 #)
636 #AC_SUBST(CWEB)
637 #AC_SUBST(CWEB_INC)
638 #AC_SUBST(CWEB_LIBS)
639 #AC_SUBST(CWEB_LDFLAGS)
640 #AC_SUBST(CWEB_SRC)
641
642 # End of CWEB stuff
643 # -----------------------------------------------------------------------
644
645 #
646 # Find where sockets are (especially for Solaris)
647 # Do this before the TCP Wrappers test since tcp wrappers
648 # uses the socket library and some linkers are stupid.
649 #
650 AC_CHECK_FUNC(socket,
651     AC_MSG_RESULT(using libc's socket),
652     AC_CHECK_LIB(xnet,socket)
653     AC_CHECK_LIB(socket,socket)
654     AC_CHECK_LIB(inet,socket))
655
656
657 # -----------------------------------------------------------
658 # Check whether user wants TCP wrappers support (default off)
659 # -----------------------------------------------------------
660 TCPW_MSG="no" 
661 AC_ARG_WITH(tcp-wrappers,
662   [  --with-tcp-wrappers=DIR     enable tcpwrappers support],
663   [
664     if test "x$withval" != "xno" ; then
665        saved_LIBS="$LIBS"
666        LIBS="$saved_LIBS -lwrap"
667        AC_MSG_CHECKING(for libwrap)
668        AC_TRY_LINK(
669           [ #include <tcpd.h>
670              int deny_severity = 0;
671              int allow_severity = 0;
672              struct request_info *req; ],
673           [ hosts_access(req); ],
674           [
675             AC_MSG_RESULT(yes)
676             AC_DEFINE(HAVE_LIBWRAP)
677             TCPW_MSG="yes" 
678           ], [
679             LIBS="$saved_LIBS -lwrap -lnsl"
680             AC_TRY_LINK(
681               [ #include <tcpd.h>
682                  int deny_severity = 0;
683                  int allow_severity = 0;
684                  struct request_info *req; ],
685               [ hosts_access(req); ],
686               [
687                  AC_MSG_RESULT(yes)
688                  AC_DEFINE(HAVE_LIBWRAP)
689                  TCPW_MSG="yes" 
690               ],
691               [AC_MSG_ERROR([*** libwrap missing]) ] ]
692             )
693        )
694     fi
695   ]
696 )
697
698 # ------------------------------------------
699 # Where to place working dir
700 # ------------------------------------------
701 working_dir=`eval echo ${prefix}/var/bacula/working`
702 AC_ARG_WITH(working-dir,
703    [  --with-working-dir=PATH    specify path of Bacula working directory],
704    [
705        if test "x$withval" != "xno" ; then     
706               working_dir=$withval
707        fi
708    ]
709 )
710
711 AC_SUBST(working_dir)
712
713
714 # ------------------------------------------
715 # Where to place scriptdir (script files)
716 # ------------------------------------------
717 scriptdir=`eval echo ${sysconfdir}`
718 AC_ARG_WITH(scriptdir,
719    [  --with-scriptdir=PATH    specify path of Bacula scripts directory],
720    [
721        if test "x$withval" != "xno" ; then     
722               scriptdir=$withval
723        fi
724    ]
725 )
726
727 AC_SUBST(scriptdir)
728
729
730 # ------------------------------------------
731 # Where to send dump email
732 # ------------------------------------------
733 dump_email=root@localhost
734 AC_ARG_WITH(dump-email,
735    [  --with-dump-email=EMAIL    dump email address],
736    [
737        if test "x$withval" != "xno" ; then     
738               dump_email=$withval
739        fi
740    ]
741 )
742
743 AC_SUBST(dump_email)
744
745 # ------------------------------------------
746 # Where to send job email
747 # ------------------------------------------
748 job_email=root@localhost
749 AC_ARG_WITH(job-email,
750    [  --with-job-email=EMAIL     job output email address],
751    [
752        if test "x$withval" != "xno" ; then     
753               job_email=$withval
754        fi
755    ]
756 )
757
758 AC_SUBST(job_email)
759
760 # ------------------------------------------
761 # Where to find smtp host
762 # ------------------------------------------
763 smtp_host=localhost
764 AC_ARG_WITH(smtp_host,
765    [  --with-smtp-host=HOST              SMTP mail host address],
766    [
767        if test "x$withval" != "xno" ; then     
768               smtp_host=$withval
769        fi
770    ]
771 )
772
773 AC_SUBST(smtp_host)
774
775
776 # ------------------------------------
777 # Where to place pid files
778 # ------------------------------------
779 piddir=/var/run
780 AC_ARG_WITH(pid-dir,
781     [  --with-pid-dir=PATH               specify location of Bacula pid files],
782     [
783         if test "x$withval" != "xno" ; then     
784             piddir=$withval
785         fi
786     ]
787 )
788
789 AC_DEFINE_UNQUOTED(_PATH_BACULA_PIDDIR, "$piddir")
790 AC_SUBST(piddir)
791
792
793 # ------------------------------------
794 # Where to place subsys "lock file"
795 # ------------------------------------
796 subsysdir=/var/run/subsys
797 AC_ARG_WITH(subsys-dir,
798     [  --with-subsys-dir=PATH    specify location of Bacula subsys file],
799     [
800         if test "x$withval" != "xno" ; then     
801             subsysdir=$withval
802         fi
803     ]
804 )
805
806 AC_SUBST(subsysdir)
807
808
809
810 # ------------------------------------
811 # Where to start assigning ports
812 # ------------------------------------
813 baseport=9101
814 AC_ARG_WITH(baseport,
815     [  --with-baseport=PORT              specify base port address for daemons],
816     [
817         if test "x$withval" != "xno" ; then     
818              baseport=$withval
819         fi
820     ]
821 )
822
823 AC_SUBST(baseport)
824 dir_port=`expr $baseport`
825 fd_port=`expr $baseport + 1`
826 sd_port=`expr $fd_port + 1`
827
828 AC_SUBST(dir_port)
829 AC_SUBST(fd_port)
830 AC_SUBST(sd_port)
831
832
833 # ------------------------------------------
834 # Generate passwords
835 # ------------------------------------------
836 dir_password=
837 AC_ARG_WITH(dir-password,
838    [  --with-dir-password=PASSWORD   specify Director's password],
839    [
840        if test "x$withval" != "xno" ; then     
841            dir_password=$withval
842        fi
843    ]
844 )
845
846 if test "x$dir_password" = "x" ; then
847    if test "x$OPENSSL" = "xnone" ; then
848 #     key=`date | uuencode /dev/stdout | tr "\"@\\\`\\ \\=\\,\\(\\)\\#\\.\\!\\-$'" abcdefghijklmnopqrst | awk '{getline} {print} {exit}'`
849       key=`autoconf/randpass 33`
850    else
851       key=`openssl rand -base64 33`
852    fi
853    dir_password=$key
854 fi
855
856 fd_password=
857 AC_ARG_WITH(fd-password,
858    [  --with-fd-password=PASSWORD    specify Client's password],
859    [
860        if test "x$withval" != "xno" ; then     
861            fd_password=$withval
862        fi
863    ]
864 )
865
866 if test "x$fd_password" = "x" ; then
867    if test "x$OPENSSL" = "xnone" ; then
868 #     key=`date | uuencode /dev/stdout | tr "\"@\\\`\\ \\=\\,\\(\\)\\#\\.\\!\\-$'" tsrqponmlkjihgfedcba | awk '{getline} {print} {exit}'`
869       key=`autoconf/randpass 37`
870    else
871       key=`openssl rand -base64 33`
872    fi
873    fd_password=$key
874 fi
875
876 sd_password=
877 AC_ARG_WITH(sd-password,
878    [  --with-sd-password=PASSWORD    specify Storage daemon's password],
879    [
880        if test "x$withval" != "xno" ; then     
881            sd_password=$withval
882        fi
883    ]
884 )
885
886 if test "x$sd_password" = "x" ; then
887    if test "x$OPENSSL" = "xnone" ; then
888 #     key=`date | uuencode /dev/stdout | tr "\"@\\\`\\ \\=\\,\\(\\)\\#\\.\\!\\-$'" 123456789uvwxyzabcdef | awk '{getline} {print} {exit}'`
889       key=`autoconf/randpass 41`
890    else
891       key=`openssl rand -base64 33`
892    fi
893    sd_password=$key
894 fi
895
896 mon_dir_password=
897 AC_ARG_WITH(mon-dir-password,
898    [  --with-mon-dir-password=PASSWORD   specify Director's password used by the monitor],
899    [
900        if test "x$withval" != "xno" ; then     
901            mon_dir_password=$withval
902        fi
903    ]
904 )
905
906 if test "x$mon_dir_password" = "x" ; then
907    if test "x$OPENSSL" = "xnone" ; then
908 #     key=`date | uuencode /dev/stdout | tr "\"@\\\`\\ \\=\\,\\(\\)\\#\\.\\!\\-$'" abcdefghijklmnopqrst | awk '{getline} {print} {exit}'`
909       key=`autoconf/randpass 33`
910    else
911       key=`openssl rand -base64 33`
912    fi
913    mon_dir_password=$key
914 fi
915
916 mon_fd_password=
917 AC_ARG_WITH(mon-fd-password,
918    [  --with-mon-fd-password=PASSWORD    specify Client's password used by the monitor],
919    [
920        if test "x$withval" != "xno" ; then     
921            mon_fd_password=$withval
922        fi
923    ]
924 )
925
926 if test "x$mon_fd_password" = "x" ; then
927    if test "x$OPENSSL" = "xnone" ; then
928 #     key=`date | uuencode /dev/stdout | tr "\"@\\\`\\ \\=\\,\\(\\)\\#\\.\\!\\-$'" tsrqponmlkjihgfedcba | awk '{getline} {print} {exit}'`
929       key=`autoconf/randpass 37`
930    else
931       key=`openssl rand -base64 33`
932    fi
933    mon_fd_password=$key
934 fi
935
936 mon_sd_password=
937 AC_ARG_WITH(mon-sd-password,
938    [  --with-mon-sd-password=PASSWORD    specify Storage daemon's password used by the monitor],
939    [
940        if test "x$withval" != "xno" ; then     
941            mon_sd_password=$withval
942        fi
943    ]
944 )
945
946 if test "x$mon_sd_password" = "x" ; then
947    if test "x$OPENSSL" = "xnone" ; then
948 #     key=`date | uuencode /dev/stdout | tr "\"@\\\`\\ \\=\\,\\(\\)\\#\\.\\!\\-$'" 123456789uvwxyzabcdef | awk '{getline} {print} {exit}'`
949       key=`autoconf/randpass 41`
950    else
951       key=`openssl rand -base64 33`
952    fi
953    mon_sd_password=$key
954 fi
955
956 AC_SUBST(dir_password)
957 AC_SUBST(fd_password)
958 AC_SUBST(sd_password)
959 AC_SUBST(mon_dir_password)
960 AC_SUBST(mon_fd_password)
961 AC_SUBST(mon_sd_password)
962
963 #
964 # Handle users and groups for each daemon
965 #
966 dir_user=
967 AC_ARG_WITH(dir_user,
968     [  --with-dir-user=USER              specify user for Director daemon],
969     [
970         if test "x$withval" != "x" ; then       
971              dir_user=$withval
972         fi
973     ]
974 )
975
976 dir_group=
977 AC_ARG_WITH(dir_group,
978     [  --with-dir-group=GROUP            specify group for Director daemon],
979     [
980         if test "x$withval" != "x" ; then       
981              dir_group=$withval
982         fi
983     ]
984 )
985
986 sd_user=
987 AC_ARG_WITH(sd_user,
988     [  --with-sd-user=USER               specify user for Storage daemon],
989     [
990         if test "x$withval" != "x" ; then       
991              sd_user=$withval
992         fi
993     ]
994 )
995
996 sd_group=
997 AC_ARG_WITH(sd_group,
998     [  --with-sd-group=GROUP             specify group for Storage daemon],
999     [
1000         if test "x$withval" != "x" ; then       
1001              sd_group=$withval
1002         fi
1003     ]
1004 )
1005
1006 fd_user=
1007 AC_ARG_WITH(fd_user,
1008     [  --with-fd-user=USER               specify user for File daemon],
1009     [
1010         if test "x$withval" != "x" ; then       
1011              fd_user=$withval
1012         fi
1013     ]
1014 )
1015
1016 fd_group=
1017 AC_ARG_WITH(fd_group,
1018     [  --with-fd-group=GROUP             specify group for File daemon],
1019     [
1020         if test "x$withval" != "x" ; then       
1021              fd_group=$withval
1022         fi
1023     ]
1024 )
1025
1026
1027
1028
1029 AC_SUBST(dir_user)
1030 AC_SUBST(dir_group)
1031 AC_SUBST(sd_user)
1032 AC_SUBST(sd_group)
1033 AC_SUBST(fd_user)
1034 AC_SUBST(fd_group)
1035
1036 #
1037 # allow setting default executable permissions
1038 #
1039 SBINPERM=0754
1040 AC_ARG_WITH(sbin-perm,
1041     [  --with-sbin-perm=MODE             specify permissions for sbin binaries (0754)],
1042     [
1043         if test "x$withval" != "x" ; then       
1044             SBINPERM=$withval
1045         fi
1046     ]
1047 )
1048
1049 AC_SUBST(SBINPERM)
1050
1051 # ------------------------------------------------
1052 # Bacula check for various SQL database engines
1053 # ------------------------------------------------
1054 BA_CHECK_POSTGRESQL_DB
1055
1056 BA_CHECK_MYSQL_DB
1057
1058 BA_CHECK_SQLITE_DB
1059
1060 AC_SUBST(cats)
1061 AC_SUBST(DB_NAME)
1062
1063 AC_DEFINE(PROTOTYPES)
1064
1065 dnl# --------------------------------------------------------------------------
1066 dnl# Supply default CFLAGS, if not specified by `CFLAGS=flags ./configure'
1067 dnl#
1068 if test -z "$CFLAGS" -o "$CFLAGS" = "-g -O2"; then
1069     if test -z "$CCOPTS"; then
1070         CCOPTS='-g -O2 -Wall'
1071     fi
1072     CFLAGS="$CCOPTS"
1073 fi
1074
1075
1076 dnl A few others 
1077 AC_EXEEXT
1078
1079 dnl See if we can use 64 bit file addresses
1080 largefile_support="no"
1081 AC_BAC_LARGEFILE
1082
1083
1084 AC_PATH_XTRA
1085
1086 dnl# --------------------------------------------------------------------------
1087 dnl# CHECKING FOR HEADER FILES
1088 dnl# --------------------------------------------------------------------------
1089 AC_CHECK_HEADERS( \
1090         assert.h \
1091         fcntl.h \
1092         grp.h \
1093         pwd.h \
1094         libc.h \
1095         limits.h \
1096         stdarg.h \
1097         stdlib.h \
1098         stdint.h \
1099         string.h \
1100         termios.h \
1101         termcap.h \
1102         term.h \
1103         unistd.h \
1104         sys/bitypes.h \
1105         sys/byteorder.h \
1106         sys/ioctl.h \
1107         sys/select.h \
1108         sys/sockio.h \
1109         sys/time.h \
1110         sys/socket.h \
1111         arpa/nameser.h \
1112         resolv.h \
1113         mtio.h \
1114         sys/mtio.h \
1115         sys/tape.h \
1116         regex.h \
1117 )
1118 AC_HEADER_STDC
1119 AC_HEADER_MAJOR
1120 AC_HEADER_DIRENT
1121 AC_HEADER_STAT
1122 AC_HEADER_SYS_WAIT
1123 AC_HEADER_TIME
1124 AC_STRUCT_ST_BLKSIZE
1125 AC_STRUCT_ST_BLOCKS
1126 AC_STRUCT_TIMEZONE
1127
1128 dnl# --------------------------------------------------------------------------
1129 dnl# Check for utime.h structure 
1130 dnl# --------------------------------------------------------------------------
1131 AC_CACHE_CHECK(for utime.h, ba_cv_header_utime_h,
1132   [AC_TRY_COMPILE([
1133 #include <sys/types.h>
1134 #include <utime.h>], [struct utimbuf foo],
1135   ba_cv_header_utime_h=yes, ba_cv_header_utime_h=no)])
1136 test $ba_cv_header_utime_h = yes && AC_DEFINE(HAVE_UTIME_H)
1137
1138 dnl# --------------------------------------------------------------------------
1139 dnl# Check for socklen_t
1140 dnl# --------------------------------------------------------------------------
1141 AC_CACHE_CHECK(for socklen_t, ba_cv_header_socklen_t,
1142   [AC_TRY_COMPILE([
1143 #include <sys/types.h>
1144 #include <sys/socket.h>],
1145   [socklen_t x],
1146   ba_cv_header_socklen_t=yes, ba_cv_header_socklen_t=no)])
1147 test $ba_cv_header_socklen_t = yes && AC_DEFINE(HAVE_SOCKLEN_T)
1148
1149 dnl# --------------------------------------------------------------------------
1150 dnl# Check for bigendian
1151 dnl# --------------------------------------------------------------------------
1152 AC_CACHE_CHECK([for bigendian], ba_cv_bigendian,
1153   [AC_TRY_RUN(
1154     [main(){long a=1L; char *p=(char *)&a; exit(*p);}],
1155     [ba_cv_bigendian=yes], 
1156     [ba_cv_bigendian=no], 
1157     [ba_cv_bigendian=no])])
1158 test $ba_cv_bigendian = yes && AC_DEFINE(HAVE_BIGENDIAN)
1159
1160
1161 AC_C_CONST
1162
1163
1164 dnl# --------------------------------------------------------------------------
1165 dnl# CHECKING FOR FILESYSTEM TYPE
1166 dnl# --------------------------------------------------------------------------
1167 AC_MSG_CHECKING(how to get filesystem type)
1168 fstype=no
1169 # The order of these tests is important.
1170 AC_TRY_CPP([#include <sys/statvfs.h>
1171 #include <sys/fstyp.h>], AC_DEFINE(FSTYPE_STATVFS) fstype=SVR4)
1172 if test $fstype = no; then
1173 AC_TRY_CPP([#include <sys/statfs.h>
1174 #include <sys/fstyp.h>], AC_DEFINE(FSTYPE_USG_STATFS) fstype=SVR3)
1175 fi
1176 if test $fstype = no; then
1177 AC_TRY_CPP([#include <sys/statfs.h>
1178 #include <sys/vmount.h>], AC_DEFINE(FSTYPE_AIX_STATFS) fstype=AIX)
1179 fi
1180 if test $fstype = no; then  
1181 AC_TRY_CPP([#include <mntent.h>], AC_DEFINE(FSTYPE_MNTENT) fstype=4.3BSD)
1182 fi
1183 if test $fstype = no; then  
1184 AC_EGREP_HEADER(f_type;, sys/mount.h, AC_DEFINE(FSTYPE_STATFS) fstype=4.4BSD/OSF1)
1185 fi
1186 if test $fstype = no; then  
1187 AC_TRY_CPP([#include <sys/mount.h>
1188 #include <sys/fs_types.h>], AC_DEFINE(FSTYPE_GETMNT) fstype=Ultrix)
1189 fi
1190 AC_MSG_RESULT($fstype)
1191
1192 dnl# --------------------------------------------------------------------------
1193 dnl# CHECKING FOR TYPEDEFS, STRUCTURES, AND COMPILER CHARACTERISTICS.
1194 dnl# --------------------------------------------------------------------------
1195 AC_TYPE_SIGNAL
1196 SIGNAL_CHECK
1197 AC_TYPE_MODE_T
1198 AC_TYPE_UID_T
1199 AC_TYPE_SIZE_T
1200 AC_TYPE_PID_T
1201 AC_TYPE_OFF_T
1202 AC_CHECK_TYPE(ino_t, unsigned long)
1203 AC_CHECK_TYPE(dev_t, unsigned long)
1204 AC_CHECK_TYPE(daddr_t, long)
1205 AC_CHECK_TYPE(major_t, int)
1206 AC_CHECK_TYPE(minor_t, int)
1207 AC_CHECK_TYPE(ssize_t, int)
1208 AC_STRUCT_ST_BLOCKS
1209 AC_STRUCT_ST_RDEV
1210 AC_STRUCT_TM
1211 AC_C_CONST
1212
1213
1214 AC_CHECK_SIZEOF(char, 1)
1215 AC_CHECK_SIZEOF(short int, 2)
1216 AC_CHECK_SIZEOF(int, 4)
1217 AC_CHECK_SIZEOF(long int, 4)
1218 AC_CHECK_SIZEOF(long long int, 8)
1219 AC_CHECK_SIZEOF(int *, 4)
1220
1221 # Check for sys/types.h types
1222 AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int, [
1223     AC_TRY_COMPILE(
1224         [ #include <sys/types.h> ], 
1225         [ u_int a; a = 1;], 
1226         [ ac_cv_have_u_int="yes" ],
1227         [ ac_cv_have_u_int="no" ]
1228     )
1229 ])
1230 if test "x$ac_cv_have_u_int" = "xyes" ; then
1231    AC_DEFINE(HAVE_U_INT)
1232    have_u_int=1
1233 fi
1234
1235 AC_CACHE_CHECK([for intmax_t type], ac_cv_have_intmax_t, [
1236    AC_TRY_COMPILE(
1237       [ #include <sys/types.h> ], 
1238       [ intmax_t a; a = 1;], 
1239       [ ac_cv_have_intmax_t="yes" ],
1240       [ 
1241          AC_TRY_COMPILE(
1242             [ #include <stdint.h> ], 
1243             [ intmax_t a; a = 1;], 
1244             [ ac_cv_have_intmax_t="yes" ],
1245             [ ac_cv_have_intmax_t="no" ]
1246          )
1247       ]
1248    )        
1249
1250 ])
1251 if test "x$ac_cv_have_intmax_t" = "xyes" ; then
1252    AC_DEFINE(HAVE_INTMAX_T)
1253    have_intmax_t=1
1254 fi
1255
1256
1257 AC_CACHE_CHECK([for u_intmax_t type], ac_cv_have_u_intmax_t, [
1258    AC_TRY_COMPILE(
1259       [ #include <sys/types.h> ], 
1260       [ u_intmax_t a; a = 1;], 
1261       [ ac_cv_have_u_intmax_t="yes" ],
1262       [ 
1263          AC_TRY_COMPILE(
1264             [ #include <stdint.h> ], 
1265             [ u_intmax_t a; a = 1;], 
1266             [ ac_cv_have_u_intmax_t="yes" ],
1267             [ ac_cv_have_u_intmax_t="no" ]
1268          )
1269       ]
1270    )
1271 ])
1272 if test "x$ac_cv_have_u_intmax_t" = "xyes" ; then
1273    AC_DEFINE(HAVE_U_INTMAX_T)
1274    have_u_intmax_t=1
1275 fi
1276
1277
1278 AC_CACHE_CHECK([for intXX_t types], ac_cv_have_intxx_t, [
1279    AC_TRY_COMPILE(
1280       [ #include <sys/types.h> ], 
1281       [ int8_t a; int16_t b; int32_t c; a = b = c = 1;], 
1282       [ ac_cv_have_intxx_t="yes" ],
1283       [ ac_cv_have_intxx_t="no" ]
1284    )
1285 ])
1286 if test "x$ac_cv_have_intxx_t" = "xyes" ; then
1287    AC_DEFINE(HAVE_INTXX_T)
1288    have_intxx_t=1
1289 fi
1290         
1291 AC_CACHE_CHECK([for int64_t type], ac_cv_have_int64_t, [
1292    AC_TRY_COMPILE(
1293       [ #include <sys/types.h> ], 
1294       [ int64_t a; a = 1;], 
1295       [ ac_cv_have_int64_t="yes" ],
1296       [ ac_cv_have_int64_t="no" ]
1297    )
1298 ])
1299 if test "x$ac_cv_have_int64_t" = "xyes" ; then
1300    AC_DEFINE(HAVE_INT64_T)
1301    have_int64_t=1
1302 fi
1303         
1304 AC_CACHE_CHECK([for u_intXX_t types], ac_cv_have_u_intxx_t, [
1305    AC_TRY_COMPILE(
1306       [ #include <sys/types.h> ], 
1307       [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;], 
1308       [ ac_cv_have_u_intxx_t="yes" ],
1309       [ ac_cv_have_u_intxx_t="no" ]
1310    )
1311 ])
1312 if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then
1313    AC_DEFINE(HAVE_U_INTXX_T)
1314    have_u_intxx_t=1
1315 fi
1316
1317 AC_CACHE_CHECK([for u_int64_t types], ac_cv_have_u_int64_t, [
1318    AC_TRY_COMPILE(
1319       [ #include <sys/types.h> ], 
1320       [ u_int64_t a; a = 1;], 
1321       [ ac_cv_have_u_int64_t="yes" ],
1322       [ ac_cv_have_u_int64_t="no" ]
1323    )
1324 ])
1325 if test "x$ac_cv_have_u_int64_t" = "xyes" ; then
1326    AC_DEFINE(HAVE_U_INT64_T)
1327    have_u_int64_t=1
1328 fi
1329
1330 if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \
1331            test "x$ac_cv_header_sys_bitypes_h" = "xyes")
1332 then
1333    AC_MSG_CHECKING([for intXX_t and u_intXX_t types in sys/bitypes.h])
1334    AC_TRY_COMPILE(
1335       [ #include <sys/bitypes.h>  ], 
1336       [ int8_t a; int16_t b; int32_t c;
1337         u_int8_t e; u_int16_t f; u_int32_t g;
1338         a = b = c = e = f = g = 1;  ], 
1339       [ AC_DEFINE(HAVE_U_INTXX_T)
1340         AC_DEFINE(HAVE_INTXX_T)
1341         AC_DEFINE(HAVE_SYS_BITYPES_H)
1342         AC_MSG_RESULT(yes) ],
1343       [ AC_MSG_RESULT(no)]
1344    ) 
1345 fi
1346
1347 if test -z "$have_u_intxx_t" ; then
1348    AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t, [
1349       AC_TRY_COMPILE(
1350          [ #include <sys/types.h> ], 
1351          [ uint8_t a; uint16_t b; 
1352            uint32_t c; a = b = c = 1; ], 
1353          [ ac_cv_have_uintxx_t="yes" ],
1354          [ ac_cv_have_uintxx_t="no" ]
1355       )
1356    ])
1357    if test "x$ac_cv_have_uintxx_t" = "xyes" ; then
1358       AC_DEFINE(HAVE_UINTXX_T)
1359    fi
1360 fi
1361
1362 if (test -z "$have_u_int64_t" || test -z "$have_int64_t" && \
1363           test "x$ac_cv_header_sys_bitypes_h" = "xyes")
1364 then
1365    AC_MSG_CHECKING([for int64_t and u_int64_t types in sys/bitypes.h])
1366    AC_TRY_COMPILE(
1367       [ #include <sys/bitypes.h>  ], 
1368       [ int64_t a; u_int64_t b; 
1369        a = b = 1;  ], 
1370       [ AC_DEFINE(HAVE_U_INT64_T)
1371        AC_DEFINE(HAVE_INT64_T)
1372        AC_MSG_RESULT(yes) ],
1373       [ AC_MSG_RESULT(no)]
1374    ) 
1375 fi
1376
1377 if (test -z "$have_uintxx_t" && \
1378           test "x$ac_cv_header_sys_bitypes_h" = "xyes")
1379 then
1380    AC_MSG_CHECKING([for uintXX_t types in sys/bitypes.h])
1381    AC_TRY_COMPILE(
1382       [ #include <sys/bitypes.h>  ], 
1383         [ uint8_t a; uint16_t b; 
1384           uint32_t c; a = b = c = 1; ], 
1385       [ AC_DEFINE(HAVE_UINTXX_T)
1386        AC_MSG_RESULT(yes) ],
1387       [ AC_MSG_RESULT(no)]
1388    ) 
1389
1390 fi
1391
1392
1393
1394
1395 dnl# --------------------------------------------------------------------------
1396 dnl# CHECKING FOR REQUIRED LIBRARY FUNCTIONS
1397 dnl# --------------------------------------------------------------------------
1398 AC_CHECK_FUNCS( \
1399         fork \
1400         getcwd \
1401         gethostname \
1402         getpid \
1403         gettimeofday \
1404         setpgid \
1405         setpgrp \
1406         setsid \
1407         signal \
1408         strerror \
1409         strncmp \
1410         strncpy \
1411         vfprintf \
1412         ,,
1413         [echo 'configure: cannot find needed function.'; exit 1]
1414 )
1415
1416 AC_CHECK_FUNCS(fchdir, [AC_DEFINE(HAVE_FCHDIR)])
1417 AC_CHECK_FUNCS(strtoll, [AC_DEFINE(HAVE_STRTOLL)])
1418
1419 AC_CHECK_FUNCS(chflags) 
1420
1421 AC_CHECK_FUNCS(snprintf vsnprintf gethostid getdomainname)
1422
1423 dnl# --------------------------------------------------------------------------
1424 dnl# CHECKING FOR THREAD SAFE FUNCTIONS
1425 dnl# --------------------------------------------------------------------------
1426 AC_CHECK_FUNCS(localtime_r readdir_r strerror_r gethostbyname_r)
1427
1428 # If resolver functions are not in libc check for -lnsl or -lresolv.
1429 AC_CHECK_FUNC(gethostbyname_r,
1430     AC_MSG_RESULT(using libc's resolver),
1431     AC_CHECK_LIB(nsl,gethostbyname_r)
1432     AC_CHECK_LIB(resolv,gethostbyname_r))
1433
1434
1435
1436 AC_CHECK_FUNCS(inet_pton, [AC_DEFINE(HAVE_INET_PTON)])
1437 AC_CHECK_FUNCS(inet_ntop, [AC_DEFINE(HAVE_INET_NTOP)])
1438 AC_CHECK_FUNCS(gethostbyname2, [AC_DEFINE(HAVE_GETHOSTBYNAME2)])
1439
1440 dnl ----------------------------
1441 dnl check sa_len of sockaddr
1442 dnl ----------------------------
1443 AC_CACHE_CHECK(for struct sockaddr has a sa_len field, ac_cv_struct_sockaddr_sa_len,
1444   [AC_TRY_COMPILE([#include <sys/socket.h>], [struct sockaddr s; s.sa_len;],
1445   ac_cv_struct_sockaddr_sa_len=yes, ac_cv_struct_sockaddr_sa_len=no)])
1446
1447  if test $ac_cv_struct_sockaddr_sa_len = yes; then
1448   AC_DEFINE(HAVE_SA_LEN, 1, [Define if sa_len field exists in struct sockaddr])
1449  fi
1450
1451
1452 dnl Check for IPv6 support
1453 AC_CACHE_CHECK([for IPv6 support], ac_cv_ipv6_support,
1454 [AC_TRY_LINK([ #include <sys/types.h>
1455 #include <sys/socket.h>
1456 #include <netinet/in.h>], [struct sockaddr_in6 s; struct in6_addr t=in6addr_any; int i=AF_INET6; s; t.s6_addr[0] =
1457  0;],
1458   [ac_cv_ipv6_support=yes], [ac_cv_ipv6_support=no])])
1459
1460 if test "$ac_cv_ipv6_support" = yes; then
1461   AC_DEFINE(HAVE_IPV6,1,[Whether to enable IPv6 support])
1462 fi
1463
1464
1465
1466 AC_FUNC_STRFTIME
1467 AC_FUNC_VPRINTF
1468 AC_FUNC_ALLOCA
1469 AC_FUNC_GETMNTENT
1470 AC_FUNC_CLOSEDIR_VOID
1471 AC_FUNC_SETPGRP                       dnl check for BSD setpgrp.
1472 AC_FUNC_FNMATCH
1473
1474
1475 dnl# FreeBSD needs to link libxpg4
1476 AC_CHECK_LIB(xpg4, setlocale, [LIBS="$LIBS -lxpg4"])
1477
1478
1479 AC_CHECK_LIB(sun, getpwnam)
1480
1481 AC_CHECK_HEADERS(zlib.h)
1482 AC_CHECK_LIB(z, deflate, [FDLIBS="-lz"])
1483 have_zlib=no
1484 if test x$FDLIBS = x-lz; then
1485   AC_DEFINE(HAVE_LIBZ)
1486   have_zlib=yes
1487 fi
1488
1489 AC_CHECK_HEADER(sys/acl.h)
1490 AC_CHECK_LIB(acl, acl_get_file, [FDLIBS="-lacl $FDLIBS"])
1491 have_acl=no
1492 if test $ac_cv_lib_acl_acl_get_file = yes; then
1493    AC_DEFINE(HAVE_ACL)
1494    have_acl=yes
1495 fi
1496
1497 dnl Check for pthread libraries
1498 PTHREAD_LIB=""
1499 AC_CHECK_LIB(pthread, pthread_create, PTHREAD_LIB="-lpthread",
1500         [AC_CHECK_LIB(pthreads, pthread_create, PTHREAD_LIB="-lpthreads",
1501             [AC_CHECK_LIB(c_r, pthread_create, PTHREAD_LIB="-lc_r",
1502                 [AC_CHECK_FUNC(pthread_create)]
1503             )]
1504         )]
1505 )
1506
1507 AC_SUBST(FDLIBS)
1508 AC_DEFINE(FDLIBS)
1509
1510
1511 CFLAGS=${CFLAGS--O}
1512 LDFLAGS=${LDFLAGS--O}
1513 DB_LIBS="${SQL_LFLAGS}"
1514
1515 CPPFLAGS="$CPPFLAGS"
1516 AC_SUBST(DEBUG)
1517 AC_SUBST(DINCLUDE)
1518 AC_SUBST(CFLAGS)
1519 AC_SUBST(CPPFLAGS)
1520 AC_SUBST(LDFLAGS)
1521 AC_SUBST(X_CFLAGS)
1522 AC_SUBST(LIBS)
1523 AC_SUBST(DLIB)
1524 AC_SUBST(DB_LIBS)
1525 AC_SUBST(X_LIBS)
1526 AC_SUBST(X_EXTRA_LIBS)
1527 AC_SUBST(WCFLAGS)
1528 AC_SUBST(WLDFLAGS)
1529
1530 dnl# extra configurable objects
1531 OBJLIST=
1532 AC_SUBST(OBJLIST)
1533
1534 lld="lld"
1535 llu="llu"
1536
1537 WCFLAGS=
1538 WLDFLAGS=
1539
1540 #
1541 # Finally we set appropriate distribution specific
1542 #  variables and defaults
1543 #
1544 # PFILES are platform specific files
1545 PFILES="platforms/Makefile"
1546 PSCMD="ps -e"
1547 WIN32=
1548 MACOSX=
1549 hostname=`uname -n | cut -d '.' -f 1`
1550 case "$DISTNAME" in
1551 aix)
1552         DISTVER=`uname -r`
1553         PSCMD="ps -e -o pid,comm"
1554         PFILES="${PFILES} \
1555            platforms/aix/Makefile"
1556         TAPEDRIVE="/dev/rmt0.1" 
1557   ;;      
1558 alpha)
1559         DISTVER=`uname -r`
1560         PTHREAD_LIB="-lpthread -lexc"
1561         if test "${CC}" = "gcc" ; then
1562            lld="lld"
1563            llu="llu"
1564         else
1565            lld="ld"
1566            llu="lu"
1567         fi
1568         TAPEDRIVE="/dev/nrmt0"
1569   ;;
1570 bsdi)
1571         DISTVER=`uname -a |awk '{print $3}'`
1572         TAPEDRIVE="/dev/nrmt0"
1573         PTHREAD_LIB="-pthread"
1574         CFLAGS="${CFLAGS} -pthread"
1575         PSCMD="ps -x -o pid,command"
1576         lld="qd"
1577         llu="qu"
1578         PFILES="${PFILES} \
1579             platforms/bsdi/Makefile \
1580             platforms/bsdi/bacula-fd \
1581             platforms/bsdi/bacula-sd \
1582             platforms/bsdi/bacula-dir"
1583         largefile_support="yes"
1584   ;;
1585 cygwin)
1586         DISTVER=`uname -a |awk '{print $3}'`
1587         TAPEDRIVE="/dev/nrst0"
1588         WIN32=win32
1589         WCFLAGS="-mwindows"
1590         WLDFLAGS="-mwindows"
1591   ;;
1592 darwin)
1593         DISTVER=`uname -r`
1594         TAPEDRIVE="/dev/nst0"
1595         PSCMD="ps -e -o pid,command"
1596         MACOSX=macosx
1597         PFILES="${PFILES} \
1598            platforms/darwin/Makefile"
1599   ;;
1600 debian)
1601         DISTVER=`cat /etc/debian_version`
1602         TAPEDRIVE="/dev/nrst0"
1603         PSCMD="ps -e -o pid,command"
1604   ;;
1605 freebsd)
1606         DISTVER=`uname -a |awk '{print $3}'`
1607         VER=`echo $DISTVER | cut -c 1`
1608         if test x$VER = x4 ; then
1609            PTHREAD_LIB="-pthread"
1610            CFLAGS="${CFLAGS} -pthread"
1611         fi
1612         lld="qd"
1613         llu="qu"
1614         TAPEDRIVE="/dev/nrsa0"
1615         PSCMD="ps -x -o pid,command"
1616         PFILES="${PFILES} \
1617             platforms/freebsd/Makefile \
1618             platforms/freebsd/bacula-fd \
1619             platforms/freebsd/bacula-sd \
1620             platforms/freebsd/bacula-dir"
1621         largefile_support="yes"
1622   ;;
1623 hpux)
1624         PSCMD="UNIX95=1 ps -e -o pid,comm"
1625         CFLAGS="$(CFLAGS) -D_XOPEN_SOURCE_EXTENDED=1"
1626         DISTVER=`uname -r`
1627         TAPEDRIVE="/dev/rmt/0hnb"
1628   ;;
1629 irix)
1630         DISTVER=`uname -r`
1631         TAPEDRIVE="/dev/rmt/0cbn"
1632         PSCMD="ps -e -o pid,comm"
1633         PFILES="${PFILES} \
1634             platforms/irix/Makefile \
1635             platforms/irix/bacula-fd \
1636             platforms/irix/bacula-sd \
1637             platforms/irix/bacula-dir"
1638   ;;
1639 netbsd)
1640         DISTVER=`uname -a |awk '{print $3}'`
1641         lld="qd"
1642         llu="qu"
1643         TAPEDRIVE="/dev/nrst0"
1644         PSCMD="ps -a -o pid,command"
1645         PTHREAD_LIB="-pthread"
1646         CFLAGS="${CFLAGS} -pthread"
1647   ;;
1648 openbsd)
1649         DISTVER=`uname -a |awk '{print $3}'`
1650         lld="qd"
1651         llu="qu"
1652         TAPEDRIVE="/dev/nrst0"
1653         PSCMD="ps -ax -o pid,command"
1654         PTHREAD_LIB="-pthread"
1655         CFLAGS="${CFLAGS} -pthread"
1656         PFILES="${PFILES} \
1657             platforms/openbsd/Makefile \
1658             platforms/openbsd/bacula-fd \
1659             platforms/openbsd/bacula-sd \
1660             platforms/openbsd/bacula-dir"
1661   ;;
1662 redhat)
1663         if test -f /etc/whitebox-release ; then
1664            f=/etc/whitebox-release
1665         else
1666            f=/etc/redhat-release
1667         fi
1668         if test `cat $f | grep release |\
1669                    cut -f 3 -d ' '`x = "Enterprise"x ; then
1670            DISTVER="Enterprise "`cat $f | grep release |\
1671                     cut -f 6 -d ' '`
1672         else
1673             DISTVER=`cat /etc/redhat-release | grep release |\
1674                      cut -f 5 -d ' '`
1675         fi
1676         TAPEDRIVE="/dev/nst0"
1677         PSCMD="ps -e -o pid,command"
1678         PFILES="${PFILES} \
1679             platforms/redhat/Makefile \
1680             platforms/redhat/bacula-fd \
1681             platforms/redhat/bacula-sd \
1682             platforms/redhat/bacula-dir \
1683             platforms/redhat/bacula.spec \
1684             "
1685         hostname=`hostname -s`
1686   ;;
1687 mandrake)
1688         DISTVER=`cat /etc/mandrake-release | grep release |\
1689            cut -f 5 -d ' '`
1690         TAPEDRIVE="/dev/nst0"
1691         PSCMD="ps -e -o pid,command"
1692         PFILES="${PFILES} \
1693             platforms/mandrake/Makefile \
1694             platforms/mandrake/bacula-fd \
1695             platforms/mandrake/bacula-sd \
1696             platforms/mandrake/bacula-dir \
1697             platforms/mandrake/bacula.spec \
1698             "
1699   ;;
1700 gentoo)
1701         DISTVER=`awk '/version / {print $5}' < /etc/gentoo-release`
1702         TAPEDRIVE="/dev/nst0"
1703         PSCMD="ps -e -o pid,command"
1704         PFILES="${PFILES} \
1705             platforms/gentoo/Makefile \
1706          platforms/gentoo/bacula-init \
1707             platforms/gentoo/bacula-fd \
1708             platforms/gentoo/bacula-sd \
1709             platforms/gentoo/bacula-dir"
1710   ;;
1711 slackware)
1712         DISTVER=`cat /etc/slackware-version`
1713         TAPEDRIVE="/dev/nst0"
1714         PSCMD="ps -e -o pid,command"
1715         PFILES="${PFILES} \
1716             platforms/slackware/Makefile \
1717             platforms/slackware/rc.bacula-fd \
1718             platforms/slackware/rc.bacula-sd \
1719             platforms/slackware/rc.bacula-dir\
1720             platforms/slackware/functions.bacula"
1721   ;;
1722 solaris)
1723         DISTVER=`uname -r`
1724         TAPEDRIVE="/dev/rmt/0cbn"
1725         PSCMD="ps -e -o pid,comm"
1726         PFILES="${PFILES} \
1727             platforms/solaris/Makefile \
1728             platforms/solaris/bacula-fd \
1729             platforms/solaris/bacula-sd \
1730             platforms/solaris/bacula-dir"
1731         if test x$DISTVER = x5.6 ; then
1732             AC_DEFINE(HAVE_OLD_SOCKOPT)
1733         fi
1734   ;;
1735 suse)
1736         DISTVER=`cat /etc/SuSE-release |grep VERSION|\
1737             cut -f 3 -d ' '`
1738         TAPEDRIVE="/dev/nst0"
1739         PSCMD="ps -e -o pid,command"
1740         PFILES="${PFILES} \
1741             platforms/suse/Makefile \
1742             platforms/suse/bacula-fd \
1743             platforms/suse/bacula-sd \
1744             platforms/suse/bacula-dir \
1745             platforms/suse/bacula \
1746             platforms/suse/bacula.spec"
1747   ;;
1748 suse5)
1749         DISTNAME=suse
1750         DISTVER=5.x
1751         TAPEDRIVE="/dev/nst0"
1752         PSCMD="ps -e -o pid,command"
1753         PFILES="${PFILES} \
1754             platforms/suse/Makefile \
1755             platforms/suse/bacula-fd \
1756             platforms/suse/bacula-sd \
1757             platforms/suse/bacula-dir"
1758   ;;
1759 unknown)
1760         DISTVER=unknown
1761         TAPEDRIVE="/dev/nst0"
1762   ;;
1763 *)
1764   echo " === Something went wrong. Unknown DISTNAME $DISTNAME ==="
1765   ;;
1766 esac  
1767
1768 AC_SUBST(hostname)
1769
1770 LIBS="$PTHREAD_LIB $LIBS"
1771
1772 AC_DEFINE_UNQUOTED(lld, "$lld")
1773 AC_DEFINE_UNQUOTED(llu, "$llu")
1774 AC_SUBST(TAPEDRIVE)
1775 AC_SUBST(PSCMD)
1776 AC_SUBST(WIN32)
1777 AC_SUBST(MACOSX)
1778 AC_SUBST(DISTNAME)
1779 AC_SUBST(DISTVER)
1780
1781 dnl# common parts of the Makefile
1782 MCOMMON=./autoconf/Make.common
1783 AC_SUBST_FILE(MCOMMON)
1784
1785 dnl# Insanity check
1786 if test "x${subsysdir}" = "x${sbindir}" ; then
1787    echo " "
1788    echo " "
1789    echo "You have set both --sbindir and --with-subsys-dir"
1790    echo "  equal to: ${subsysdir} "
1791    echo "This is not permitted. Please reconfigure."
1792    echo " "
1793    echo "Aborting configuration ..."
1794    echo " "
1795    echo " "
1796    exit 1
1797 fi 
1798
1799 AC_OUTPUT([autoconf/Make.common \
1800            Makefile \
1801            rescue/Makefile \
1802            rescue/linux/Makefile \
1803            rescue/linux/floppy/Makefile \
1804            rescue/linux/cdrom/Makefile \
1805            rescue/linux/cdrom/bacula/Makefile \
1806            rescue/freebsd/Makefile \
1807            rescue/solaris/Makefile \
1808            scripts/startmysql \
1809            scripts/stopmysql \
1810            scripts/btraceback \
1811            scripts/startit \
1812            scripts/stopit \
1813            scripts/bconsole \
1814            scripts/gconsole \
1815            scripts/bacula \
1816            scripts/devel_bacula \
1817            scripts/Makefile \
1818            scripts/logrotate \
1819            scripts/bacula.desktop.gnome1 \
1820            scripts/bacula.desktop.gnome2 \
1821            scripts/bacula.desktop.gnome1.consolehelper \
1822            scripts/bacula.desktop.gnome2.consolehelper \
1823            scripts/bacula.desktop.gnome1.xsu \
1824            scripts/bacula.desktop.gnome2.xsu \
1825            scripts/gnome-console.console_apps \
1826            scripts/mtx-changer \
1827            scripts/bacula-tray-monitor.desktop \
1828            doc/Makefile \
1829            src/Makefile \
1830            src/host.h \
1831            src/console/Makefile \
1832            src/console/bconsole.conf \
1833            src/gnome-console/Makefile \
1834            src/gnome-console/gnome-console.conf \
1835            src/gnome2-console/Makefile \
1836            src/gnome2-console/gnome-console.conf \
1837            src/wx-console/Makefile \
1838            src/wx-console/wx-console.conf \
1839            src/tray-monitor/Makefile \
1840            src/tray-monitor/tray-monitor.conf \
1841            src/dird/Makefile \
1842            src/dird/bacula-dir.conf \
1843            src/lib/Makefile \
1844            src/stored/Makefile \
1845            src/stored/bacula-sd.conf \
1846            src/filed/Makefile \
1847            src/filed/bacula-fd.conf \
1848            src/filed/win32/Makefile \
1849            src/cats/Makefile \
1850            src/cats/make_catalog_backup \
1851            src/cats/delete_catalog_backup \
1852            src/cats/create_postgresql_database \
1853            src/cats/update_postgresql_tables \
1854            src/cats/make_postgresql_tables \
1855            src/cats/grant_postgresql_privileges \
1856            src/cats/drop_postgresql_tables \
1857            src/cats/drop_postgresql_database \
1858            src/cats/create_mysql_database \
1859            src/cats/update_mysql_tables \
1860            src/cats/make_mysql_tables \
1861            src/cats/grant_mysql_privileges \
1862            src/cats/drop_mysql_tables \
1863            src/cats/drop_mysql_database \
1864            src/cats/create_sqlite_database \
1865            src/cats/update_sqlite_tables \
1866            src/cats/make_sqlite_tables \
1867            src/cats/grant_sqlite_privileges \
1868            src/cats/drop_sqlite_tables \
1869            src/cats/drop_sqlite_database \
1870            src/cats/sqlite \
1871            src/cats/mysql \
1872            src/cats/create_bdb_database \
1873            src/cats/update_bdb_tables \
1874            src/cats/make_bdb_tables \
1875            src/cats/grant_bdb_privileges \
1876            src/cats/drop_bdb_tables \
1877            src/cats/drop_bdb_database \
1878            src/cats/create_bacula_database \
1879            src/cats/update_bacula_tables \
1880            src/cats/grant_bacula_privileges \
1881            src/cats/make_bacula_tables \
1882            src/cats/drop_bacula_tables \
1883            src/cats/drop_bacula_database \
1884            src/findlib/Makefile \
1885            src/tools/Makefile \
1886            src/win32/winbacula.nsi \
1887            src/win32/baculafd/bacula-fd.conf \
1888            src/win32/Makefile \
1889            src/win32/console/bconsole.conf \
1890            src/win32/wx-console/wx-console.conf \
1891         src/win32/pebuilder/Makefile \
1892            $PFILES ],  
1893           [(echo "Doing make of dependencies"; ${MAKE:-make} depend;) ]
1894 )
1895
1896 cd scripts
1897 chmod 755 startmysql stopmysql bacula startit stopit btraceback mtx-changer
1898 chmod 755 bconsole gconsole mtx-changer devel_bacula logrotate
1899 cd ..
1900
1901 c=src/cats
1902
1903 chmod 755 $c/create_bacula_database   $c/update_bacula_tables  $c/make_bacula_tables
1904 chmod 755 $c/grant_bacula_privileges  $c/drop_bacula_tables    $c/drop_bacula_database
1905
1906 chmod 755 $c/create_bdb_database      $c/update_bdb_tables     $c/make_bdb_tables
1907 chmod 755 $c/grant_bdb_privileges     $c/drop_bdb_tables       $c/drop_bdb_database
1908
1909 chmod 755 $c/create_mysql_database    $c/update_mysql_tables   $c/make_mysql_tables
1910 chmod 755 $c/grant_mysql_privileges   $c/drop_mysql_tables     $c/drop_mysql_database
1911
1912 chmod 755 $c/create_sqlite_database   $c/update_sqlite_tables  $c/make_sqlite_tables
1913 chmod 755 $c/grant_sqlite_privileges  $c/drop_sqlite_tables    $c/drop_sqlite_database
1914
1915 chmod 755 $c/create_postgresql_database  $c/update_postgresql_tables $c/make_postgresql_tables
1916 chmod 755 $c/grant_postgresql_privileges $c/drop_postgresql_tables   $c/drop_postgresql_database
1917
1918 chmod 755 $c/make_catalog_backup $c/delete_catalog_backup
1919 chmod 755 $c/sqlite
1920 chmod 755 $c/mysql
1921
1922 if test "x$ac_cv_sys_largefile_CFLAGS" != "xno" ; then
1923    largefile_support="yes"
1924 fi
1925
1926 #
1927 # A whole lot of hand springs to get the compiler version.
1928 #  This is because gcc changed the output in version 3.0
1929 #
1930 CCVERSION=`${CC} --version | tr '\n' ' ' | cut -f 3 -d ' '`
1931 if test "x${CCVERSION}" = "x" ; then
1932   CCVERSION=`${CC} --version | tr '\n' ' ' | cut -f 1 -d ' '`
1933 fi
1934 CXXVERSION=`${CXX} --version | tr '\n' ' ' | cut -f 3 -d ' '`
1935 if test x"${CXXVERSION}" = x ; then
1936   CXXVERSION=`${CXX} --version | tr '\n' ' ' | cut -f 1 -d ' '`
1937 fi
1938
1939 if test "x${subsysdir}" = "x${sbindir}" ; then
1940    echo " "
1941    echo " "
1942    echo "You have set --sbindir and --with-subsys-dir"
1943    echo "  both equal to: ${subsysdir} "
1944    echo "  This is not permitted. Please reconfigure."
1945    echo " "
1946    echo "Aborting configuration ..."
1947    echo " "
1948    echo " "
1949    exit 1
1950 fi 
1951
1952 if test "x${db_name}" = "xInternal" ; then
1953    echo " "
1954    echo " "
1955    echo "You have not specified either --enable-client-only or one of the"
1956    echo "  supported databases: MySQL, PostgreSQL, or SQLite".
1957    echo "  This is not permitted. Please reconfigure."
1958    echo " "
1959    echo "Aborting the configuration ..."
1960    echo " "
1961    echo " "
1962    exit 1
1963 fi
1964
1965 echo "
1966 Configuration on `date`:
1967
1968   Host:                       $host -- ${DISTNAME} ${DISTVER}
1969   Bacula version:             ${VERSION} (${DATE})
1970   Source code location:       ${srcdir}
1971   Install binaries:           ${sbindir}
1972   Install config files:       ${sysconfdir}
1973   Scripts directory:          ${scriptdir}
1974   Working directory:          ${working_dir}
1975   PID directory:              ${piddir}
1976   Subsys directory:           ${subsysdir}
1977   C Compiler:                 ${CC} ${CCVERSION}
1978   C++ Compiler:               ${CXX} ${CXXVERSION}
1979   Compiler flags:             ${WCFLAGS} ${CFLAGS} 
1980   Linker flags:               ${WLDFLAGS} ${LDFLAGS}
1981   Libraries:                  ${LIBS}
1982   Statically Linked Tools:    ${support_static_tools}
1983   Statically Linked FD:       ${support_static_fd}
1984   Statically Linked SD:       ${support_static_sd}
1985   Statically Linked DIR:      ${support_static_dir}
1986   Statically Linked CONS:     ${support_static_cons}
1987   Database type:              ${db_name}
1988   Database lib:               ${DB_LIBS}
1989
1990   Job Output Email:           ${job_email}
1991   Traceback Email:            ${dump_email}
1992   SMTP Host Address:          ${smtp_host}
1993
1994   Director Port:              ${dir_port}
1995   File daemon Port:           ${fd_port}
1996   Storage daemon Port:        ${sd_port}
1997
1998   Director User:              ${dir_user}
1999   Director Group:             ${dir_group}
2000   Storage Daemon User:        ${sd_user}
2001   Storage DaemonGroup:        ${sd_group}
2002   File Daemon User:           ${fd_user}
2003   File Daemon Group:          ${fd_group}
2004
2005   SQL binaries Directory      ${SQL_BINDIR}
2006
2007   Large file support:         $largefile_support
2008   Bacula conio support:       ${got_conio} ${CONS_LIBS}
2009   readline support:           ${got_readline} ${PRTREADLINE_SRC}
2010   TCP Wrappers support:       ${TCPW_MSG}
2011   ZLIB support:               ${have_zlib}
2012   enable-smartalloc:          ${support_smartalloc} 
2013   enable-gnome:               ${support_gnome} ${gnome_version}
2014   enable-wx-console:          ${support_wx_console}
2015   enable-tray-monitor:        ${support_tray_monitor}
2016   client-only:                ${build_client_only}
2017   ACL support:                ${have_acl}
2018
2019   " > config.out
2020
2021 cat config.out
2022
2023 # old stuff
2024 # cweb support:               ${got_cweb} ${CWEB_SRC}
2025   # gmp support:                      ${got_gmp} ${GMP_SRC}