<3bea96c40903230737h63f6e019tde21744a2dd36c2@mail.gmail.com> <3bea96c40903230741l28c617c1hc03db40d6de770a0@mail.gmail.com> <20090323144714.GH73698@rambler-co.ru> <3bea96c40903230755h1f0b6176pcdf01c5e13db3dd1@mail.gmail.com> <20090323145919.GK73698@rambler-co.ru> <3bea96c40903230806k216dbb2aw5c1ea57b16538931@mail.gmail.com> <20090323151508.GM73698@rambler-co.ru> <3bea96c40903230827o1d3922f7j4d961efececa2fba@mail.gmail.com> <20090323153013.GN73698@rambler-co.ru> <3bea96c40903230903q6866e494v328537bb1abfb27d@mail.gmail.com>
On Mon, Mar 23, 2009 at 05:03:40PM +0100, J?r?me Loyet wrote:
> 2009/3/23 Igor Sysoev <is@rambler-co.ru>:
> > On Mon, Mar 23, 2009 at 04:27:53PM +0100, J?r?me Loyet wrote:
> >
> >> 2009/3/23 Igor Sysoev <is@rambler-co.ru>:
> >> > On Mon, Mar 23, 2009 at 04:06:32PM +0100, J?r?me Loyet wrote:
> >> >
> >> >> 2009/3/23 Igor Sysoev <is@rambler-co.ru>:
> >> >> > On Mon, Mar 23, 2009 at 03:55:54PM +0100, J?r?me Loyet wrote:
> >> >> >
> >> >> >> 2009/3/23 Igor Sysoev <is@rambler-co.ru>:
> >> >> >> > On Mon, Mar 23, 2009 at 03:41:51PM +0100, J?r?me Loyet wrote:
> >> >> >> >
> >> >> >> >> > I'm not using openssl and I don't have any md5.h file in my include
> >> >> >> >> > path. /usr/include/md5.h is valid on BSD but not on Linux. I have to
> >> >> >> >> > add the openssl library somehow in configure. I think there is a
> >> >> >> >> > missing check in the configure script.
> >> >> >> >> >
> >> >> >> >> > The build is working correctly if I'm using
> >> >> >> >> > --openssl-dir=/usr/local/openssl-0.9.6.
> >> >> >> >>
> >> >> >> >> Sorry I miss something: The build is working correctly if I'm using
> >> >> >> >> --openssl-dir=/usr/local/openssl-0.9.6 AND --with-http_ssl_module
> >> >> >> >> (only openssl-dir show that it founds the library but it doesn't use
> >> >> >> >> it when compiling (no -I /usr/local/openssl-0.9.6/include))
> >> >> >> >
> >> >> >> > nginx's configure has no --openssl-dir= option.
> >> >> >>
> >> >> >> I meant --with-openssl= option. Sorry
> >> >> >
> >> >> > The --with-openssl= option should point to OpenSSL sources, but not
> >> >> > to inlcudes and binary libraries.
> >> >>
> >> >> OK thx for the answer.
> >> >
> >> > As your OpenSSL is set in non-standard place (I have just tested building
> >> > on Debian with standard /usr/include/openssl/md5.h), you should use
> >> > something like this:
> >> >
> >> > --with-cc-opt=-I/usr/local/openssl-0.9.6/include
> >>
> >> it's not working because of the #ifdef in md5.h:
> >>
> >> #if (NGX_HAVE_OPENSSL_MD5_H)
> >> #include <openssl/md5.h>
> >> #else
> >> #include <md5.h>
> >> #endif
> >>
> >> Has NGX_HAVE_OPENSSL_MD5_H is not defined, it looks for md5.h instead
> >> of openssl/md5.h. And if I use
> >> --with-cc-opt=-I/usr/local/openssl-0.9.6/include/openssl it won't work
> >> because the function name are from OpenSSL lib and not from BSD kernel
> >> (MD5_Init vs MD5Init).
> >>
> >> I have to make configure to set NGX_HAVE_OPENSSL_MD5_H ... do you have
> >> any clue ? I'm still searching
> >
> > -