# HG changeset patch # User Erkan Yilmaz # Date 1528569118 0 # Node ID f4802f2f5ea1e7be90679e8231fb932f70b2e1d1 # Parent aaa2048b539172a5b431351370cc7d33bd3493b8 gpgme: use new gcc -> cook says: no compiler with C++11 support found -> C++ / QT bindings would be disabled diff -r aaa2048b5391 -r f4802f2f5ea1 gpgme/receipt --- a/gpgme/receipt Sat Jun 09 17:59:58 2018 +0000 +++ b/gpgme/receipt Sat Jun 09 18:31:58 2018 +0000 @@ -11,7 +11,7 @@ WGET_URL="https://www.gnupg.org/ftp/gcrypt/gpgme/$TARBALL" DEPENDS="libassuan gnupg" -BUILD_DEPENDS="libgpg-error-dev libassuan-dev gnupg" +BUILD_DEPENDS="libgpg-error-dev libassuan-dev gnupg gcc63 gcc63-lib-base" # Rules to configure and make the package. compile_rules() @@ -19,6 +19,7 @@ # Integrity check: https://www.gnupg.org/download/integrity_check.html echo "95b1fc427871ca8d30d6d3b1985c816fe0b5077b $SRC/$TARBALL" | sha1sum -c || exit 1 + export CC=gcc-63 CXX=g++-63 ./configure $CONFIGURE_ARGS && make && make install }