wok diff mosh/receipt @ rev 23757

fusecloop/extract_compressed_fs: fix v2 convertion
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 02 17:31:45 2020 +0000 (2020-05-02)
parents daaaf5face8a
children 5b0e64c0628a
line diff
     1.1 --- a/mosh/receipt	Fri May 03 16:47:04 2019 +0200
     1.2 +++ b/mosh/receipt	Sat May 02 17:31:45 2020 +0000
     1.3 @@ -12,9 +12,10 @@
     1.4  TARBALL="$PACKAGE-$VERSION.tar.gz"
     1.5  WGET_URL="${WEB_SITE}$TARBALL"
     1.6  
     1.7 -DEPENDS="gcc-lib-base libcrypto libssl ncursesw perl protobuf ssh zlib"
     1.8 +DEPENDS="gcc-lib-base libcrypto libssl ncursesw perl protobuf ssh zlib \
     1.9 +gcc83-lib-base"
    1.10  BUILD_DEPENDS="libcrypto-dev ncursesw-dev openssl-dev pkg-config protobuf-dev \
    1.11 -zlib-dev automake"
    1.12 +zlib-dev automake gcc83"
    1.13  
    1.14  # Rules to configure and make the package.
    1.15  compile_rules()
    1.16 @@ -37,6 +38,8 @@
    1.17  EOT
    1.18  	./autogen.sh
    1.19  	./configure			\
    1.20 +		CC=gcc-83		\
    1.21 +		CXX=g++-83		\
    1.22  		--prefix=/usr		\
    1.23  		--sysconfdir=/etc	\
    1.24  		--enable-compile-warnings=error &&