Hi, The config script in openssl 0.9.8m does not detect the aix64-gcc configuration automatically. You have to use the Configure script instead.
Here it the fix that needs to be done to resolve this.
*** config Thu Oct 15 08:58:00 2009
--- config.fix Wed Mar 3 08:01:05 2010
***************
*** 741,746 ****
--- 741,750 ----
OBJECT_MODE=${OBJECT_MODE:-32}
if [ "$CC" = "gcc" ]; then
OUT="aix-gcc"
+ if [ $OBJECT_MODE -eq 64 ]; then
+ echo 'Your $OBJECT_MODE was found to be set to 64'
+ OUT="aix64-gcc"
+ fi
elif [ $OBJECT_MODE -eq 64 ]; then
echo 'Your $OBJECT_MODE was found to be set to 64'
OUT="aix64-cc"
Thanks,
Joel
Title: config script does not detec aix64-gcc configuration automatically
Hi,
The config script in openssl 0.9.8m does not detect the aix64-gcc configuration automatically. You have to use the Configure script instead.
Here it the fix that needs to be done to resolve this.
*** config Thu Oct 15 08:58:00 2009
--- config.fix Wed Mar 3 08:01:05 2010
***************
*** 741,746 ****
--- 741,750 ----
OBJECT_MODE=${OBJECT_MODE:-32}
if [ "$CC" = "gcc" ]; then
OUT="aix-gcc"
+ if [ $OBJECT_MODE -eq 64 ]; then
+ echo 'Your $OBJECT_MODE was found to be set to 64'
+ OUT="aix64-gcc"
+ fi
elif [ $OBJECT_MODE -eq 64 ]; then
echo 'Your $OBJECT_MODE was found to be set to 64'
OUT="aix64-cc"
Thanks,
Joel
