Add check for ppc64.

2005-03-03  Manish Singh  <yosh@gimp.org>

        * configure.in: Add check for ppc64.
This commit is contained in:
Manish Singh 2005-03-03 09:23:48 +00:00 committed by Manish Singh
parent cedeb57631
commit 5dda6a8219
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2005-03-03 Manish Singh <yosh@gimp.org>
* configure.in: Add check for ppc64.
2005-03-03 Manish Singh <yosh@gimp.org>
* tools/pdbgen/pdb/drawable.pdb: fix a typo in the docs.

View File

@ -194,10 +194,15 @@ case "$target_or_host" in
AC_DEFINE(ARCH_X86, 1, [Define to 1 if you are compiling for ix86.])
AC_DEFINE(ARCH_X86_64, 1, [Define to 1 if you are compiling for amd64.])
;;
ppc-*-linux* | powerpc-*)
ppc-*-* | powerpc-*)
have_ppc=yes
AC_DEFINE(ARCH_PPC, 1, [Define to 1 if you are compiling for PowerPC.])
;;
ppc64-*-* | powerpc64-*)
have_ppc=yes
AC_DEFINE(ARCH_PPC, 1, [Define to 1 if you are compiling for PowerPC.])
AC_DEFINE(ARCH_PPC64, 1, [Define to 1 if you are compiling for PowerPC64.])
;;
*)
;;
esac