From c187bdaf131d4444b798b44cf7facba2bab8db26 Mon Sep 17 00:00:00 2001 From: Raphael Kubo da Costa Date: Sun, 4 Sep 2016 16:42:33 +0000 Subject: [PATCH] Explicitly disable C++11 during the build. Prepare for Qt 5.6, which will pass -std=gnu++11 by default when the compiler supports it, and the build currently does not work: ../TelegramQML-0.9.2/telegramqml.cpp:4794:10: error: case value evaluates to 2573335900, which cannot be narrowed to type 'int' [-Wc++11-narrowing] case Update::typeUpdateReadHistoryInbox: Note that Qt 5.7 will start requiring C++11 support, so this will need to be fixed properly in the future. PR: 211916 --- net-im/telegramqml/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/net-im/telegramqml/Makefile b/net-im/telegramqml/Makefile index 1adcd39b9fc7..b12866f19b86 100644 --- a/net-im/telegramqml/Makefile +++ b/net-im/telegramqml/Makefile @@ -25,6 +25,12 @@ USE_LDCONFIG= yes QMAKE_ARGS= BUILD_MODE+=lib \ LIBQTELEGRAM_INCLUDE_PATH="${LOCALBASE}/include/libqtelegram-ae" +# Explicitly disable C++11, as Qt 5.6 defaults to -std=gnu++11 when the +# compiler supports it and the build currently fails. +# ../TelegramQML-0.9.2/telegramqml.cpp:4794:10: error: case value evaluates to 2573335900, which cannot be narrowed to type 'int' [-Wc++11-narrowing] +# case Update::typeUpdateReadHistoryInbox: +QMAKE_ARGS+= CONFIG-="c++11" + post-patch: @${REINPLACE_CMD} -e "/isEmpty(OPENSSL_INCLUDE_PATH)/d" \ ${WRKSRC}/telegramqml.pri