wok-current rev 15281
qemacs: race condition
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Sep 26 13:36:58 2013 +0000 (2013-09-26) |
parents | 136cd9cc2e6c |
children | 32bcd220f1cd |
files | qemacs-tiny/receipt qemacs-x11/receipt qemacs/receipt |
line diff
1.1 --- a/qemacs-tiny/receipt Thu Sep 26 13:12:43 2013 +0000 1.2 +++ b/qemacs-tiny/receipt Thu Sep 26 13:36:58 2013 +0000 1.3 @@ -21,7 +21,8 @@ 1.4 cd $src 1.5 export CFLAGS="-Wno-error=unused-but-set-variable -O2" 1.6 sed -i 's/\(define SAVED_DATA_SIZE \).*/\1 __builtin_offsetof(EditState,end_of_saved_data)/' qe.h 1.7 - ./configure --prefix=/usr --enable-tiny && make qe 1.8 + ./configure --prefix=/usr --enable-tiny && 1.9 + make -j 1 qe 1.10 } 1.11 1.12 # Rules to gen a SliTaz package suitable for Tazpkg.
2.1 --- a/qemacs-x11/receipt Thu Sep 26 13:12:43 2013 +0000 2.2 +++ b/qemacs-x11/receipt Thu Sep 26 13:36:58 2013 +0000 2.3 @@ -9,17 +9,19 @@ 2.4 LICENSE="LGPL2.1" 2.5 TARBALL="$SOURCE-$VERSION.tar.gz" 2.6 WEB_SITE="http://bellard.org/$SOURCE/" 2.7 -DEPENDS="xorg-libX11 xorg-libXext xorg-libXv libxcb xorg-libXau xorg-libXdmcp" 2.8 -BUILD_DEPENDS="gcc3 xorg-libX11-dev xorg-libXext-dev xorg-libXv-dev" 2.9 WGET_URL="${WEB_SITE}$TARBALL" 2.10 PROVIDE="qemacs" 2.11 TAGS="editor" 2.12 2.13 +DEPENDS="xorg-libX11 xorg-libXext xorg-libXv libxcb xorg-libXau xorg-libXdmcp" 2.14 +BUILD_DEPENDS="gcc3 xorg-libX11-dev xorg-libXext-dev xorg-libXv-dev" 2.15 + 2.16 # Rules to configure and make the package. 2.17 compile_rules() 2.18 { 2.19 cd $src 2.20 - ./configure --prefix=/usr $CONFIGURE_ARGS && make CC=gcc-3 2.21 + ./configure --prefix=/usr $CONFIGURE_ARGS && 2.22 + make CC=gcc-3 -j 1 2.23 } 2.24 2.25 # Rules to gen a SliTaz package suitable for Tazpkg.
3.1 --- a/qemacs/receipt Thu Sep 26 13:12:43 2013 +0000 3.2 +++ b/qemacs/receipt Thu Sep 26 13:36:58 2013 +0000 3.3 @@ -8,16 +8,18 @@ 3.4 LICENSE="LGPL2.1" 3.5 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.6 WEB_SITE="http://bellard.org/$PACKAGE/" 3.7 +WGET_URL="${WEB_SITE}$TARBALL" 3.8 +TAGS="editor" 3.9 + 3.10 DEPENDS="" 3.11 BUILD_DEPENDS="gcc3" 3.12 -WGET_URL="${WEB_SITE}$TARBALL" 3.13 -TAGS="editor" 3.14 3.15 # Rules to configure and make the package. 3.16 compile_rules() 3.17 { 3.18 cd $src 3.19 - ./configure --prefix=/usr --disable-x11 $CONFIGURE_ARGS && make CC=gcc-3 3.20 + ./configure --prefix=/usr --disable-x11 $CONFIGURE_ARGS && 3.21 + make CC=gcc-3 -j 1 3.22 } 3.23 3.24 # Rules to gen a SliTaz package suitable for Tazpkg.