Hi,
I try to implement wolfssl embedded ssl 2.4.0 to lighttpd 1.4.32.

When i run lighttpd
it show
2012-11-27 17:53:02: (network.c.400) SSL: ssl requested but openssl support is not compiled in

I go back check config.log in lighttpd directory
I found 
cyassl-2.4.0/cyassl/openssl/ssl.h:31:24: cyassl/ssl.h: No such file or directory
Then i go cyassl directory make symbol link to cyassl header directory and compile again,
system show compile error

buffer.h:19: warning: shadowed declaration is here
response.c: In function `htps_add_ssl_entries':
response.c:138: error: `X509_NAME_ENTRY' undeclared (first use in this function)
response.c:138: error: (Each undeclared identifier is reported only once
response.c:138: error: for each function it appears in.)
response.c:138: error: `xe' undeclared (first use in this function)
response.c:142: warning: implicit declaration of function `SSL_get_verify_result'
response.c:149: warning: implicit declaration of function `X509_NAME_entry_count'
response.c:154: warning: implicit declaration of function `X509_NAME_get_entry'
response.c:157: warning: implicit declaration of function `OBJ_obj2nid'
response.c:157: warning: implicit declaration of function `X509_NAME_ENTRY_get_object'
response.c:158: warning: implicit declaration of function `OBJ_nid2sn'
response.c:158: warning: assignment makes pointer from integer without a cast
response.c:186: warning: implicit declaration of function `PEM_write_bio_X509'
make[4]: *** [response.o] Error 1

attached file is complete compile console log

wolfssl configure with
        --disable-static \
        --disable-debug \
        --enable-opensslExtra \
        --enable-fastmath

please help