define ARCH_X86_64 globally.

2004-01-31  Manish Singh  <yosh@gimp.org>

        * configure.in: define ARCH_X86_64 globally.

        * app/base/cpu-accel.c: remove local definition.
This commit is contained in:
Manish Singh 2004-01-31 08:53:53 +00:00 committed by Manish Singh
parent a36798e997
commit 955905898e
4 changed files with 12 additions and 11 deletions

View File

@ -1,3 +1,9 @@
2004-01-31 Manish Singh <yosh@gimp.org>
* configure.in: define ARCH_X86_64 globally.
* app/base/cpu-accel.c: remove local definition.
2004-01-30 Michael Natterer <mitch@gimp.org>
* app/widgets/gimptooloptionseditor.[ch]: added the scrolled

View File

@ -40,11 +40,6 @@
#ifdef ARCH_X86
#if GLIB_SIZEOF_LONG == 8
#define ARCH_X86_64 1
#endif
typedef enum
{
ARCH_X86_VENDOR_NONE,

View File

@ -156,10 +156,15 @@ esac
AC_MSG_RESULT([$target_or_host])
case "$target_or_host" in
i*86-*-* | x86_64-*-*)
i*86-*-*)
have_x86=yes
AC_DEFINE(ARCH_X86, 1, [Define to 1 if you are compiling for ix86.])
;;
x86_64-*-*)
have_x86=yes
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-*)
have_ppc=yes
AC_DEFINE(ARCH_PPC, 1, [Define to 1 if you are compiling for PowerPC.])

View File

@ -40,11 +40,6 @@
#ifdef ARCH_X86
#if GLIB_SIZEOF_LONG == 8
#define ARCH_X86_64 1
#endif
typedef enum
{
ARCH_X86_VENDOR_NONE,