void-packages

Void Source Packages
git clone git://ezup.dev/void-packages.git
Log | Files | Refs | README | LICENSE

0002-PPC-big-endian.patch (638B)


      1 Subject: [PATCH] PPC big endian
      2 
      3 ---
      4  Telegram/SourceFiles/config.h | 2 +-
      5  1 file changed, 1 insertion(+), 1 deletion(-)
      6 
      7 diff --git Telegram/SourceFiles/config.h Telegram/SourceFiles/config.h
      8 index fb7b54e4d..6a873fbd7 100644
      9 --- Telegram/SourceFiles/config.h
     10 +++ Telegram/SourceFiles/config.h
     11 @@ -177,7 +177,7 @@ constexpr auto ApiHash = "344583e45741c457fe1862106095a5eb";
     12  #endif // TDESKTOP_API_ID && TDESKTOP_API_HASH
     13  
     14  #if Q_BYTE_ORDER == Q_BIG_ENDIAN
     15 -#error "Only little endian is supported!"
     16 +#warning "Only little endian is supported!"
     17  #endif // Q_BYTE_ORDER == Q_BIG_ENDIAN
     18  
     19  #if (TDESKTOP_ALPHA_VERSION != 0)
     20 -- 
     21 2.24.1
     22