Ad Widget

Collapse

unable to compile alpha11

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kyi
    Member
    • Jun 2005
    • 64

    #1

    unable to compile alpha11

    hi,

    i try to compile the alpha11 on my debian system wiht this configure line:

    Code:
    ./configure --enable-server --with-mysql --with-net-snmp --prefix=/opt/zabbix
    trhe configure runs great, abd it seams to be no problem, but the make fails:
    Code:
    tom:/downloads/zabbix-1.1alpha11# make
    Making all in src
    make[1]: Entering directory `/downloads/zabbix-1.1alpha11/src'
    Makefile:290: Extraneous text after `else' directive
    Makefile:290: *** extraneous `else'.  Stop.
    make[1]: Leaving directory `/downloads/zabbix-1.1alpha11/src'
    make: *** [all-recursive] Error 1
    this is the Makefile from line 289:

    Code:
    else !SERVER
    endif !SERVER
    
    # Tell versions [3.59,3.63) of GNU make to not export all variables.
    # Otherwise a system limit (for SysV at least) may be exceeded.
    .NOEXPORT:
    any suggestions?
  • Alexei
    Founder, CEO
    Zabbix Certified Trainer
    Zabbix Certified SpecialistZabbix Certified Professional
    • Sep 2004
    • 5654

    #2
    Try to replace

    else !SERVER
    endif !SERVER


    by

    else
    endif
    Alexei Vladishev
    Creator of Zabbix, Product manager
    New York | Tokyo | Riga
    My Twitter

    Comment

    • kyi
      Member
      • Jun 2005
      • 64

      #3
      thxs that works tigether with the workaround for the snmp-problem (@SNMP_LFLAGS@)

      Comment

      Working...