Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 266471 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-8 / +8 lines)
Line  Link Here
0
-- Modules/_ctypes/libffi/configure.ac
0
++ Modules/_ctypes/libffi/configure.ac
Lines 106-115 Link Here
106
	;;
106
	;;
107
107
108
  mips-sgi-irix5.* | mips-sgi-irix6.*)
108
  mips-sgi-irix5.* | mips-sgi-irix6.*)
109
	TARGET=MIPS; TARGETDIR=mips
109
	TARGET=MIPS_IRIX; TARGETDIR=mips
110
	;;
110
	;;
111
  mips*-*-linux*)
111
  mips*-*-linux*)
112
	TARGET=MIPS; TARGETDIR=mips
112
	TARGET=MIPS_LINUX; TARGETDIR=mips
113
	;;
113
	;;
114
114
115
  powerpc*-*-linux* | powerpc-*-sysv*)
115
  powerpc*-*-linux* | powerpc-*-sysv*)
Lines 162-168 Link Here
162
  AC_MSG_ERROR(["libffi has not been ported to $host."])
162
  AC_MSG_ERROR(["libffi has not been ported to $host."])
163
fi
163
fi
164
164
165
AM_CONDITIONAL(MIPS, test x$TARGET = xMIPS)
165
AM_CONDITIONAL(MIPS,[expr x$TARGET : 'xMIPS' > /dev/null])
166
AM_CONDITIONAL(SPARC, test x$TARGET = xSPARC)
166
AM_CONDITIONAL(SPARC, test x$TARGET = xSPARC)
167
AM_CONDITIONAL(X86, test x$TARGET = xX86)
167
AM_CONDITIONAL(X86, test x$TARGET = xX86)
168
AM_CONDITIONAL(X86_FREEBSD, test x$TARGET = xX86_FREEBSD)
168
AM_CONDITIONAL(X86_FREEBSD, test x$TARGET = xX86_FREEBSD)
169
-- Modules/_ctypes/libffi/configure
169
++ Modules/_ctypes/libffi/configure
Lines 20426-20435 Link Here
20426
	;;
20426
	;;
20427
20427
20428
  mips-sgi-irix5.* | mips-sgi-irix6.*)
20428
  mips-sgi-irix5.* | mips-sgi-irix6.*)
20429
	TARGET=MIPS; TARGETDIR=mips
20429
	TARGET=MIPS_IRIX; TARGETDIR=mips
20430
	;;
20430
	;;
20431
  mips*-*-linux*)
20431
  mips*-*-linux*)
20432
	TARGET=MIPS; TARGETDIR=mips
20432
	TARGET=MIPS_LINUX; TARGETDIR=mips
20433
	;;
20433
	;;
20434
20434
20435
  powerpc*-*-linux* | powerpc-*-sysv*)
20435
  powerpc*-*-linux* | powerpc-*-sysv*)
Lines 20484-20490 Link Here
20484
   { (exit 1); exit 1; }; }
20484
   { (exit 1); exit 1; }; }
20485
fi
20485
fi
20486
20486
20487
 if test x$TARGET = xMIPS; then
20487
 if expr x$TARGET : 'xMIPS' > /dev/null; then
20488
  MIPS_TRUE=
20488
  MIPS_TRUE=
20489
  MIPS_FALSE='#'
20489
  MIPS_FALSE='#'
20490
else
20490
else

Return to bug 266471