diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2011-04-07 21:24:29 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2011-04-07 21:24:29 +0200 |
commit | ba43825b2d6944008f9cfb8101d66fd856b962a5 (patch) | |
tree | fc1e6d2254d7265a8316be23267b7c8d34bcd542 /package/firefox/patches | |
parent | 9201a515c4973269245bce80939aaac199e0a9f2 (diff) |
add Darwin cross-compile patches
Diffstat (limited to 'package/firefox/patches')
3 files changed, 54 insertions, 1 deletions
diff --git a/package/firefox/patches/patch-configure b/package/firefox/patches/patch-configure index 42b39365b..733e4aa4c 100644 --- a/package/firefox/patches/patch-configure +++ b/package/firefox/patches/patch-configure @@ -1,5 +1,14 @@ --- mozilla-2.0.orig/configure 2011-03-19 00:48:56.000000000 +0100 -+++ mozilla-2.0/configure 2011-03-28 12:25:19.041814743 +0200 ++++ mozilla-2.0/configure 2011-04-07 18:48:49.000000000 +0200 +@@ -1588,7 +1588,7 @@ test -n "$HOST_CXX" || HOST_CXX="""" + HOST_CXXFLAGS="$CXXFLAGS" + fi + if test -z "$HOST_LDFLAGS"; then +- HOST_LDFLAGS="$LDFLAGS" ++ HOST_LDFLAGS="$LDFLAGS_FOR_BUILD" + fi + if test -z "$HOST_AR_FLAGS"; then + HOST_AR_FLAGS="$AR_FLAGS" @@ -22573,15 +22573,6 @@ if test "${with_libIDL+set}" = set; then fi diff --git a/package/firefox/patches/patch-ipc_chromium_src_base_debug_util_posix_cc b/package/firefox/patches/patch-ipc_chromium_src_base_debug_util_posix_cc new file mode 100644 index 000000000..cc75305d9 --- /dev/null +++ b/package/firefox/patches/patch-ipc_chromium_src_base_debug_util_posix_cc @@ -0,0 +1,24 @@ +--- mozilla-2.0.orig/ipc/chromium/src/base/debug_util_posix.cc 2011-03-19 00:33:46.000000000 +0100 ++++ mozilla-2.0/ipc/chromium/src/base/debug_util_posix.cc 2011-04-07 20:17:31.000000000 +0200 +@@ -119,11 +119,7 @@ StackTrace::StackTrace() { + const int kMaxCallers = 256; + + void* callers[kMaxCallers]; +-#ifndef ANDROID +- int count = backtrace(callers, kMaxCallers); +-#else + int count = 0; +-#endif + + // Though the backtrace API man page does not list any possible negative + // return values, we still still exclude them because they would break the +@@ -138,9 +134,6 @@ StackTrace::StackTrace() { + + void StackTrace::PrintBacktrace() { + fflush(stderr); +-#ifndef ANDROID +- backtrace_symbols_fd(&trace_[0], trace_.size(), STDERR_FILENO); +-#endif + } + + void StackTrace::OutputToStream(std::ostream* os) { diff --git a/package/firefox/patches/patch-xpcom_reflect_xptcall_src_md_unix_xptc_platforms_unixish_x86_h b/package/firefox/patches/patch-xpcom_reflect_xptcall_src_md_unix_xptc_platforms_unixish_x86_h new file mode 100644 index 000000000..0b2443c1e --- /dev/null +++ b/package/firefox/patches/patch-xpcom_reflect_xptcall_src_md_unix_xptc_platforms_unixish_x86_h @@ -0,0 +1,20 @@ +--- mozilla-2.0.orig/xpcom/reflect/xptcall/src/md/unix/xptc_platforms_unixish_x86.h 2011-03-19 00:34:13.000000000 +0100 ++++ mozilla-2.0/xpcom/reflect/xptcall/src/md/unix/xptc_platforms_unixish_x86.h 2011-04-07 19:02:44.000000000 +0200 +@@ -67,6 +67,9 @@ + * + */ + ++#define CFRONT_STYLE_THIS_ADJUST ++ ++#if 0 + #if defined(LINUX) || (defined(__GLIBC__) && (defined(__FreeBSD_kernel__) || defined(__GNU__))) + + #if (__GNUC__ == 2) && (__GNUC_MINOR__ <= 7) +@@ -159,6 +162,7 @@ + #else + #error "need a platform define if using unixish x86 code" + #endif ++#endif + + /***************************************************************************/ + |