I use SuSe 8.2, zm-1.19.0 and Apache 2.0.48
./configure --with-mysql=/usr --with-webdir=/srv/www/htdocs/zm --with-cgidir=/srv/www/cgi-bin --with-webuser=nobody --with-ffmpeg=/usr/local/ffmpeg-0.4.8
went fine.
After a make the following Error ocurred.
In file included from zm_remote_camera.h:42,
from zm_remote_camera.cpp:39:
zm_regexp.h:27:23: pcre/pcre.h: No such file or directory
In file included from zm_remote_camera.h:42,
from zm_remote_camera.cpp:39:
zm_regexp.h:32: error: syntax error before `*' token
zm_regexp.h:33: error: syntax error before `*' token
zm_remote_camera.cpp: In member function `int RemoteCamera::GetResponse()':
zm_remote_camera.cpp:274: error: `PCRE_DOTALL' undeclared (first use this
function)
zm_remote_camera.cpp:274: error: (Each undeclared identifier is reported only
once for each function it appears in.)
zm_remote_camera.cpp:282: error: `PCRE_MULTILINE' undeclared (first use this
function)
zm_remote_camera.cpp:282: error: `PCRE_CASELESS' undeclared (first use this
function)
make[2]: *** [zm_remote_camera.o] Error 1
make[2]: Leaving directory `/usr/local/src/zm-1.19.0/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/local/src/zm-1.19.0'
make: *** [all] Error 2
but the package pcre-3.9-180 is installed.
Where dóes ZM search this File pcre.h
Any Ideas........
Thx
make Error: zm_regexp.h:27:23: pcre/pcre.h: No such file or
Re: make Error: zm_regexp.h:27:23: pcre/pcre.h: No such file
I had the same problem, I just edited zm_regexp.h and modified
include <pcr/pcre.h>
into
include <pcre.h>
now compiled with no errors
I am using Mandrake10
I have pcre.h in /usr/include
I think the compiler is looking in /usr/include/pcre
include <pcr/pcre.h>
into
include <pcre.h>
now compiled with no errors
I am using Mandrake10
I have pcre.h in /usr/include
I think the compiler is looking in /usr/include/pcre
Re: make Error: zm_regexp.h:27:23: pcre/pcre.h: No such file
uff.. the web applications took off some code...
I meant modify from include <pcre/pcre.h>
into include <pcre.h>
I meant modify from include <pcre/pcre.h>
into include <pcre.h>