Ad Widget

Collapse

build cvs tree

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • bibi23
    Member
    • Oct 2005
    • 64

    #1

    build cvs tree

    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
    Member
    • Oct 2005
    • 64

    #2
    compil problem

    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...

    Comment

    • erisan500
      Senior Member
      Zabbix Certified Specialist
      • Aug 2005
      • 285

      #3
      Here ya go:

      Code:
      cvs -z3 -q -d:pserver:[email protected]:/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
      EriSan
      Zabbix Certified Specialist

      Comment

      • bibi23
        Member
        • Oct 2005
        • 64

        #4
        Thanks for your answer.

        It's works fine now.

        Comment

        Working...