mirror of https://github.com/GNOME/gimp.git
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:
parent
a36798e997
commit
955905898e
|
@ -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
|
||||
|
|
|
@ -40,11 +40,6 @@
|
|||
|
||||
#ifdef ARCH_X86
|
||||
|
||||
#if GLIB_SIZEOF_LONG == 8
|
||||
#define ARCH_X86_64 1
|
||||
#endif
|
||||
|
||||
|
||||
typedef enum
|
||||
{
|
||||
ARCH_X86_VENDOR_NONE,
|
||||
|
|
|
@ -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.])
|
||||
|
|
|
@ -40,11 +40,6 @@
|
|||
|
||||
#ifdef ARCH_X86
|
||||
|
||||
#if GLIB_SIZEOF_LONG == 8
|
||||
#define ARCH_X86_64 1
|
||||
#endif
|
||||
|
||||
|
||||
typedef enum
|
||||
{
|
||||
ARCH_X86_VENDOR_NONE,
|
||||
|
|
Loading…
Reference in New Issue