X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;ds=sidebyside;f=bacula%2Fautoconf%2Fconfigure.in;h=44a88459e332833fde88f3ffa287fa302fc608d9;hb=fa62144cd87ee9f926371592fb831c06a2dd95a2;hp=e41aa4e90424d2c6e4f4099de749677cb4042c80;hpb=9dba75ffe99f47b793f37a6e45ee232fc4778e4b;p=bacula%2Fbacula diff --git a/bacula/autoconf/configure.in b/bacula/autoconf/configure.in index e41aa4e904..44a88459e3 100644 --- a/bacula/autoconf/configure.in +++ b/bacula/autoconf/configure.in @@ -12,7 +12,7 @@ AC_CONFIG_AUX_DIR(${BUILD_DIR}/autoconf) AC_CONFIG_HEADER(src/config.h:autoconf/config.h.in) dnl require a recent autoconf -AC_PREREQ(2.13) +AC_PREREQ(2.59) dnl search for true and false programs. @@ -40,10 +40,13 @@ AC_PROG_CXX AC_PROG_CC_C_O dnl Determine if C compiler support -c -o. AC_PROG_GCC_TRADITIONAL dnl Determine if ioctl() need -traditional. -if test "x$CC" = xgcc -then +if test "x$CC" = xgcc; then AC_DEFINE(HAVE_GCC) fi +AC_PATH_PROG(CXX, $CXX, $CXX) +if test ! -e $CXX; then + AC_MSG_ERROR(Unable to find C++ compiler) +fi dnl ------------------------------------------------------- dnl# Check for programs. @@ -61,10 +64,12 @@ AC_PATH_PROG(AR, ar, ar) dnl AC_PATH_PROG(RANLIB, ranlib, ranlib) AC_PATH_PROG(OPENSSL, openssl, none) AC_PATH_PROG(MTX, mtx, mtx) +AC_PATH_PROG(DD, dd, dd) AC_PATH_PROG(MKISOFS, mkisofs, mkisofs) AC_PATH_PROG(PYTHON, python, python) AC_PATH_PROG(GROWISOFS, growisofs, growisofs) AC_PATH_PROG(DVDRWMEDIAINFO, dvd+rw-mediainfo, dvd+rw-mediainfo) +AC_PATH_PROG(DVDRWFORMAT, dvd+rw-format, dvd+rw-format) AC_PATH_PROG(PKGCONFIG, pkg-config, pkg-config) AC_ARG_VAR(WXCONFIG, [wx-config command. On some systems, you must set it to wx-config-2.6 to use wxWidgets 2.6.]) if test "x$WXCONFIG" = x; then @@ -100,8 +105,6 @@ AC_SUBST(LOCAL_CFLAGS) AC_SUBST(LOCAL_LDFLAGS) AC_SUBST(LOCAL_DEFS) - - dnl -------------------------------------------------- dnl Bacula OP Sys determination (see aclocal.m4) dnl -------------------------------------------------- @@ -112,10 +115,16 @@ dnl Bacula OPSys Distribution determination (see aclocal.m4) # ---------------------------------------------------------- BA_CHECK_OPSYS_DISTNAME -# ----------------------------------------------------------- -dnl Check for gnome stuff for gnome-console -# ---------------------------------------------------------- -AM_ACLOCAL_INCLUDE(gnome-macros) +# -------------------------------------------------- +# Suppport for gettext (translations) +# By default, $datadir is ${prefix}/share +# -------------------------------------------------- +AM_GNU_GETTEXT([external]) +if test x${prefix} = xNONE ; then + if test `eval echo ${datadir}` = NONE/share ; then + datadir=/usr/share + fi +fi # ------------------------------------------------------------------ # If the user has not set --prefix, we set our default to nothing. @@ -130,6 +139,9 @@ if test x${prefix} = xNONE ; then prefix= fi sysconfdir=`eval echo ${sysconfdir}` +datadir=`eval echo ${datadir}` +localedir=`eval echo ${datadir}/locale` +AC_DEFINE_UNQUOTED(LOCALEDIR, "$localedir") # ------------------------------------------------------------------------- # If the user has not set --exec-prefix, we default to ${prefix} @@ -145,6 +157,14 @@ if test x$sbindir = x'${exec_prefix}/sbin' ; then sbindir=${exec_prefix}/sbin fi sbindir=`eval echo ${sbindir}` + +# ------------------------------------------------------------------------- +# If the user has not set --mandir, we default to /usr/share/man +# ------------------------------------------------------------------------- +if test x$mandir = x'${prefix}/man' ; then + mandir=/usr/share/man +fi + # ------------------------------------------------------------------ # All list of languages for which a translation exist. Each @@ -159,7 +179,7 @@ then USE_NLS=no USE_INCLUDED_LIBINTL=no #else -# AM_GNU_GETTEXT + AM_GNU_GETTEXT fi @@ -173,6 +193,7 @@ support_conio=yes support_gnome=no support_wx_console=no support_tls=no +support_crypto=no gnome_version= wx_version= support_static_tools=no @@ -182,6 +203,8 @@ support_static_dir=no support_static_cons=no support_python=no build_client_only=no +build_dird=yes +build_stored=yes cats= db_name=Internal DB_NAME=bdb @@ -215,10 +238,7 @@ if test x$support_gnome = xyes; then GNOME_DIR=src/gnome2-console gnome_version="Version 2.x" else -dnl do 1.4 stuff - GNOME_INIT - GNOME_DIR=src/gnome-console - gnome_version="Version 1.4" + AC_MSG_ERROR(Unable to find Gnome 2 installation) fi fi AC_SUBST(GNOME_DIR) @@ -383,9 +403,9 @@ AC_SUBST(STATIC_WX_CONS) AC_ARG_ENABLE(client-only, [ --enable-client-only build client (File daemon) only [disabled]], [if test x$enableval = xyes; then - build_client_only=yes - db_name=None - DB_NAME=none + build_client_only=yes + db_name=None + DB_NAME=none fi]) if test x$build_client_only = xno; then ALL_DIRS="subdirs" @@ -394,6 +414,39 @@ else fi AC_SUBST(ALL_DIRS) +# ------------------------------------------- +# director (default on) +# ------------------------------------------- +AC_ARG_ENABLE(build-dird, + [ --enable-build-dird enable building of dird (Director) [enabled]], + [if test x$enableval = xno; then + build_dird=no + fi]) +if test x$build_dird = xyes; then + DIRD_DIR="src/dird" + DIR_TOOLS="DIRTOOLS" +else + DIRD_DIR="" + DIR_TOOLS="NODIRTOOLS" +fi +AC_SUBST(DIRD_DIR) +AC_SUBST(DIR_TOOLS) + +# ------------------------------------------- +# stored (default on) +# ------------------------------------------- +AC_ARG_ENABLE(build-stored, + [ --enable-build-stored enable building of stored (Storage daemon) [enabled]], + [if test x$enableval = xno; then + build_stored=no + fi]) +if test x$build_stored = xyes; then + STORED_DIR="src/stored" +else + STORED_DIR="" +fi +AC_SUBST(STORED_DIR) + # --------------------------------------------------- # Check for conio (Bacula readline substitute)( # --------------------------------------------------- @@ -467,15 +520,19 @@ if test x$support_readline = xyes; then case "$with_readline" in no) : ;; yes|*) - if test "$with_readline" != "yes"; then - CONS_INC="-I${with_readline}" - CONS_LDFLAGS="-L$with_readline" + if test -f ${with_readline}/readline.h; then + CONS_INC="-I${with_readline}" + CONS_LDFLAGS="-L$with_readline" + elif test -f ${with_readline}/include/readline/readline.h; then + CONS_INC="-I${with_readline}/include/readline" + CONS_LDFLAGS="-L${with_readline}/lib" + with_readline="${with_readline}/include/readline" else with_readline="/usr/include/readline" fi AC_CHECK_HEADER(${with_readline}/readline.h, [ AC_DEFINE(HAVE_READLINE) - CONS_LIBS="-lreadline -ltermcap" + CONS_LIBS="-lreadline -lhistory -ltermcap" got_readline="yes" ], [ echo " " @@ -527,7 +584,7 @@ MAKE_SHELL=/bin/sh AC_SUBST(MAKE_SHELL) AC_HEADER_STAT AC_HEADER_DIRENT -AC_CHECK_FUNCS(strcasecmp select setenv putenv tcgetattr setlocale lstat lchown) +AC_CHECK_FUNCS(strcasecmp select setenv putenv tcgetattr lstat lchown) AC_CHECK_FUNCS(nanosleep nl_langinfo) AC_CHECK_HEADERS(varargs.h) @@ -548,29 +605,40 @@ AC_ARG_WITH(python, PYTHON_LIBS= if test "$withval" != "no"; then if test "$withval" = "yes"; then - if test -f /usr/include/python2.2/Python.h; then - PYTHON_INCDIR=-I/usr/include/python2.2 - PYTHON_LIBS="-L/usr/lib/python2.2/config -lpython2.2 -lutil -ldl" - elif test -f /usr/include/python2.3/Python.h; then - PYTHON_INCDIR=-I/usr/include/python2.3 - PYTHON_LIBS="-L/usr/lib/python2.3/config -lpython2.3 -lutil -ldl" - elif test -f /usr/include/python2.4/Python.h; then - PYTHON_INCDIR=-I/usr/include/python2.4 - PYTHON_LIBS="-L/usr/lib/python2.4/config -lpython2.4 -lutil -ldl" - elif test -f $prefix/include/Python.h; then - PYTHON_INCDIR=-I$prefix/include - PYTHON_LIBS="-L$prefix/lib/config -lpython -lutil -ldl" - else + for python_root in /usr /usr/local /usr/sfw; do + if test -f $python_root/include/python2.2/Python.h; then + PYTHON_INCDIR=-I$python_root/include/python2.2 + PYTHON_LIBS="-L$python_root/lib/python2.2/config -lpython2.2" + break + elif test -f $python_root/include/python2.3/Python.h; then + PYTHON_INCDIR=-I$python_root/include/python2.3 + PYTHON_LIBS="-L$python_root/lib/python2.3/config -lpython2.3" + break + elif test -f $python_root/include/python2.4/Python.h; then + PYTHON_INCDIR=-I$python_root/include/python2.4 + PYTHON_LIBS="-L$python_root/lib/python2.4/config -lpython2.4" + break + fi + done + if test x$PYTHON_INCDIR = x; then + if test -f $prefix/include/Python.h; then + PYTHON_INCDIR=-I$prefix/include + PYTHON_LIBS="-L$prefix/lib/config -lpython" + else AC_MSG_RESULT(no) AC_MSG_ERROR(Unable to find Python.h in standard locations) + fi fi else if test -f $withval/Python.h; then PYTHON_INCDIR=-I$withval - PYTHON_LIBS="-L$withval/config -lpython -lutil -ldl" + PYTHON_LIBS="-L$withval/config -lpython" elif test -f $withval/include/Python.h; then PYTHON_INCDIR=-I$withval/include - PYTHON_LIBS="-L$withval/lib/config -lpython -lutil -ldl" + PYTHON_LIBS="-L$withval/lib/config -lpython" + elif test -f $withval/include/python/Python.h; then + PYTHON_INCDIR=-I$withval/include/python + PYTHON_LIBS="-L$withval/lib/python/config -lpython" else AC_MSG_RESULT(no) AC_MSG_ERROR(Invalid Python directory $withval - unable to find Python.h under $withval) @@ -579,7 +647,12 @@ AC_ARG_WITH(python, AC_DEFINE([HAVE_PYTHON], 1) AC_MSG_RESULT(yes) support_python=yes - + AC_MSG_NOTICE(checking for more Python libs) + saved_LIBS="$LIBS"; LIBS= + AC_SEARCH_LIBS(shm_open, [rt]) + AC_CHECK_LIB(util, openpty) + PYTHON_LIBS="$PYTHON_LIBS $LIBS" + LIBS="$saved_LIBS" else AC_MSG_RESULT(no) fi @@ -606,6 +679,7 @@ AC_CHECK_FUNC(socket, # Check whether user wants TCP wrappers support (default off) # ----------------------------------------------------------- TCPW_MSG="no" +WRAPLIBS="" AC_ARG_WITH(tcp-wrappers, [ --with-tcp-wrappers=DIR enable tcpwrappers support], [ @@ -613,8 +687,10 @@ AC_ARG_WITH(tcp-wrappers, saved_LIBS="$LIBS" LIBS="$saved_LIBS -lwrap" AC_MSG_CHECKING(for libwrap) + AC_SEARCH_LIBS(nanosleep, [rt]) AC_TRY_LINK( - [ #include + [ #include + #include int deny_severity = 0; int allow_severity = 0; struct request_info *req; ], @@ -623,10 +699,14 @@ AC_ARG_WITH(tcp-wrappers, AC_MSG_RESULT(yes) AC_DEFINE(HAVE_LIBWRAP) TCPW_MSG="yes" + LIBS="$saved_LIBS" + WRAPLIBS="-lwrap" ], [ LIBS="$saved_LIBS -lwrap -lnsl" + WRAPLIBS="$saved_LIBS -lwrap -lnsl" AC_TRY_LINK( - [ #include + [ #include + #include int deny_severity = 0; int allow_severity = 0; struct request_info *req; ], @@ -635,6 +715,8 @@ AC_ARG_WITH(tcp-wrappers, AC_MSG_RESULT(yes) AC_DEFINE(HAVE_LIBWRAP) TCPW_MSG="yes" + LIBS="$saved_LIBS" + WRAPLIBS="-lwrap" ], [AC_MSG_ERROR([*** libwrap missing]) ] ] ) @@ -670,19 +752,34 @@ if test "x$with_openssl_directory" != "x"; then AC_TRY_LINK([ #include ], [ CRYPTO_set_id_callback(NULL); ], - [ support_tls="yes" ], + [ + support_tls="yes" + support_crypto="yes" + ], [ support_tls="no" ] ) + AC_TRY_LINK([ #include ], + [ EVP_sha512(); ], + [ ac_cv_openssl_sha2="yes" ], + [ ac_cv_openssl_sha2="no" ] + ) + LIBS="$saved_LIBS" CFLAGS="$saved_CFLAGS" if test "$support_tls" = "yes"; then AC_DEFINE(HAVE_OPENSSL, 1, [Define if OpenSSL library is available]) AC_DEFINE(HAVE_TLS, 1, [Define if TLS support should be enabled]) + AC_DEFINE(HAVE_CRYPTO, 1, [Define if encryption support should be enabled]) + fi + + if test "$ac_cv_openssl_sha2" = "yes"; then + AC_DEFINE(HAVE_SHA2, 1, [Define if the SHA-2 family of digest algorithms is available]) fi else support_tls="no" + support_crypto="no" OPENSSL_LIBS="" OPENSSL_INC="" fi @@ -692,6 +789,13 @@ AC_SUBST(OPENSSL_LIBS) AC_SUBST(OPENSSL_INC) +# ----------------------------------------------------------- +# Python and OpenSSL are using dlopen +# ----------------------------------------------------------- + +if test "$support_python" = "yes" -o "$support_tls" = "yes"; then + AC_SEARCH_LIBS(dlopen, [dl]) +fi # ------------------------------------------ # Where to place working dir @@ -843,7 +947,6 @@ AC_ARG_WITH(dir-password, if test "x$dir_password" = "x" ; then if test "x$OPENSSL" = "xnone" ; then -# key=`date | uuencode /dev/stdout | tr "\"@\\\`\\ \\=\\,\\(\\)\\#\\.\\!\\-$'" abcdefghijklmnopqrst | awk '{getline} {print} {exit}'` key=`autoconf/randpass 33` else key=`openssl rand -base64 33` @@ -863,7 +966,6 @@ AC_ARG_WITH(fd-password, if test "x$fd_password" = "x" ; then if test "x$OPENSSL" = "xnone" ; then -# key=`date | uuencode /dev/stdout | tr "\"@\\\`\\ \\=\\,\\(\\)\\#\\.\\!\\-$'" tsrqponmlkjihgfedcba | awk '{getline} {print} {exit}'` key=`autoconf/randpass 37` else key=`openssl rand -base64 33` @@ -883,7 +985,6 @@ AC_ARG_WITH(sd-password, if test "x$sd_password" = "x" ; then if test "x$OPENSSL" = "xnone" ; then -# key=`date | uuencode /dev/stdout | tr "\"@\\\`\\ \\=\\,\\(\\)\\#\\.\\!\\-$'" 123456789uvwxyzabcdef | awk '{getline} {print} {exit}'` key=`autoconf/randpass 41` else key=`openssl rand -base64 33` @@ -903,7 +1004,6 @@ AC_ARG_WITH(mon-dir-password, if test "x$mon_dir_password" = "x" ; then if test "x$OPENSSL" = "xnone" ; then -# key=`date | uuencode /dev/stdout | tr "\"@\\\`\\ \\=\\,\\(\\)\\#\\.\\!\\-$'" abcdefghijklmnopqrst | awk '{getline} {print} {exit}'` key=`autoconf/randpass 33` else key=`openssl rand -base64 33` @@ -923,7 +1023,6 @@ AC_ARG_WITH(mon-fd-password, if test "x$mon_fd_password" = "x" ; then if test "x$OPENSSL" = "xnone" ; then -# key=`date | uuencode /dev/stdout | tr "\"@\\\`\\ \\=\\,\\(\\)\\#\\.\\!\\-$'" tsrqponmlkjihgfedcba | awk '{getline} {print} {exit}'` key=`autoconf/randpass 37` else key=`openssl rand -base64 33` @@ -943,7 +1042,6 @@ AC_ARG_WITH(mon-sd-password, if test "x$mon_sd_password" = "x" ; then if test "x$OPENSSL" = "xnone" ; then -# key=`date | uuencode /dev/stdout | tr "\"@\\\`\\ \\=\\,\\(\\)\\#\\.\\!\\-$'" 123456789uvwxyzabcdef | awk '{getline} {print} {exit}'` key=`autoconf/randpass 41` else key=`openssl rand -base64 33` @@ -958,75 +1056,6 @@ AC_SUBST(mon_dir_password) AC_SUBST(mon_fd_password) AC_SUBST(mon_sd_password) -# ------------------------------------------------------------------------- -# Set variables for bimagemgr installation -# ------------------------------------------------------------------------- -bimagemgr_cgidir=/var/www/cgi-bin -AC_ARG_WITH(bimagemgr-cgidir, - [ --with-bimagemgr-cgidir=DIR specify bimagemgr cgi-bin dir], - [ - if test "x$withval" != "xno" ; then - bimagemgr_cgidir=$withval - fi - ] -) - -bimagemgr_docdir=/var/www/html -AC_ARG_WITH(bimagemgr-docdir, - [ --with-bimagemgr-docdir=DIR specify bimagemgr doc root dir], - [ - if test "x$withval" != "xno" ; then - bimagemgr_docdir=$withval - fi - ] -) - -bimagemgr_binowner=root -AC_ARG_WITH(bimagemgr-binowner, - [ --with-bimagemgr-binowner=USER specify bimagemgr binary file owner], - [ - if test "x$withval" != "xno" ; then - bimagemgr_binowner=$withval - fi - ] -) - -bimagemgr_bingroup=root -AC_ARG_WITH(bimagemgr-bingroup, - [ --with-bimagemgr-bingroup=USER specify bimagemgr binary file group], - [ - if test "x$withval" != "xno" ; then - bimagemgr_bingroup=$withval - fi - ] -) - -bimagemgr_dataowner=apache -AC_ARG_WITH(bimagemgr-dataowner, - [ --with-bimagemgr-dataowner=USER specify bimagemgr data file owner], - [ - if test "x$withval" != "xno" ; then - bimagemgr_dataowner=$withval - fi - ] -) - -bimagemgr_datagroup=apache -AC_ARG_WITH(bimagemgr-datagroup, - [ --with-bimagemgr-datagroup=USER specify bimagemgr data file group], - [ - if test "x$withval" != "xno" ; then - bimagemgr_datagroup=$withval - fi - ] -) - -AC_SUBST(bimagemgr_cgidir) -AC_SUBST(bimagemgr_docdir) -AC_SUBST(bimagemgr_binowner) -AC_SUBST(bimagemgr_bingroup) -AC_SUBST(bimagemgr_dataowner) -AC_SUBST(bimagemgr_datagroup) # # Handle users and groups for each daemon @@ -1259,6 +1288,8 @@ AC_TRY_CPP([#include fi AC_MSG_RESULT($fstype) +AC_CHECK_HEADER(sys/statvfs.h, [ AC_DEFINE(HAVE_SYS_STATVFS_H,1,[Defines if your system have the sys/statvfs.h header file])] , ) + dnl# -------------------------------------------------------------------------- dnl# CHECKING FOR TYPEDEFS, STRUCTURES, AND COMPILER CHARACTERISTICS. dnl# -------------------------------------------------------------------------- @@ -1544,6 +1575,7 @@ AC_FUNC_SETPGRP dnl check for BSD setpgrp. dnl# FreeBSD needs to link libxpg4 AC_CHECK_LIB(xpg4, setlocale, [LIBS="$LIBS -lxpg4"]) +AC_CHECK_LIB(intl, gettext, [LIBS="$LIBS -lintl"]) AC_CHECK_LIB(sun, getpwnam) @@ -1556,22 +1588,28 @@ if test x$FDLIBS = x-lz; then have_zlib=yes fi -AC_CHECK_HEADER(sys/acl.h) -AC_CHECK_LIB(acl, acl_get_file, [FDLIBS="-lacl $FDLIBS"]) +# +# Check for ACL libraries +# have_acl=no -if test $ac_cv_lib_acl_acl_get_file = yes; then +AC_CHECK_HEADER(sys/acl.h) +AC_CHECK_FUNC(acl_get_file, [have_acl=yes], + [AC_CHECK_LIB(acl, acl_get_file, [have_acl=yes; FDLIBS="-lacl $FDLIBS"], + [AC_CHECK_LIB(sec, acltotext, [have_acl=yes; FDLIBS="-lsec $FDLIBS"])] + )] +) +if test $have_acl = yes; then AC_DEFINE(HAVE_ACL) - have_acl=yes fi dnl Check for pthread libraries PTHREAD_LIB="" AC_CHECK_LIB(pthread, pthread_create, PTHREAD_LIB="-lpthread", - [AC_CHECK_LIB(pthreads, pthread_create, PTHREAD_LIB="-lpthreads", - [AC_CHECK_LIB(c_r, pthread_create, PTHREAD_LIB="-lc_r", - [AC_CHECK_FUNC(pthread_create)] - )] - )] + [AC_CHECK_LIB(pthreads, pthread_create, PTHREAD_LIB="-lpthreads", + [AC_CHECK_LIB(c_r, pthread_create, PTHREAD_LIB="-lc_r", + [AC_CHECK_FUNC(pthread_create)] + )] + )] ) AC_SUBST(FDLIBS) @@ -1589,6 +1627,7 @@ AC_SUBST(CFLAGS) AC_SUBST(CPPFLAGS) AC_SUBST(LDFLAGS) AC_SUBST(X_CFLAGS) +AC_SUBST(DEFS) AC_SUBST(LIBS) AC_SUBST(DLIB) AC_SUBST(DB_LIBS) @@ -1596,6 +1635,7 @@ AC_SUBST(X_LIBS) AC_SUBST(X_EXTRA_LIBS) AC_SUBST(WCFLAGS) AC_SUBST(WLDFLAGS) +AC_SUBST(WRAPLIBS) dnl# extra configurable objects OBJLIST= @@ -1617,6 +1657,9 @@ PSCMD="ps -e" WIN32= MACOSX= hostname=`uname -n | cut -d '.' -f 1` +if test x${hostname} = x ; then + hostname="localhost" +fi case "$DISTNAME" in aix) DISTVER=`uname -r` @@ -1754,7 +1797,6 @@ redhat) platforms/redhat/bacula-dir \ platforms/redhat/bacula.spec \ " - hostname=`hostname -s` ;; mandrake) DISTVER=`cat /etc/mandrake-release | grep release |\ @@ -1890,8 +1932,7 @@ AC_OUTPUT([autoconf/Make.common \ scripts/bacula.desktop.gnome2.xsu \ scripts/gnome-console.console_apps \ scripts/mtx-changer \ - scripts/dvd-writepart \ - scripts/dvd-freespace \ + scripts/dvd-handler \ scripts/bacula-tray-monitor.desktop \ scripts/logwatch/Makefile \ scripts/logwatch/logfile.bacula.conf \ @@ -1899,8 +1940,6 @@ AC_OUTPUT([autoconf/Make.common \ src/host.h \ src/console/Makefile \ src/console/bconsole.conf \ - src/gnome-console/Makefile \ - src/gnome-console/gnome-console.conf \ src/gnome2-console/Makefile \ src/gnome2-console/gnome-console.conf \ src/wx-console/Makefile \ @@ -1957,21 +1996,22 @@ AC_OUTPUT([autoconf/Make.common \ src/cats/drop_bacula_tables \ src/cats/drop_bacula_database \ src/findlib/Makefile \ + src/pygtk-console/Makefile \ src/tools/Makefile \ src/win32/winbacula.nsi \ src/win32/baculafd/bacula-fd.conf \ src/win32/Makefile \ src/win32/console/bconsole.conf \ src/win32/wx-console/wx-console.conf \ - src/win32/pebuilder/Makefile \ - src/bimagemgr/Makefile \ - src/bimagemgr/bacula-bimagemgr.spec \ + src/win32/pebuilder/Makefile \ + po/Makefile.in \ $PFILES ], [(echo "Doing make of dependencies"; ${MAKE:-make} depend;) ] ) cd scripts chmod 755 startmysql stopmysql bacula startit stopit btraceback mtx-changer +chmod 755 dvd-handler chmod 755 bconsole gconsole mtx-changer devel_bacula logrotate cd .. @@ -1989,6 +2029,9 @@ chmod 755 $c/grant_mysql_privileges $c/drop_mysql_tables $c/drop_mysql_dat chmod 755 $c/create_sqlite_database $c/update_sqlite_tables $c/make_sqlite_tables chmod 755 $c/grant_sqlite_privileges $c/drop_sqlite_tables $c/drop_sqlite_database +chmod 755 $c/create_sqlite3_database $c/update_sqlite3_tables $c/make_sqlite3_tables +chmod 755 $c/grant_sqlite3_privileges $c/drop_sqlite3_tables $c/drop_sqlite3_database + chmod 755 $c/create_postgresql_database $c/update_postgresql_tables $c/make_postgresql_tables chmod 755 $c/grant_postgresql_privileges $c/drop_postgresql_tables $c/drop_postgresql_database @@ -2051,6 +2094,8 @@ Configuration on `date`: Working directory: ${working_dir} PID directory: ${piddir} Subsys directory: ${subsysdir} + Man directory: ${mandir} + Data directory: ${datadir} C Compiler: ${CC} ${CCVERSION} C++ Compiler: ${CXX} ${CXXVERSION} Compiler flags: ${WCFLAGS} ${CFLAGS} @@ -2084,14 +2129,17 @@ Configuration on `date`: Large file support: $largefile_support Bacula conio support: ${got_conio} ${CONS_LIBS} readline support: ${got_readline} ${PRTREADLINE_SRC} - TCP Wrappers support: ${TCPW_MSG} + TCP Wrappers support: ${TCPW_MSG} ${WRAPLIBS} TLS support: ${support_tls} + Encryption support: ${support_crypto} ZLIB support: ${have_zlib} enable-smartalloc: ${support_smartalloc} enable-gnome: ${support_gnome} ${gnome_version} enable-wx-console: ${support_wx_console} ${wx_version} enable-tray-monitor: ${support_tray_monitor} client-only: ${build_client_only} + build-dird: ${build_dird} + build-stored: ${build_stored} ACL support: ${have_acl} Python support: ${support_python} ${PYTHON_LIBS}