When I try to install Plone 4.0.4 (and 4.0.3 couple of months ago) on OpenBSD 4.8, as follows, I get an error
$ sh ./install.sh --with-python=/usr/local/bin/python2.6 zeo ZEO Cluster Install selected Detailed installation log being written to /root/Plone-4.0.4-UnifiedInstaller/install.log Testing /usr/local/bin/python2.6 for Zope/Plone requirements.... /usr/local/bin/python2.6 looks OK. We'll try to use it. Unable to find libssl or openssl/ssl.h. If you wish to build without SSL support, run install.sh again with --without-ssl flag. Otherwise, install your platform's openssl-dev libraries and headers and try again. I changed the install.sh file from if ([ "$HAVE_LIBSSL" != "yes" ] || ["$HAVE_OPENSSL_SSL_H" != "yes" ]) && [ "$WITHOUT_SSL" != '1' ] ; then to if ([ "$HAVE_LIBSSL" != "yes" ] && [ "$HAVE_OPENSSL_SSL_H" != "yes" ]) && [ "$WITHOUT_SSL" != '1' ] ; then and Plone 4.0.4 did install. However, I am not sure whether this is the correct way to do this. I asked this question on the Plone lists without getting any answers for the past month so thought I would ask here. Thanks in advance for any advice you can give me. Vijay Vijay Sankar vsan...@foretell.ca