Bacula-users

Re: [Bacula-users] Problem installing bacula on Solaris 10

2014-10-27 19:43:03
Subject: Re: [Bacula-users] Problem installing bacula on Solaris 10
From: Kenneth Garges <garges AT ucsc DOT edu>
To: "Ana Emília M. Arruda" <emiliaarruda AT gmail DOT com>
Date: Mon, 27 Oct 2014 16:36:38 -0700
Thanks for the suggestion. I tried it by changing the SHELL = /bin/sh line to SHELL = /usr/bin/bash in the Makefile. Unfortunately I get the same error although with a different code number:

-bash-3.2$ /opt/csw/bin/gmake DESTDIR= depend
/usr/bin/bash: # DO NOT DELETE: nice dependency list follows: command not found
gmake: *** [depend] Error 127




Kenneth Garges



On 25Oct 2014, at 5:21 AM, Ana Emília M. Arruda <emiliaarruda AT gmail DOT com> wrote:

Hi Kenneth,

I'm not a Solaris expert, but have you tried using bash instead of Bourne shell (sh)?

Best regards,
Ana

On Fri, Oct 24, 2014 at 9:45 PM, Kenneth Garges <garges AT ucsc DOT edu> wrote:
I’m trying to build  Bacula 7.0.4 on a Solaris 10 box (Sun T5220) but am getting this error during the configure:

Doing make of dependencies
==>Entering directory /home/garges/bacula-7.0.4/src
==>Entering directory /home/garges/bacula-7.0.4/scripts
==>Entering directory /home/garges/bacula-7.0.4/src/lib
mksh: Fatal error in reader: = missing from replacement macro reference
Current working directory /home/garges/bacula-7.0.4/src/lib
*** Error code 1
The following command caused the error:
for I in src scripts src/lib src/findlib src/filed  src/console src/plugins/fd src/cats src/dird src/stored src/tools manpages; \
  do (cd $I; echo "==>Entering directory `pwd`"; make DESTDIR= depend || exit 1); done
make: Fatal error: Command failed for target `depend'
chmod: WARNING: can't access storage-ctl
chmod: WARNING: can't access bsg_persist

Following a suggestion I read on the net I changed line 52 of Makefile.in to force configure to use gmake instead of the Solaris make:

-bash-3.2$ more +52 -1 Makefile.in
          do (cd $$I; echo "==>Entering directory `pwd`"; /opt/csw/bin/gmake DESTDIR=$(DESTDIR) $@ || exit 1); done

That changes the error to:

Doing make of dependencies
==>Entering directory /home/garges/bacula-7.0.4/src
gmake[1]: Entering directory `/home/garges/bacula-7.0.4/src'
gmake[1]: Nothing to be done for `depend'.
gmake[1]: Leaving directory `/home/garges/bacula-7.0.4/src'
==>Entering directory /home/garges/bacula-7.0.4/scripts
gmake[1]: Entering directory `/home/garges/bacula-7.0.4/scripts'
gmake[1]: `depend' is up to date.
gmake[1]: Leaving directory `/home/garges/bacula-7.0.4/scripts'
==>Entering directory /home/garges/bacula-7.0.4/src/lib
gmake[1]: Entering directory `/home/garges/bacula-7.0.4/src/lib'
/bin/sh: # DO NOT DELETE: nice dependency list follows: not found
gmake[1]: *** [depend] Error 1
gmake[1]: Leaving directory `/home/garges/bacula-7.0.4/src/lib'
*** Error code 1
The following command caused the error:
for I in src scripts src/lib src/findlib src/filed  src/console src/plugins/fd src/cats src/dird src/stored src/tools manpages; \
  do (cd $I; echo "==>Entering directory `pwd`"; /opt/csw/bin/gmake DESTDIR= depend || exit 1); done
make: Fatal error: Command failed for target `depend'
chmod: WARNING: can't access storage-ctl
chmod: WARNING: can't access bsg_persist

Trying to run it manually gives the same error:

-bash-3.2$ cd src/lib
-bash-3.2$ /opt/csw/bin/gmake DESTDIR= depend
/bin/sh: # DO NOT DELETE: nice dependency list follows: not found
gmake: *** [depend] Error 1

The error seems to imply the shell is trying to execute the last line of the Makefile.in which is a comment!
-bash-3.2$ tail -2 Makefile.in
# DO NOT DELETE: nice dependency list follows

