Greetings all; Trying to bring stretch to life on this currently booted to wheezy machine, running my usual build script. Attached.
But I'm trying to get rid of all the configure fails while I'm doing in, and I've run into a what looks like hard coded dependency on docbook_1.72. The error messages says 1.72 or greater, but the configure looks like it has to match perfectly. I've installed 3 other bits and pieces configure complains about but Stretch has docbook_4.5-6.all.deb, and that doesn't match 1.72 by quite a lengthy row of apple trees. Can I get a patch to fix configure? I think this error is of decades worth of standing as I don't recall it ever building the docbook stuff. :) Thanks all. Cheers, Gene Heskett -- "There are four boxes to be used in defense of liberty: soap, ballot, jury, and ammo. Please use in that order." -Ed Howdershelt (Author) Genes Web page <http://geneslinuxbox.net:6309/gene>
#!/bin/sh # since I'm always forgetting to su amanda... if [ `whoami` != 'amanda' ]; then echo echo "!!!!!!!!!!!!!!!!!! Warning !!!!!!!!!!!!!!!!!!!" echo "Amanda needs to be configured and built by the" echo "user amanda, but must be installed by user root." echo exit 1 fi make clean rm -f config.status config.cache ./configure --with-user=amanda \ --with-group=disk \ --with-owner=amanda \ --with-gnu-ld \ --prefix=/usr/local/ \ --with-debugging=/tmp/amanda-dbg/ \ --with-tape-server=coyote \ --with-bsdtcp-security --with-amandahosts \ --with-configdir=/usr/local/etc/amanda \ --enable-manpage-build \ --with-readline \ --with-gnutar=/bin/tar --with-security-file=/etc/amanda-security.conf echo "sleeping for reading configures warnings" echo "a make as amanda will continue after 75 seconds..." sleep 75 make
