wok rev 19089

cross/arm: fix build for aterm flex lame ppp
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Apr 30 20:15:47 2016 +0200 (2016-04-30)
parents 881c653f2f8c
children b5dcc3246019
files aterm/receipt flex/receipt lame/receipt ppp/receipt
line diff
     1.1 --- a/aterm/receipt	Sat Apr 30 18:20:33 2016 +0200
     1.2 +++ b/aterm/receipt	Sat Apr 30 20:15:47 2016 +0200
     1.3 @@ -18,6 +18,10 @@
     1.4  # Rules to configure and make the package.
     1.5  compile_rules()
     1.6  {
     1.7 +	case "$ARCH" in
     1.8 +	arm*)
     1.9 +		export PATH=/cross/arm/tools/arm-slitaz-linux-gnueabi/bin:$PATH
    1.10 +	esac
    1.11  	./configure $CONFIGURE_ARGS &&
    1.12  	make && make install
    1.13  }
     2.1 --- a/flex/receipt	Sat Apr 30 18:20:33 2016 +0200
     2.2 +++ b/flex/receipt	Sat Apr 30 20:15:47 2016 +0200
     2.3 @@ -20,7 +20,7 @@
     2.4  	case "$ARCH" in
     2.5  		arm*)
     2.6  			export ac_cv_func_malloc_0_nonnull=yes
     2.7 -			export ac_cv_func_remalloc_0_nonnull=yes
     2.8 +			export ac_cv_func_realloc_0_nonnull=yes
     2.9  	esac
    2.10  	./configure $CONFIGURE_ARGS &&
    2.11  	make && make install
     3.1 --- a/lame/receipt	Sat Apr 30 18:20:33 2016 +0200
     3.2 +++ b/lame/receipt	Sat Apr 30 20:15:47 2016 +0200
     3.3 @@ -12,10 +12,10 @@
     3.4  HOST_ARCH="i486 arm"
     3.5  
     3.6  DEPENDS="ncurses"
     3.7 -BUILD_DEPENDS="gtk+-dev ncurses-dev"
     3.8 +BUILD_DEPENDS="gtk+-dev ncurses-dev libtinfo"
     3.9  
    3.10  case "$ARCH" in
    3.11 -	arm) BUILD_DEPENDS="ncurses-dev" ;;
    3.12 +	arm) BUILD_DEPENDS="ncurses-dev libtinfo" ;;
    3.13  esac
    3.14  
    3.15  # Rules to configure and make the package.
     4.1 --- a/ppp/receipt	Sat Apr 30 18:20:33 2016 +0200
     4.2 +++ b/ppp/receipt	Sat Apr 30 20:15:47 2016 +0200
     4.3 @@ -18,6 +18,10 @@
     4.4  # Rules to configure and make the package.
     4.5  compile_rules()
     4.6  {
     4.7 +	case "$ARCH" in
     4.8 +	arm*)
     4.9 +		export PATH=/cross/arm/tools/arm-slitaz-linux-gnueabi/bin:$PATH
    4.10 +	esac
    4.11  	./configure --prefix=/usr \
    4.12  		$CONFIGURE_ARGS &&
    4.13  	make &&