-bash-3.2$ tail -2 Makefile

# -----------------------------------------------------------------------



So I’m stumped. What should I try next?




Here’s the whole dialog:

PATH=/opt/csw/bin:/usr/bin:/usr/ccs/bin:/etc:/usr/openwin/bin:/usr/local/bin:/usr/ucb:/usr/sbin
export PATH

LDFLAGS="-L/opt/csw/lib -R/opt/csw/lib -L/opt/csw/lib/openssl -R/opt/csw/lib/openssl -I/opt/csw/include -I/opt/csw/include/openssl"
export LDFLAGS

CFLAGS="-g -I/opt/csw/include -lcrypto -lssl -L/opt/csw/lib -R/opt/csw/lib"
export CFLAGS

./configure \
  --sbindir=/usr/local/bin \
  --sysconfdir=/etc/bacula \
  --with-postgresql=/opt/csw \
  --enable-smartalloc \
  --with-pid-dir=/var/bacula/working \
  --with-subsys-dir=/var/bacula/subsys \
  --with-working-dir=/var/bacula/working \
  --with-dir-user=bacula \
  --with-dir-group=backup \
  --with-sd-user=bacula \
  --with-sd-group=backup \
  --with-fd-user=root \
  --with-fd-group=backup \
  --with-smtp-host=smtp.ucsc.edu \
  --with-openssl=/opt/csw \
  --disable-ipv6 --disable-batch-insert

