Deleted Added
full compact
config (205128) config (206046)
1#!/bin/sh
2#
3# OpenSSL config: determine the operating system and run ./Configure
4#
5# "config -h" for usage information.
6#
7# this is a merge of minarch and GuessOS from the Apache Group.
8# Originally written by Tim Hudson <tjh@cryptsoft.com>.

--- 727 unchanged lines hidden (view full) ---

736 options="$options -D_REENTRANT" ;;
737 *-hpux) OUT="hpux-parisc-$CC" ;;
738 *-aix)
739 KERNEL_BITS=`(getconf KERNEL_BITMODE) 2>/dev/null`
740 KERNEL_BITS=${KERNEL_BITS:-32}
741 OBJECT_MODE=${OBJECT_MODE:-32}
742 if [ "$CC" = "gcc" ]; then
743 OUT="aix-gcc"
1#!/bin/sh
2#
3# OpenSSL config: determine the operating system and run ./Configure
4#
5# "config -h" for usage information.
6#
7# this is a merge of minarch and GuessOS from the Apache Group.
8# Originally written by Tim Hudson <tjh@cryptsoft.com>.

--- 727 unchanged lines hidden (view full) ---

736 options="$options -D_REENTRANT" ;;
737 *-hpux) OUT="hpux-parisc-$CC" ;;
738 *-aix)
739 KERNEL_BITS=`(getconf KERNEL_BITMODE) 2>/dev/null`
740 KERNEL_BITS=${KERNEL_BITS:-32}
741 OBJECT_MODE=${OBJECT_MODE:-32}
742 if [ "$CC" = "gcc" ]; then
743 OUT="aix-gcc"
744 if [ $OBJECT_MODE -eq 64 ]; then
745 echo 'Your $OBJECT_MODE was found to be set to 64'
746 OUT="aix64-gcc"
747 fi
744 elif [ $OBJECT_MODE -eq 64 ]; then
745 echo 'Your $OBJECT_MODE was found to be set to 64'
746 OUT="aix64-cc"
747 else
748 OUT="aix-cc"
749 if [ $KERNEL_BITS -eq 64 ]; then
750 echo "WARNING! If you wish to build 64-bit kit, then you have to"
751 echo " invoke './Configure aix64-cc' *manually*."

--- 139 unchanged lines hidden ---
748 elif [ $OBJECT_MODE -eq 64 ]; then
749 echo 'Your $OBJECT_MODE was found to be set to 64'
750 OUT="aix64-cc"
751 else
752 OUT="aix-cc"
753 if [ $KERNEL_BITS -eq 64 ]; then
754 echo "WARNING! If you wish to build 64-bit kit, then you have to"
755 echo " invoke './Configure aix64-cc' *manually*."

--- 139 unchanged lines hidden ---