1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-13 11:42:21 +00:00

config/cf/Imake.cf: Define AArch64Architecture on the BSDs.

This commit is contained in:
Lev Kujawski 2021-01-30 19:56:47 -07:00 committed by Jon Trulson
parent 7b79d810eb
commit fc1d29be81

View file

@ -86,6 +86,10 @@ XCOMM $TOG: Imake.cf /main/30 1998/04/28 13:55:25 barstow $
# define ZaurusArchitecture # define ZaurusArchitecture
# endif # endif
# endif # endif
# if defined(__aarch64__)
# define AArch64Architecture
# undef __aarch64__
# endif
# if defined(__mc68020__) || defined(mc68020) # if defined(__mc68020__) || defined(mc68020)
# define Mc68020Architecture # define Mc68020Architecture
# if defined(amiga) # if defined(amiga)
@ -180,6 +184,10 @@ XCOMM $TOG: Imake.cf /main/30 1998/04/28 13:55:25 barstow $
# define AMD64Architecture # define AMD64Architecture
# undef amd64 # undef amd64
# endif # endif
# ifdef __aarch64__
# define AArch64Architecture
# undef __aarch64__
# endif
#endif /* __FreeBSD__ */ #endif /* __FreeBSD__ */
#ifdef sun #ifdef sun
@ -479,14 +487,14 @@ XCOMM $TOG: Imake.cf /main/30 1998/04/28 13:55:25 barstow $
# undef __arm__ # undef __arm__
# undef __arm32__ # undef __arm32__
# endif # endif
# if defined(__sparc__) || defined(sparc)
# define SparcArchitecture
# undef sparc
# endif
# if defined(__aarch64__) # if defined(__aarch64__)
# define AArch64Architecture # define AArch64Architecture
# undef __aarch64__ # undef __aarch64__
# endif # endif
# if defined(__sparc__) || defined(sparc)
# define SparcArchitecture
# undef sparc
# endif
#endif /* linux */ #endif /* linux */
#if defined(sequent) || defined(_SEQUENT_) #if defined(sequent) || defined(_SEQUENT_)