checking for true... /usr/bin/true
checking for false... /usr/bin/false
configuring for Bacula 7.0.4 (04 June 2014)
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking whether gcc and cc understand -c and -o together... yes
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /usr/xpg4/bin/grep
checking for egrep... /usr/xpg4/bin/grep -E
checking whether gcc needs -traditional... no
checking for g++... /usr/local/bin/g++
checking for a BSD-compatible install... /opt/csw/bin/ginstall -c
checking for mv... /usr/bin/mv
checking for rm... /usr/bin/rm
checking for cp... /usr/bin/cp
checking for sed... /usr/bin/sed
checking for echo... /usr/bin/echo
checking for cmp... /usr/bin/cmp
checking for tbl... /usr/bin/tbl
checking for ar... /usr/ccs/bin/ar
checking for openssl... /opt/csw/bin/openssl
checking for mtx... mtx
checking for dd... /usr/bin/dd
checking for mkisofs... mkisofs
checking for python... /usr/bin/python
checking for growisofs... growisofs
checking for dvd+rw-mediainfo... dvd+rw-mediainfo
checking for dvd+rw-format... dvd+rw-format
checking for pkg-config... pkg-config
checking for qmake... none
checking for gmake... /opt/csw/bin/gmake
checking for cdrecord... cdrecord
checking for pidof... pidof
checking for gawk... gawk
checking for gawk... /opt/csw/bin/gawk
checking build system type... sparc-sun-solaris2.10
checking host system type... sparc-sun-solaris2.10
checking how to print strings... printf
checking for a sed that does not truncate output... (cached) /usr/bin/sed
checking for fgrep... /usr/xpg4/bin/grep -F
checking for ld used by gcc... /usr/ccs/bin/ld
checking if the linker (/usr/ccs/bin/ld) is GNU ld... no
checking for BSD- or MS-compatible name lister (nm)... /usr/ccs/bin/nm -p
checking the name lister (/usr/ccs/bin/nm -p) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 786240
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert sparc-sun-solaris2.10 file names to sparc-sun-solaris2.10 format... func_convert_file_noop
checking how to convert sparc-sun-solaris2.10 file names to toolchain format... func_convert_file_noop
checking for /usr/ccs/bin/ld option to reload object files... -r
checking for objdump... no
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for archiver @FILE support... no
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/ccs/bin/nm -p output from gcc object... ok
checking for sysroot... no
checking for mt... mt
checking if mt is a manifest tool... no
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/ccs/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... yes
checking dynamic linker characteristics... solaris2.10 ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... no
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking how to run the C++ preprocessor... /usr/local/bin/g++ -E
checking for ld used by /usr/local/bin/g++... /usr/ccs/bin/ld
checking if the linker (/usr/ccs/bin/ld) is GNU ld... no
checking whether the /usr/local/bin/g++ linker (/usr/ccs/bin/ld) supports shared libraries... yes
checking for /usr/local/bin/g++ option to produce PIC... -fPIC -DPIC
checking if /usr/local/bin/g++ PIC flag -fPIC -DPIC works... yes
checking if /usr/local/bin/g++ static flag -static works... no
checking if /usr/local/bin/g++ supports -c -o file.o... yes
checking if /usr/local/bin/g++ supports -c -o file.o... (cached) yes
checking whether the /usr/local/bin/g++ linker (/usr/ccs/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... solaris2.10 ld.so
checking how to hardcode library paths into programs... immediate
checking for library containing dlopen... none required
checking for dlerror... yes
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dld_link in -ldld... no
checking for Operating System Distribution... done
checking whether make sets $(MAKE)... yes
checking whether NLS is requested... yes
checking for msgfmt... no
checking for gmsgfmt... /opt/csw/bin/gmsgfmt
checking for xgettext... no
checking for msgmerge... no
checking for ld used by GCC... /usr/ccs/bin/ld
checking if the linker (/usr/ccs/bin/ld) is GNU ld... no
checking for shared library run path origin... done
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking whether NLS is requested... yes
checking for GNU gettext in libc... no
checking for iconv... yes
checking how to link with libiconv... /usr/local/lib/libiconv.so -L/usr/local/lib -L/usr/openwin/lib -R/usr/local/lib
checking for GNU gettext in libintl... no
checking whether to use NLS... no
checking for msgfmt... (cached) :
checking curses.h usability... yes
checking curses.h presence... yes
checking for curses.h... yes
checking for tgetent in -ltinfo... no
checking for tgetent in -lncurses... no
checking for tgetent in -ltermcap... yes
checking whether stat file-mode macros are broken... no
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking for strcasecmp... yes
checking for select... yes
checking for setenv... yes
checking for putenv... yes
checking for tcgetattr... yes
checking for lstat... yes
checking for lchown... yes
checking for lchmod... no
checking for futimes... no
checking for fchmod... yes
checking for fchown... yes
checking for nanosleep... no
checking for nl_langinfo... yes
checking varargs.h usability... no
checking varargs.h presence... no
checking for varargs.h... no
checking for socket... no
checking for socket in -lxnet... yes
checking for socket in -lsocket... yes
checking for socket in -linet... no
checking for OpenSSL... yes
checking for EVP_PKEY_encrypt_old in -lcrypto... no
checking for library containing dlopen... (cached) none required
checking for PostgreSQL support... yes
checking for crypt... yes
checking for MySQL support... no
checking for MySQL embedded support... no
checking for SQLite3 support... no
checking for getconf... getconf
checking for CFLAGS value to request large file support... -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
checking for LDFLAGS value to request large file support... 
checking for LIBS value to request large file support... 
checking for _FILE_OFFSET_BITS... 64
checking for _LARGEFILE_SOURCE... 1
checking for _LARGE_FILES... 1
checking for X... no
checking assert.h usability... yes
checking assert.h presence... yes
checking for assert.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking grp.h usability... yes
checking grp.h presence... yes
checking for grp.h... yes
checking pwd.h usability... yes
checking pwd.h presence... yes
checking for pwd.h... yes
checking libc.h usability... no
checking libc.h presence... no
checking for libc.h... no
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking stdarg.h usability... yes
checking stdarg.h presence... yes
checking for stdarg.h... yes
checking for stdlib.h... (cached) yes
checking for stdint.h... (cached) yes
checking for inttypes.h... (cached) yes
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking termios.h usability... yes
checking termios.h presence... yes
checking for termios.h... yes
checking termcap.h usability... no
checking termcap.h presence... no
checking for termcap.h... no
checking term.h usability... no
checking term.h presence... yes
configure: WARNING: term.h: present but cannot be compiled
configure: WARNING: term.h:     check for missing prerequisite headers?
configure: WARNING: term.h: see the Autoconf documentation
configure: WARNING: term.h:     section "Present But Cannot Be Compiled"
configure: WARNING: term.h: proceeding with the compiler's result
checking for term.h... no
checking for unistd.h... (cached) yes
checking sys/bitypes.h usability... no
checking sys/bitypes.h presence... no
checking for sys/bitypes.h... no
checking sys/byteorder.h usability... yes
checking sys/byteorder.h presence... yes
checking for sys/byteorder.h... yes
checking sys/ioctl.h usability... yes
checking sys/ioctl.h presence... yes
checking for sys/ioctl.h... yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/sockio.h usability... yes
checking sys/sockio.h presence... yes
checking for sys/sockio.h... yes
checking for sys/stat.h... (cached) yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for sys/types.h... (cached) yes
checking arpa/nameser.h usability... yes
checking arpa/nameser.h presence... yes
checking for arpa/nameser.h... yes
checking mtio.h usability... no
checking mtio.h presence... no
checking for mtio.h... no
checking sys/mtio.h usability... yes
checking sys/mtio.h presence... yes
checking for sys/mtio.h... yes
checking sys/tape.h usability... no
checking sys/tape.h presence... no
checking for sys/tape.h... no
checking regex.h usability... yes
checking regex.h presence... yes
checking for regex.h... yes
checking for ANSI C header files... (cached) yes
checking whether sys/types.h defines makedev... no
checking sys/mkdev.h usability... yes
checking sys/mkdev.h presence... yes
checking for sys/mkdev.h... yes
checking for dirent.h that defines DIR... (cached) yes
checking for library containing opendir... (cached) none required
checking whether stat file-mode macros are broken... (cached) no
checking for sys/wait.h that is POSIX.1 compatible... yes
checking whether time.h and sys/time.h may both be included... yes
checking for struct stat.st_blksize... yes
checking for struct stat.st_blocks... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... no
checking whether tzname is declared... yes
checking for tzname... yes
checking for utime.h... yes
checking for socklen_t... yes
checking for ioctl_req_t... no
checking for typeof... no
checking for an ANSI C-conforming const... yes
checking whether byte ordering is bigendian... yes
checking how to get filesystem type... SVR4
checking sys/statvfs.h usability... yes
checking sys/statvfs.h presence... yes
checking for sys/statvfs.h... yes
checking for backtrace... no
checking return type of signal handlers... void
checking for type of signal functions... posix
checking for mode_t... yes
checking for uid_t in sys/types.h... yes
checking for size_t... yes
checking for pid_t... yes
checking for off_t... yes
checking for intptr_t... yes
checking for uintptr_t... yes
checking for ino_t... yes
checking for dev_t... yes
checking for daddr_t... yes
checking for major_t... yes
checking for minor_t... yes
checking for ssize_t... yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_rdev... yes
checking whether struct tm is in sys/time.h or time.h... (cached) time.h
checking for an ANSI C-conforming const... (cached) yes
checking size of char... 1
checking size of short int... 2
checking size of int... 4
checking size of long int... 4
checking size of long long int... 8
checking size of int *... 4
checking for u_int type... yes
checking for intmax_t type... yes
checking for u_intmax_t type... no
checking for intXX_t types... yes
checking for int64_t type... yes
checking for u_intXX_t types... no
checking for u_int64_t types... no
checking for uintXX_t types... yes
checking for fork... yes
checking for getcwd... yes
checking for gethostname... yes
checking for getpid... yes
checking for gettimeofday... yes
checking for setpgid... yes
checking for setpgrp... yes
checking for setsid... yes
checking for signal... yes
checking for strerror... yes
checking for strncmp... yes
checking for strncpy... yes
checking for vfprintf... yes
checking whether F_CLOSEM is declared... no
checking for closefrom... yes
checking for getpagesize... yes
checking for malloc_trim... no
checking for fchdir... yes
checking for strtoll... yes
checking for posix_fadvise... no
checking for fdatasync... yes
checking for chflags... no
checking for snprintf... yes
checking for vsnprintf... yes
checking for gethostid... yes
checking for fseeko... yes
checking for va_copy... yes
checking for localtime_r... yes
checking for readdir_r... yes
checking for strerror_r... yes
checking for gethostbyname_r... no
checking for gethostbyname_r... (cached) no
checking for gethostbyname_r in -lnsl... yes
checking for gethostbyname_r in -lresolv... yes
checking for inet_pton... yes
checking for inet_ntop... yes
checking for gethostbyname2... no
checking for getnameinfo... yes
checking for struct sockaddr has a sa_len field... no
checking for working getaddrinfo... yes
checking for gai_strerror... yes
checking for strftime... yes
checking for vprintf... yes
checking for _doprnt... yes
checking for working alloca.h... yes
checking for alloca... yes
checking for library containing getmntent... none required
checking for getmntinfo... no
checking whether closedir returns void... no
checking whether setpgrp takes no argument... yes
checking for gettext in -lintl... yes
checking for getpwnam in -lsun... no
checking zlib.h usability... yes
checking zlib.h presence... yes
checking for zlib.h... yes
checking for deflate in -lz... yes
checking afs/afsint.h usability... no
checking afs/afsint.h presence... no
checking for afs/afsint.h... no
checking for pioctl in AFS libsys... no
checking lzo/lzoconf.h usability... no
checking lzo/lzoconf.h presence... no
checking for lzo/lzoconf.h... no
checking sys/acl.h usability... yes
checking sys/acl.h presence... yes
checking for sys/acl.h... yes
checking for acl_get_file... no
checking for acl_get_file in -lacl... no
checking for acltotext in -lsec... yes
checking for acl_totext in -lsec... yes
checking sys/attr.h usability... no
checking sys/attr.h presence... no
checking for sys/attr.h... no
checking sys/nvpair.h usability... yes
checking sys/nvpair.h presence... yes
checking for sys/nvpair.h... yes
checking attr.h usability... no
checking attr.h presence... no
checking for attr.h... no
checking for openat... yes
checking for fstatat... yes
checking for unlinkat... yes
checking for fchownat... yes
checking for futimesat... yes
checking for nvlist_next_nvpair in -lnvpair... yes
checking for pthread_create in -lpthread... yes
checking sys/prctl.h usability... no
checking sys/prctl.h presence... no
checking for sys/prctl.h... no
checking sys/capability.h usability... no
checking sys/capability.h presence... no
checking for sys/capability.h... no
checking for prctl... no
checking for setreuid... yes
checking for cap_set_proc in -lcap... no
checking for systemd support... no
configure: creating ./config.status
config.status: creating autoconf/Make.common
config.status: creating Makefile
config.status: creating manpages/Makefile
config.status: creating scripts/btraceback
config.status: creating scripts/bconsole
config.status: creating scripts/bacula
config.status: creating scripts/bacula-ctl-dir
config.status: creating scripts/bacula-ctl-fd
config.status: creating scripts/bacula-ctl-sd
config.status: creating scripts/devel_bacula
config.status: creating scripts/Makefile
config.status: creating scripts/logrotate
config.status: creating scripts/mtx-changer
config.status: creating scripts/disk-changer
config.status: creating scripts/dvd-handler
config.status: creating scripts/dvd-simulator
config.status: creating scripts/logwatch/Makefile
config.status: creating scripts/logwatch/logfile.bacula.conf
config.status: creating scripts/bat.desktop
config.status: creating scripts/bat.desktop.xsu
config.status: creating scripts/bat.desktop.consolehelper
config.status: creating scripts/bat.console_apps
config.status: creating src/Makefile
config.status: creating src/host.h
config.status: creating src/console/Makefile
config.status: creating src/console/bconsole.conf
config.status: creating src/qt-console/bat.conf
config.status: creating src/qt-console/bat.pro
config.status: WARNING:  'src/qt-console/bat.pro.in' seems to ignore the --datarootdir setting
config.status: creating src/qt-console/bat.pro.mingw32
config.status: creating src/qt-console/install_conf_file
config.status: creating src/dird/Makefile
config.status: creating src/dird/bacula-dir.conf
config.status: creating src/lib/Makefile
config.status: creating src/stored/Makefile
config.status: creating src/stored/bacula-sd.conf
config.status: creating src/filed/Makefile
config.status: creating src/filed/bacula-fd.conf
config.status: creating src/cats/Makefile
config.status: creating src/cats/make_catalog_backup.pl
config.status: creating src/cats/make_catalog_backup
config.status: creating src/cats/delete_catalog_backup
config.status: creating src/cats/create_postgresql_database
config.status: creating src/cats/update_postgresql_tables
config.status: creating src/cats/make_postgresql_tables
config.status: creating src/cats/grant_postgresql_privileges
config.status: creating src/cats/drop_postgresql_tables
config.status: creating src/cats/drop_postgresql_database
config.status: creating src/cats/create_mysql_database
config.status: creating src/cats/update_mysql_tables
config.status: creating src/cats/make_mysql_tables
config.status: creating src/cats/grant_mysql_privileges
config.status: creating src/cats/drop_mysql_tables
config.status: creating src/cats/drop_mysql_database
config.status: creating src/cats/create_sqlite3_database
config.status: creating src/cats/update_sqlite3_tables
config.status: creating src/cats/make_sqlite3_tables
config.status: creating src/cats/grant_sqlite3_privileges
config.status: creating src/cats/drop_sqlite3_tables
config.status: creating src/cats/drop_sqlite3_database
config.status: creating src/cats/sqlite
config.status: creating src/cats/mysql
config.status: creating src/cats/create_bacula_database
config.status: creating src/cats/update_bacula_tables
config.status: creating src/cats/grant_bacula_privileges
config.status: creating src/cats/make_bacula_tables
config.status: creating src/cats/drop_bacula_tables
config.status: creating src/cats/drop_bacula_database
config.status: creating src/cats/install-default-backend
config.status: creating src/findlib/Makefile
config.status: creating src/tools/Makefile
config.status: creating src/plugins/fd/Makefile
config.status: creating src/plugins/sd/Makefile
config.status: creating src/plugins/dir/Makefile
config.status: creating po/Makefile.in
config.status: creating updatedb/update_mysql_tables_9_to_10
config.status: creating updatedb/update_sqlite3_tables_9_to_10
config.status: creating updatedb/update_postgresql_tables_9_to_10
config.status: creating updatedb/update_mysql_tables_10_to_11
config.status: creating updatedb/update_sqlite3_tables_10_to_11
config.status: creating updatedb/update_postgresql_tables_10_to_11
config.status: creating updatedb/update_mysql_tables_11_to_12
config.status: creating updatedb/update_sqlite3_tables_11_to_12
config.status: creating updatedb/update_postgresql_tables_11_to_12
config.status: creating updatedb/update_mysql_tables_12_to_14
config.status: creating updatedb/update_sqlite3_tables_12_to_14
config.status: creating updatedb/update_postgresql_tables_12_to_14
config.status: creating examples/nagios/check_bacula/Makefile
config.status: creating platforms/rpms/redhat/bacula.spec
config.status: creating platforms/rpms/redhat/bacula-bat.spec
config.status: creating platforms/rpms/redhat/bacula-docs.spec
config.status: creating platforms/rpms/redhat/bacula-mtx.spec
config.status: creating platforms/rpms/suse/bacula.spec
config.status: creating platforms/rpms/suse/bacula-bat.spec
config.status: creating platforms/rpms/suse/bacula-docs.spec
config.status: creating platforms/rpms/suse/bacula-mtx.spec
config.status: creating platforms/Makefile
config.status: creating platforms/solaris/Makefile
config.status: creating platforms/solaris/bacula-fd
config.status: creating platforms/solaris/bacula-sd
config.status: creating platforms/solaris/bacula-dir
config.status: creating src/config.h
config.status: executing libtool commands
config.status: executing default-1 commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
config.status: executing default commands
Doing make of dependencies
==>Entering directory /home/garges/bacula-7.0.4/src
gmake[1]: Entering directory `/home/garges/bacula-7.0.4/src'
gmake[1]: Nothing to be done for `depend'.
gmake[1]: Leaving directory `/home/garges/bacula-7.0.4/src'
==>Entering directory /home/garges/bacula-7.0.4/scripts
gmake[1]: Entering directory `/home/garges/bacula-7.0.4/scripts'
gmake[1]: `depend' is up to date.
gmake[1]: Leaving directory `/home/garges/bacula-7.0.4/scripts'
==>Entering directory /home/garges/bacula-7.0.4/src/lib
gmake[1]: Entering directory `/home/garges/bacula-7.0.4/src/lib'
/bin/sh: # DO NOT DELETE: nice dependency list follows: not found
gmake[1]: *** [depend] Error 1
gmake[1]: Leaving directory `/home/garges/bacula-7.0.4/src/lib'
*** Error code 1
The following command caused the error:
for I in src scripts src/lib src/findlib src/filed  src/console src/plugins/fd src/cats src/dird src/stored src/tools manpages; \
  do (cd $I; echo "==>Entering directory `pwd`"; /opt/csw/bin/gmake DESTDIR= depend || exit 1); done
make: Fatal error: Command failed for target `depend'
chmod: WARNING: can't access storage-ctl
chmod: WARNING: can't access bsg_persist
 
Cleaning up
 
==>Entering directory /home/garges/bacula-7.0.4/src
==>Entering directory /home/garges/bacula-7.0.4/scripts
==>Entering directory /home/garges/bacula-7.0.4/src/lib
==>Entering directory /home/garges/bacula-7.0.4/src/findlib
==>Entering directory /home/garges/bacula-7.0.4/src/filed
==>Entering directory /home/garges/bacula-7.0.4/src/console
==>Entering directory /home/garges/bacula-7.0.4/src/plugins/fd
==>Entering directory /home/garges/bacula-7.0.4/src/cats
==>Entering directory /home/garges/bacula-7.0.4/src/dird
==>Entering directory /home/garges/bacula-7.0.4/src/stored
==>Entering directory /home/garges/bacula-7.0.4/src/tools
==>Entering directory /home/garges/bacula-7.0.4/manpages
==>Entering directory /home/garges/bacula-7.0.4/platforms

Configuration on Fri Oct 24 17:23:54 PDT 2014:

   Host:                    sparc-sun-solaris2.10 -- solaris 5.10
   Bacula version:          Bacula 7.0.4 (04 June 2014)
   Source code location:    .
   Install binaries:        /usr/local/bin
   Install libraries:       /usr/lib
   Install config files:    /etc/bacula
   Scripts directory:       /etc/bacula
   Archive directory:       /tmp
   Working directory:       /var/bacula/working
   PID directory:           /var/bacula/working
   Subsys directory:        /var/bacula/subsys
   Man directory:           ${datarootdir}/man
   Data directory:          /usr/share
   Plugin directory:        /usr/lib
   C Compiler:              gcc 3.3.2
   C++ Compiler:            /usr/local/bin/g++ 3.3.2
   Compiler flags:           -g -I/opt/csw/include -lcrypto -lssl -L/opt/csw/lib -R/opt/csw/lib -fno-strict-aliasing -fno-exceptions -fno-rtti
   Linker flags:             -L/opt/csw/lib -R/opt/csw/lib -L/opt/csw/lib/openssl -R/opt/csw/lib/openssl -I/opt/csw/include -I/opt/csw/include/openssl
   Libraries:               -lpthread -lresolv -lnsl -lsocket -lxnet  -lintl -lresolv -lrt
   Statically Linked Tools: no
   Statically Linked FD:    no
   Statically Linked SD:    no
   Statically Linked DIR:   no
   Statically Linked CONS:  no
   Database backends:       PostgreSQL
   Database port:            
   Database name:           bacula
   Database user:           bacula

   Job Output Email:        garges AT ucsc DOT edu
   Traceback Email:         garges AT ucsc DOT edu
   SMTP Host Address:       smtp.ucsc.edu

   Director Port:           9101
   File daemon Port:        9102
   Storage daemon Port:     9103

   Director User:           bacula
   Director Group:          backup
   Storage Daemon User:     bacula
   Storage DaemonGroup:     backup
   File Daemon User:        root
   File Daemon Group:       backup

   Large file support:      yes
   Bacula conio support:    yes -ltermcap
   readline support:        no 
   TCP Wrappers support:    no 
   TLS support:             yes
   Encryption support:      yes
   ZLIB support:            yes
   LZO support:             no
   enable-smartalloc:       yes
   enable-lockmgr:          no
   bat support:             no
   client-only:             no
   build-dird:              yes
   build-stored:            yes
   Plugin support:          yes
   AFS support:             no
   ACL support:             yes
   XATTR support:           yes
   systemd support:         no 
   Batch insert enabled:    None

  

Kenneth Garges




------------------------------------------------------------------------------

_______________________________________________
Bacula-users mailing list
Bacula-users AT lists.sourceforge DOT net
https://lists.sourceforge.net/lists/listinfo/bacula-users



Attachment: signature.asc
Description: Message signed with OpenPGP using GPGMail

------------------------------------------------------------------------------
_______________________________________________
Bacula-users mailing list
Bacula-users AT lists.sourceforge DOT net
https://lists.sourceforge.net/lists/listinfo/bacula-users