mozilla-crashreporter-x86_64.patch
branchmozilla-1.9.2
changeset 64 7bb1edb78dd5
equal deleted inserted replaced
63:9213a0672227 64:7bb1edb78dd5
       
     1 # HG changeset patch
       
     2 # User Ted Mielczarek <ted.mielczarek@gmail.com>
       
     3 # Date 1269522979 14400
       
     4 # Node ID a00284a2b2f0063b0f053938c1775cf207fe25bb
       
     5 # Parent  33d05f60932bac3d66231a54840cbdd173297fff
       
     6 bug 554021 - enable compiling Breakpad on Linux/x86-64 by default
       
     7 
       
     8 diff --git a/configure.in b/configure.in
       
     9 --- a/configure.in
       
    10 +++ b/configure.in
       
    11 @@ -5858,13 +5858,20 @@
       
    12  dnl = Breakpad crash reporting (on by default on supported platforms)
       
    13  dnl ========================================================
       
    14  
       
    15 -if (test "$OS_ARCH" = "WINNT" -a -z "$GNU_CC" \
       
    16 -    || test "$OS_ARCH" = "Darwin" \
       
    17 -    || test "$OS_ARCH" = "Linux" -a "$CPU_ARCH" = "x86" \
       
    18 -    || test "$OS_ARCH" = "SunOS") \
       
    19 -   && test -z "$HAVE_64BIT_OS"; then
       
    20 -   MOZ_CRASHREPORTER=1
       
    21 -fi
       
    22 +case $target in
       
    23 +i?86-*-mingw*)
       
    24 +  MOZ_CRASHREPORTER=1
       
    25 +  ;;
       
    26 +i?86-apple-darwin*|powerpc-apple-darwin*)
       
    27 +  MOZ_CRASHREPORTER=1
       
    28 +  ;;
       
    29 +i?86-*-linux*|x86_64-*-linux*)
       
    30 +  MOZ_CRASHREPORTER=1
       
    31 +  ;;
       
    32 +*solaris*)
       
    33 +  MOZ_CRASHREPORTER=1
       
    34 +  ;;
       
    35 +esac
       
    36  
       
    37  MOZ_ARG_DISABLE_BOOL(crashreporter,
       
    38  [  --disable-crashreporter          Disable breakpad crash reporting],