PDA

View Full Version : Compiling zabbix-1.1beta1 on a SuSE 9.3


nascimento.rp
22-09-2005, 19:07
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? :confused:

Thanks and regards,
Nascimento

James Wells
22-09-2005, 19:12
Greetings,

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

nascimento.rp
22-09-2005, 19:37
JW, :D

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

Thanks and regards,
Nascimento

nascimento.rp
22-09-2005, 19:42
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

James Wells
22-09-2005, 19:55
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

elkor
22-09-2005, 21:27
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.