zm requires openssl/md5.h
zm requires openssl/md5.h
I am installing 1.22.0 for the first time. I already have 1.21.3 running.
for configure (on debian) I have
./configure --with-mysql=/usr --with-webdir=/var/www/html/zm --with-cgidir=/var/www/cgi-bin --with-webuser=www-data --with-webgroup=www-data
and I ended up with error
zm requires openssl/md5.h
I can not find any match to this with a search on zoneminder forum. openssl is already installed on my system.
has someone seen this before?
for configure (on debian) I have
./configure --with-mysql=/usr --with-webdir=/var/www/html/zm --with-cgidir=/var/www/cgi-bin --with-webuser=www-data --with-webgroup=www-data
and I ended up with error
zm requires openssl/md5.h
I can not find any match to this with a search on zoneminder forum. openssl is already installed on my system.
has someone seen this before?
- zoneminder
- Site Admin
- Posts: 5215
- Joined: Wed Jul 09, 2003 2:07 pm
- Location: Bristol, UK
- Contact:
-
- Posts: 5111
- Joined: Wed Jun 08, 2005 8:07 pm
- Location: Midlands UK
thanks for the info
James Wilson
Disclaimer: The above is pure theory and may work on a good day with the wind behind it. etc etc.
http://www.securitywarehouse.co.uk
Disclaimer: The above is pure theory and may work on a good day with the wind behind it. etc etc.
http://www.securitywarehouse.co.uk
- zoneminder
- Site Admin
- Posts: 5215
- Joined: Wed Jul 09, 2003 2:07 pm
- Location: Bristol, UK
- Contact:
- zoneminder
- Site Admin
- Posts: 5215
- Joined: Wed Jul 09, 2003 2:07 pm
- Location: Bristol, UK
- Contact:
I have the same MD5 problem here.
I just installed openssl 0.9.8a today from source tar.
It installed md5.h into /usr/local/ssl/include/openssl/md5.h
I tried zm 1.22.0 and then 1.22.1 . Both fail during ./configure with ...
My system is.
Mandrake LE 2005 with 2.6.11-6mdk kernel.
Scottp
I just installed openssl 0.9.8a today from source tar.
It installed md5.h into /usr/local/ssl/include/openssl/md5.h
I tried zm 1.22.0 and then 1.22.1 . Both fail during ./configure with ...
- checking whether MD5 is declared... no
configure: error: zm requires openssl/md5.h
My system is.
Mandrake LE 2005 with 2.6.11-6mdk kernel.
Scottp
- zoneminder
- Site Admin
- Posts: 5215
- Joined: Wed Jul 09, 2003 2:07 pm
- Location: Bristol, UK
- Contact:
This is from config.log from ver 1.22.1
- configure:5364: $? = 0
configure:5367: test -s conftest.o
configure:5370: $? = 0
configure:5381: result: yes
configure:5399: checking whether MD5 is declared
configure:5425: g++ -c -g -O2 conftest.cc >&5
conftest.cc:32:25: openssl/md5.h: No such file or directory
conftest.cc: In function `int main()':
conftest.cc:38: error: `MD5' undeclared (first use this function)
conftest.cc:38: error: (Each undeclared identifier is reported only once for each function it appears in.)
configure:5431: $? = 1
configure: failed program was:
| /* confdefs.h. */
- configure:5005: $? = 0
configure:5008: test -s conftest.o
configure:5011: $? = 0
configure:5022: result: yes
configure:5040: checking whether MD5 is declared
configure:5065: g++ -c -g -O2 conftest.cc >&5
conftest.cc:28:25: openssl/md5.h: No such file or directory
conftest.cc: In function `int main()':
conftest.cc:34: error: `MD5' undeclared (first use this function)
conftest.cc:34: error: (Each undeclared identifier is reported only once for each function it appears in.)
configure:5071: $? = 1
configure: failed program was:
| /* confdefs.h. */
- zoneminder
- Site Admin
- Posts: 5215
- Joined: Wed Jul 09, 2003 2:07 pm
- Location: Bristol, UK
- Contact:
No it stops early on. I'm using ..
and it now stops at . . .
Code: Select all
./configure --with-webdir=<my web dir> --with-cgidir=<my cgi-bin dir> CPPFLAGS="/usr/local/ssl/include"
- checking for gcc... gcc
checking for C compiler default output file name... configure: error: C compiler cannot create executables
See `config.log' for more details.
- gcc version 3.4.3 (Mandrakelinux 10.2 3.4.3-7mdk)
configure:2383: $? = 0
configure:2385: gcc -V </dev/null >&5
gcc: `-V' option must have argument
configure:2388: $? = 1
configure:2411: checking for C compiler default output file name
configure:2414: gcc /usr/local/ssl/include -L/usr/lib -L/usr/lib/mysql conftest.c >&5
/usr/local/ssl/include: file not recognized: Is a directory
collect2: ld returned 1 exit status
configure:2417: $? = 1
configure: failed program was:
| /* confdefs.h. */
Ahhh, We forgot -I.
I needed to use
Now it reports...
Thanks for your help. I'll keep working on it.
I needed to use
Code: Select all
CPPFLAGS="-I/usr/local/ssl/include"
- checking whether MD5 is declared... yes
Thanks for your help. I'll keep working on it.