Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 360427 | Differences between
and this patch

Collapse All | Expand All

(-)a/ipc/chromium/Makefile.in (-1 lines)
Lines 241-257 CPPSRCS += \ Link Here
241
241
242
endif # } OS_MACOSX
242
endif # } OS_MACOSX
243
243
244
ifdef OS_LINUX # {
244
ifdef OS_LINUX # {
245
245
246
CPPSRCS += \
246
CPPSRCS += \
247
  atomicops_internals_x86_gcc.cc \
247
  atomicops_internals_x86_gcc.cc \
248
  base_paths_linux.cc \
248
  base_paths_linux.cc \
249
  data_pack.cc \
250
  file_util_linux.cc \
249
  file_util_linux.cc \
251
  file_version_info_linux.cc \
250
  file_version_info_linux.cc \
252
  idle_timer_none.cc \
251
  idle_timer_none.cc \
253
  process_util_linux.cc \
252
  process_util_linux.cc \
254
  time_posix.cc \
253
  time_posix.cc \
255
  $(NULL)
254
  $(NULL)
256
255
257
ifdef MOZ_ENABLE_GTK2
256
ifdef MOZ_ENABLE_GTK2
(-)a/ipc/chromium/src/build/build_config.h (-1 / +1 lines)
Lines 52-68 Link Here
52
#define ARCH_CPU_X86_FAMILY 1
52
#define ARCH_CPU_X86_FAMILY 1
53
#define ARCH_CPU_X86 1
53
#define ARCH_CPU_X86 1
54
#define ARCH_CPU_32_BITS 1
54
#define ARCH_CPU_32_BITS 1
55
#elif defined(__ARMEL__)
55
#elif defined(__ARMEL__)
56
#define ARCH_CPU_ARM_FAMILY 1
56
#define ARCH_CPU_ARM_FAMILY 1
57
#define ARCH_CPU_ARMEL 1
57
#define ARCH_CPU_ARMEL 1
58
#define ARCH_CPU_32_BITS 1
58
#define ARCH_CPU_32_BITS 1
59
#define WCHAR_T_IS_UNSIGNED 1
59
#define WCHAR_T_IS_UNSIGNED 1
60
#elif defined(__ppc__)
60
#elif defined(__ppc__) || defined(__powerpc__)
61
#define ARCH_CPU_PPC 1
61
#define ARCH_CPU_PPC 1
62
#define ARCH_CPU_32_BITS 1
62
#define ARCH_CPU_32_BITS 1
63
#else
63
#else
64
#error Please add support for your architecture in build/build_config.h
64
#error Please add support for your architecture in build/build_config.h
65
#endif
65
#endif
66
66
67
// Type detection for wchar_t.
67
// Type detection for wchar_t.
68
#ifndef CHROMIUM_MOZILLA_BUILD
68
#ifndef CHROMIUM_MOZILLA_BUILD

Return to bug 360427