PDA

View Full Version : build cvs tree


bibi23
06-07-2006, 17:56
Hi,

I would build and test the latest cvs version of zabbix , but i don't know how to build it.

I run aclocal, autoconf and automake but i get error for missing required file "like install-sh" or "depcomp"

Could you help me ?

Thanks

bibi23
17-07-2006, 14:22
Hi,

After few search for compiling zabbix from cvs, i run the following command:

aclocal
libtoolize -c -f --automake
autoheader -f
autoconf -f
automake -acf --foreign
./configure --prefix=/opt/zabbix --enable-server --enable-agent --with-mysql

But i get error:
config.status: creating src/libs/zbxlog/Makefile
config.status: creating src/libs/zbxcrypto/Makefile
config.status: creating \
.infig.status: error: cannot find input file: \

What's wrong ??

Thanks for your help...

erisan500
18-07-2006, 09:22
Here ya go:


cvs -z3 -q -d:pserver:anonymous@zabbix.cvs.sourceforge.net:/cvsroot/zabbix co -P zabbixcd zabbix
aclocal
autoconf
autoheader
automake -a
automake
rm -f config.guess config.sub depcomp install-sh missing
cp /usr/share/automake-1.9/config.guess config.guess
cp /usr/share/automake-1.9/config.sub config.sub
cp /usr/share/automake-1.9/depcomp depcomp
cp /usr/share/automake-1.9/install-sh install-sh
cp /usr/share/automake-1.9/missing missing


then the usual configure, make, make install.

Greetings

bibi23
18-07-2006, 12:04
Thanks for your answer.

It's works fine now.