Ad Widget

Collapse

Compiling zabbix-1.1beta1 on a SuSE 9.3

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • nascimento.rp
    Junior Member
    • Sep 2005
    • 7

    #1

    Compiling zabbix-1.1beta1 on a SuSE 9.3

    Hi ALL,

    I'm trying to compiling zabbix-1.1beta1 on a SuSE 9.3, I made this steps:

    # tar -xzvf zabbix-1.1beta1.tar.gz [This step OK]
    # cd zabbix-1.1beta1 [This step OK]
    # ./configure --with-mysql [This step OK]
    # make [This step failed ]
    Making all in src
    make[1]: Entering directory `/programas/inst.zabbix/zabbix-1.1beta1/src'
    make[2]: Entering directory `/programas/inst.zabbix/zabbix-1.1beta1/src'
    make[2]: Nothing to be done for `all-am'.
    make[2]: Leaving directory `/programas/inst.zabbix/zabbix-1.1beta1/src'
    make[1]: Leaving directory `/programas/inst.zabbix/zabbix-1.1beta1/src'
    make[1]: Entering directory `/programas/inst.zabbix/zabbix-1.1beta1'
    make[1]: Nothing to be done for `all-am'.
    make[1]: Leaving directory `/programas/inst.zabbix/zabbix-1.1beta1'

    What's happen?

    Thanks and regards,
    Nascimento
  • James Wells
    Senior Member
    • Jun 2005
    • 664

    #2
    Greetings,
    Originally posted by nascimento.rp
    # ./configure --with-mysql [This step OK]
    # make [This step failed ]
    As of 1.1alpha12, you need to tell configure what you wish to build with;
    --with-server To tell it to build the server piece.
    --with-agent To tell it to build the agent piece.

    Without those it will assume that you are simply building the UI and basically do nothing.
    Unofficial Zabbix Developer

    Comment

    • nascimento.rp
      Junior Member
      • Sep 2005
      • 7

      #3
      Ok!

      JW,

      Thanks! Can you tell me if exists a documentation about this version?

      Thanks and regards,
      Nascimento

      Comment

      • nascimento.rp
        Junior Member
        • Sep 2005
        • 7

        #4
        The problem persists.

        JW,

        The problem with MAKE persists. I made the step # ./configure --with-mysql --server and after it I ran the # make and got the same problem.

        thanks,
        Nascimento

        Comment

        • James Wells
          Senior Member
          • Jun 2005
          • 664

          #5
          Originally posted by nascimento.rp
          JW,

          The problem with MAKE persists. I made the step # ./configure --with-mysql --server and after it I ran the # make and got the same problem.

          thanks,
          Nascimento
          My bad, is supposed to be --enable-server and / or --enable-agent
          Unofficial Zabbix Developer

          Comment

          • elkor
            Senior Member
            • Jul 2005
            • 299

            #6
            A good rule of thumb, whenever compiling a new package, is first to run ./configure --help.

            This will usually tell you what flags are permissable and may even show you things that can be built in but are not in the docs or README files.

            Comment

            Working...