|
From: Radosław K. <rad...@ko...> - 2018-04-11 08:52:22
|
Hello, I'm building Bacula 9.0.6 on Solaris 11 using gcc (I'm not sure if I used gcc provided by Oracle or installed externally) and the following configure (which forces 64bit compilation and debugging symbols): CXXFLAGS="-m64 -g" CFLAGS="-m64 -g" LDFLAGS="-m64 -g" ./configure --prefix=/export/home/radekk/bacula --with-working-dir=/export/home/radekk/bacula/working --with-pid-dir=/export/home/radekk/bacula/working --with-subsys-dir=/export/home/radekk/bacula/subsys --with-postgresql --enable-smartalloc --enable-lockmgr --with-logdir=/export/home/radekk/bacula/log I'm very surprised that your build is not working and you have to disable libtool. Unfortunate I never tried Solaris Compiler Suite with Bacula. I have to check if I have access to it. best regards 2018-04-06 14:53 GMT+02:00 Gary R. Schmidt <gr...@mc...>: > On 06/04/2018 18:40, Daniel Heitepriem wrote: > >> Hi Gary, >> >> I just tried to compile 9.0.6 on a Solaris 11.3 box (but using GCC 5.4.0 >> and MySQL) with these options: >> >> CFLAGS="-g -m64" LDFLAGS="-m64" CXXFLAGS="-m64" ./configure \ >> --prefix=/opt/bacula \ >> --with-dir-user=bacula \ >> --with-dir-group=bacula \ >> --with-sd-user=bacula \ >> --with-sd-group=bacula \ >> --with-fd-user=root \ >> --with-fd-group=bacula \ >> --enable-smartalloc \ >> --sbindir=/opt/bacula/bin \ >> --sysconfdir=/opt/bacula/etc \ >> --with-subsys-dir=/opt/bacula/var \ >> --with-working-dir=/opt/bacula/var/bacula/working \ >> --with-pid-dir=/opt/bacula/var \ >> --with-logdir=/opt/bacula/var \ >> --with-archivedir=/opt/bacula/var \ >> --with-mysql=/opt/mysql \ >> --with-openssl >> >> and it's working fine so far. Your issue may be related to the >> "disable-libtool" parameter you provided. Can you try to build it >> without this disable parameter. >> >> Thank you Daniel, removing "--disable-libtool" allowed it to build, why > whoever disabled it didn't make configure barf on it is something I can > only wonder about. > > And in some further fiddling about I found that replacing "NO_ECHO = @" > with "NO_ECHO =" in the makefiles makes it *much* easier to work out just > what is going wrong. Hiding information just makes life difficult. > > > Cheers, > Gary B-) > > ------------------------------------------------------------ > ------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, Slashdot.org! http://sdm.link/slashdot > _______________________________________________ > Bacula-users mailing list > Bac...@li... > https://lists.sourceforge.net/lists/listinfo/bacula-users > -- Radosław Korzeniewski rad...@ko... |