imake: fix warnings on PowerPC builds

Also correct a compile failure occurring within DtMmdb's
atoi_pearson.C by defining PowerPC as a big endian platform.
This commit is contained in:
Lev Kujawski
2021-01-17 10:01:48 -07:00
committed by Jon Trulson
parent 6245f4fe7a
commit 21491c0e52
2 changed files with 5 additions and 5 deletions

View File

@@ -298,16 +298,16 @@ char *cpp_argv[ARGUMENTS] = {
"-D__amd64__",
# endif
# ifdef __ppc__
{"-D__powerpc__", "1"},
"-D__powerpc__",
# endif
# ifdef __ppc64__
{"-D__powerpc64__", "1"},
"-D__powerpc64__",
# endif
# ifdef __powerpc__
{"-D__powerpc__", "1"},
"-D__powerpc__",
# endif
# ifdef __powerpc64__
{"-D__powerpc64__", "1"},
"-D__powerpc64__",
# endif
# if defined(__GNUC__) && !defined(__llvm__)