blueocean wrote: > The problem is the openssl with FC6 does not have a file called > opensslconf.h'. Please advise. > > [EMAIL PROTECTED] m2crypto-0.18.2]# find / -name openssl -print > /usr/lib/openssl > /usr/bin/openssl > [EMAIL PROTECTED] m2crypto-0.18.2]# rpm -qa openssl > openssl-0.9.8b-15.fc6
Actually that incantation of 'find' will only search for files named exactly 'openssl'. Try this instead: Code: [EMAIL PROTECTED] openssl]$ find /usr/include/ -iname 'openssl*.h' -print /usr/include/openssl/opensslconf.h /usr/include/openssl/opensslconf-x86_64.h /usr/include/openssl/opensslconf-i386.h /usr/include/openssl/opensslv.h The file that SWIG is looking for should be in /usr/include/openssl. blueocean wrote: > swig -python -I/usr/include/python2.4 -I/usr/include -I/usr/lib/openssl > -includeall -DOPENSSL_NO_EC -o It looks to me like you appended '/usr/lib/openssl' instead of '/usr/include/openssl'. Let me know if this doesn't fix it. --seth -------------------- m2f -------------------- Read this topic online here: http://community.zenoss.com/forums/viewtopic.php?p=13222#13222 -------------------- m2f -------------------- _______________________________________________ zenoss-users mailing list [email protected] http://lists.zenoss.org/mailman/listinfo/zenoss-users
