I'm trying to install python off of the linux_apps disk for AIX. My problem is that the install is not resolving the following dependencies:
libcrypto.a(libcrypto.so.0.9.7) is needed by python-2.3.4-2
libdb-3.3.a(libdb-3.3.so.0) is needed by python-2.3.4-2
libgdbm.a(libgdbm.so.3) is needed by python-2.3.4-2
libssl.a(libssl.so.0.9.7) is needed by python-2.3.4-2
However, I know I have these installed just newer versions of the files.
# find / -name libssl.a
/opt/pware/lib/libssl.a
/usr/lib/libssl.a
# find / -name libcrypto.a
/opt/pware/lib/libcrypto.a
/usr/lib/libcrypto.a
# openssl version
OpenSSL 0.9.8h 28 May 2008
# ldd /usr/bin/openssl
/usr/bin/openssl needs:
/usr/lib/libc.a(shr.o)
/usr/lib/libpthreads.a(shr_comm.o)
/usr/lib/libpthreads.a(shr_xpg5.o)
*****/usr/lib/libcrypto.a(libcrypto.so.0.9.8)*
/unix
/usr/lib/libcrypt.a(shr.o)
the OpenSSL 0.9.8 came from sourceforge, and I'm wondering if for some reason when I installed this updated package if it didn't register(for lack of a better term) everything correctly? However all of my ssl and ssh stuff works just fine.
I should be able to install the python with these newer files (I think) or am I really required to have those older versions of the files?
libcrypto.a(libcrypto.so.0.9.7) is needed by python-2.3.4-2
libdb-3.3.a(libdb-3.3.so.0) is needed by python-2.3.4-2
libgdbm.a(libgdbm.so.3) is needed by python-2.3.4-2
libssl.a(libssl.so.0.9.7) is needed by python-2.3.4-2
However, I know I have these installed just newer versions of the files.
# find / -name libssl.a
/opt/pware/lib/libssl.a
/usr/lib/libssl.a
# find / -name libcrypto.a
/opt/pware/lib/libcrypto.a
/usr/lib/libcrypto.a
# openssl version
OpenSSL 0.9.8h 28 May 2008
# ldd /usr/bin/openssl
/usr/bin/openssl needs:
/usr/lib/libc.a(shr.o)
/usr/lib/libpthreads.a(shr_comm.o)
/usr/lib/libpthreads.a(shr_xpg5.o)
*****/usr/lib/libcrypto.a(libcrypto.so.0.9.8)*
/unix
/usr/lib/libcrypt.a(shr.o)
the OpenSSL 0.9.8 came from sourceforge, and I'm wondering if for some reason when I installed this updated package if it didn't register(for lack of a better term) everything correctly? However all of my ssl and ssh stuff works just fine.
I should be able to install the python with these newer files (I think) or am I really required to have those older versions of the files?