Ad Widget

Collapse

Zabbix upgrading to 1.4.1 svn

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • testos
    Member
    • Apr 2007
    • 85

    #1

    Zabbix upgrading to 1.4.1 svn

    Greetings.

    I need help from who have done it already!

    How i can update my zabbix 1.4 from latest code downloaded from svn://svn.zabbix.com/branches/1.4.1?

    Which are the steps?
    I have tried several ways without results

    Thanks.
  • peter_field
    Member
    • Jun 2006
    • 71

    #2
    Try this

    I'm trying to give this a shot too, here is where I have got to:

    svn export svn://svn.zabbix.com/branches/1.4.1 /tmp/zabbix/
    cd /tmp/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 configure as per normal.. but then I get the following error:

    ./configure: line 6898: syntax error near unexpected token `,'
    ./configure: line 6898: ` LIBCURL_CHECK_CONFIG(, 7.15.1, ,)'

    Anyone have any ideas?

    Comment

    • bryancan
      Junior Member
      • Sep 2006
      • 22

      #3
      Yes, same error here...
      ./configure: line 6911: syntax error near unexpected token `,'
      ./configure: line 6911: ` LIBCURL_CHECK_CONFIG(, 7.15.1, ,)'

      thanks in advance for the help on this one...
      bryancan

      Comment

      • bryancan
        Junior Member
        • Sep 2006
        • 22

        #4
        Actually if I run what is suggested in ./go:
        aclocal -I m4
        autoconf
        autoheader
        automake -a
        automake

        And then even try and configure for an agent only:
        ./configure --enable-agent

        I get the following:
        checking for getopt_long... yes
        checking for architecture... ok (linux-gnu)
        checking for the kernel version... 2.6 family (2.6.18-8.el5)
        configure: creating ./config.status
        config.status: creating
        .infig.status: error: cannot find input file:


        This is on :
        Linux CentOS5 2.6.18-8.el5 #1 SMP Thu Mar 15 19:46:53 EDT 2007 x86_64 x86_64 x86_64 GNU/Linux

        Comment

        • Alexei
          Founder, CEO
          Zabbix Certified Trainer
          Zabbix Certified SpecialistZabbix Certified Professional
          • Sep 2004
          • 5654

          #5
          aclocal -I m4
          autoconf
          autoheader
          automake -a
          automake
          ./configure
          make dist

          Take newly created file zabbix.VERSION.tar.gz and follow standard installation instructions.
          Alexei Vladishev
          Creator of Zabbix, Product manager
          New York | Tokyo | Riga
          My Twitter

          Comment

          • bryancan
            Junior Member
            • Sep 2006
            • 22

            #6
            Why would you reply with an instruction to do exactly what I just posted that I have done that does not work?!?

            the result of :
            aclocal -I m4
            autoconf
            autoheader
            automake -a
            automake
            ./configure

            is:
            checking for the kernel version... 2.6 family (2.6.18-8.el5)
            configure: creating ./config.status
            config.status: creating
            .infig.status: error: cannot find input file:

            is ./configure cannot work then :
            make dist
            certainly will not exist.

            Comment

            • testos
              Member
              • Apr 2007
              • 85

              #7
              The first command line already failure, in my system:

              Code:
              [root@CentOS-5 zabbix-1.4.1]# aclocal -I m4
              /usr/share/aclocal/libgcrypt.m4:23: warning: underquoted definition of AM_PATH_LIBGCRYPT
                run info '(automake)Extending aclocal'
                or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
              /usr/share/aclocal/ao.m4:9: warning: underquoted definition of XIPH_PATH_AO

              Comment

              • Alexei
                Founder, CEO
                Zabbix Certified Trainer
                Zabbix Certified SpecialistZabbix Certified Professional
                • Sep 2004
                • 5654

                #8
                Originally posted by testos
                The first command line already failure, in my system:
                Fix your system
                Alexei Vladishev
                Creator of Zabbix, Product manager
                New York | Tokyo | Riga
                My Twitter

                Comment

                Working...