# HG changeset patch # User Pascal Bellard # Date 1561569178 -7200 # Node ID 8710e9c81dd70a17e972963e32c20bcd258c58fa # Parent d8f824013cf6628c831c133e4e98b93ffca2527a mosh: use gcc83 diff -r d8f824013cf6 -r 8710e9c81dd7 mosh/receipt --- a/mosh/receipt Wed Jun 26 17:24:54 2019 +0200 +++ b/mosh/receipt Wed Jun 26 19:12:58 2019 +0200 @@ -12,9 +12,10 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="${WEB_SITE}$TARBALL" -DEPENDS="gcc-lib-base libcrypto libssl ncursesw perl protobuf ssh zlib" +DEPENDS="gcc-lib-base libcrypto libssl ncursesw perl protobuf ssh zlib \ +gcc83-lib-base" BUILD_DEPENDS="libcrypto-dev ncursesw-dev openssl-dev pkg-config protobuf-dev \ -zlib-dev automake" +zlib-dev automake gcc83" # Rules to configure and make the package. compile_rules() @@ -37,6 +38,8 @@ EOT ./autogen.sh ./configure \ + CC=gcc-83 \ + CXX=g++-83 \ --prefix=/usr \ --sysconfdir=/etc \ --enable-compile-warnings=error &&