mirror of https://github.com/GNOME/gimp.git
Add check for ppc64.
2005-03-03 Manish Singh <yosh@gimp.org> * configure.in: Add check for ppc64.
This commit is contained in:
parent
cedeb57631
commit
5dda6a8219
|
@ -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>
|
2005-03-03 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
* tools/pdbgen/pdb/drawable.pdb: fix a typo in the docs.
|
* tools/pdbgen/pdb/drawable.pdb: fix a typo in the docs.
|
||||||
|
|
|
@ -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, 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.])
|
AC_DEFINE(ARCH_X86_64, 1, [Define to 1 if you are compiling for amd64.])
|
||||||
;;
|
;;
|
||||||
ppc-*-linux* | powerpc-*)
|
ppc-*-* | powerpc-*)
|
||||||
have_ppc=yes
|
have_ppc=yes
|
||||||
AC_DEFINE(ARCH_PPC, 1, [Define to 1 if you are compiling for PowerPC.])
|
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
|
esac
|
||||||
|
|
Loading…
Reference in New Issue