Ticket #46496: fix_sparc_atomics.patch

File fix_sparc_atomics.patch, 691 bytes (added by RJVB (René Bertin), 10 years ago)

from Ubuntu

  • qtbase/src/corelib/thread/qbasicatomic.h

    Description: Do not use specific headers for Sparc atomics
     By removing the unexistant sparc headers the C++11 ones will be used.
    Author: Adam Majer <adamm@debian.org>
    Forwarded: no
    Reviewed-by: Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>
    
    ---
     src/corelib/thread/qbasicatomic.h |    2 --
     1 file changed, 2 deletions(-)
    
     
    6262#  include "QtCore/qatomic_ia64.h"
    6363#elif defined(Q_PROCESSOR_MIPS)
    6464#  include "QtCore/qatomic_mips.h"
    65 #elif defined(Q_PROCESSOR_SPARC)
    66 #  include "QtCore/qatomic_sparc.h"
    6765#elif defined(Q_PROCESSOR_X86)
    6866#  include <QtCore/qatomic_x86.h>
    6967