Page 1 of 1
Any one with zm on Ubuntu 9.10 server 32 bit ?
Posted: Mon Nov 23, 2009 1:58 am
by yosepht
I followed the ZM installation guide on Ubuntu 9.04 server 32 bit. But the compilation
failed and "make" returned 2 errors in the "Install & Config zoneminder" section. If you
had a successful zm install on Ubuntu 9.10 server 32 bit please help with how
you were able to get it done. If you followed this procedure what changes did you make?
http://www.zoneminder.com/wiki/index.ph ... rver_32bit
Thanks

Posted: Mon Nov 23, 2009 6:21 pm
by temper5
Re: Any one with zm on Ubuntu 9.10 server 32 bit ?
Posted: Mon Nov 23, 2009 11:58 pm
by Sidon
yosepht wrote:I followed the ZM installation guide on Ubuntu 9.04 server 32 bit. But the compilation
failed and "make" returned 2 errors in the "Install & Config zoneminder" section. (
What is the message error?
Posted: Tue Nov 24, 2009 8:55 pm
by yosepht
Here are a few of the lines from make. I couldn't cut and paste from a server terminal on
another computer.
================================
:
:
zm_utitls.cpp:32: error: 'vsprintf" was not declared in this scope
:
:
zm_utils.cpp:47: error: "vsprintf" was not declared in this scope
:
:
:
make[2]: *** [zm_utils.o] error1
make[2]: leaving directory 'usr/src/zm/src
make[2]: *** [all_recursive] error1
make[2]: leaving directory 'usr/src/zm
make: *** [all] error 2
=====================================
Thanks for taking the time. Yoseph.
Posted: Wed Nov 25, 2009 8:06 am
by Sidon
yosepht wrote:Here are a few of the lines from make. I couldn't cut and paste from a server terminal on
another computer.
================================
:
:
zm_utitls.cpp:32: error: 'vsprintf" was not declared in this scope
:
:
zm_utils.cpp:47: error: "vsprintf" was not declared in this scope
Try this:
Edit the file: ZoneMinder-1.24.2/src/zm_utils.cpp and, after the second line, add the following:
Posted: Wed Nov 25, 2009 8:14 am
by Sidon
Note:
After the word 'stdio' there is a dot and one caracter "h", which are missing after submit.
stdio.h
Posted: Wed Nov 25, 2009 10:14 pm
by yosepht
Thanks Sidon. "# include <stdio>" worked. It compiled without errors after that.
Thanks much for your help.