4.0.17 - Still no SSL joy

2003-12-26 Thread Greg G
I'm still having the same old problem with compiling mysql with SSL support in 4.0.17. I'm definately getting the #define HAVE_SSL 1 in my config.h, so that's working. However, it looks like it's not getting added to the list of directories in the components. I take this to be a bug in

Re: 4.0.17 - Still no SSL joy

2003-12-26 Thread beacker
Greg G [EMAIL PROTECTED] writes: gcc -DHAVE_CONFIG_H -I. -I. -I.. -I./../include -I../include-O3 -DDBUG_OFF -c `test -f strxmov.c || echo './'`strxmov.c In file included from strxmov.c:33: ../include/my_global.h:1127: openssl/opensslv.h: No such file or directory This indicates to me that

Re: 4.0.17 - Still no SSL joy

2003-12-26 Thread Greg G
I should have posted this, but I did this: $ ./configure --with-openssl --with-openssl-includes=/usr/local/ssl/include --with-openssl-libs=/usr/local/ssl/lib --with-vio --prefix=/usr/local/mysql4017 I shouldn't need to make a symlink in /usr/local/include. -Greg G [EMAIL PROTECTED] wrote:

Re: 4.0.17 - Still no SSL joy

2003-12-26 Thread beacker
I shouldn't need to make a symlink in /usr/local/include. That may be the case, but the only way you will satisfy the #include in the my_global.h file is to either pull the 'openssl/' from in front of opensslv.h, or to have a symlink in the openssl include directory for openssl to '.'.

Re: 4.0.17 - Still no SSL joy

2003-12-26 Thread Greg G
That's a good workaround, but I'd definately like to see that get fixed at some point. -Greg G [EMAIL PROTECTED] wrote: I shouldn't need to make a symlink in /usr/local/include. That may be the case, but the only way you will satisfy the #include in the my_global.h file is to either pull