components/ruby/ruby-23/patches/02-config.patch
author April Chin <april.chin@oracle.com>
Thu, 08 Dec 2016 12:39:42 -0800
changeset 7469 422c29c822ab
parent 4210 components/ruby/ruby-21/patches/02-config.patch@d367c184f47f
permissions -rw-r--r--
PSARC/2016/585 Add Ruby 2.3 23085411 Upgrade Ruby to 2.3 24966407 problems with Ruby 2.1 manpages

# Ensure we correctly identify a 64-bit build and
# use "amd64" and "sparcv9" for the 64-bit cpu string.
# Changes were developed in-house, are Solaris specific,
# and are not suitable for upstream.

--- ruby-2.3.1-orig/tool/config.guess	2016-04-25 11:09:28.000000000 -0700
+++ ruby-2.3.1/tool/config.guess	2016-09-14 14:00:35.000000000 -0700
@@ -369,25 +369,18 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:$
 	echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
 	exit ;;
     sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
-	echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
+	# Check CFLAGS for the 64-bit compile option to set the arch
+	SUN_ARCH="sparc"
+	echo $CFLAGS | /usr/gnu/bin/grep -q -w '\-m64' && SUN_ARCH="sparcv9"
+	echo ${SUN_ARCH}-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
 	exit ;;
     i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*)
 	echo i386-pc-auroraux${UNAME_RELEASE}
 	exit ;;
     i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
-	eval $set_cc_for_build
 	SUN_ARCH="i386"
-	# If there is a compiler, see if it is configured for 64-bit objects.
-	# Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
-	# This test works for both compilers.
-	if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
-	    if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
-		(CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
-		grep IS_64BIT_ARCH >/dev/null
-	    then
-		SUN_ARCH="x86_64"
-	    fi
-	fi
+	# Check CFLAGS for the 64-bit compile option to set the arch
+	echo $CFLAGS | /usr/gnu/bin/grep -q -w '\-m64' && SUN_ARCH="amd64"
 	echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
 	exit ;;
     sun4*:SunOS:6*:*)
--- ruby-2.3.1-orig/tool/config.sub	2016-04-25 11:09:28.000000000 -0700
+++ ruby-2.3.1/tool/config.sub	2016-09-14 14:00:35.000000000 -0700
@@ -491,7 +491,7 @@ case $basic_machine in
 		basic_machine=x86_64-pc
 		;;
 	amd64-*)
-		basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'`
+		# don't change basic_machine
 		;;
 	amdahl)
 		basic_machine=580-amdahl