[SCM] mpg123/master: Pass --with-cpu=arm_nofpu to configure for armhf too.
Miguel Colon
debian.micove at gmail.com
Sun Apr 1 14:36:40 UTC 2012
On Sun, Apr 1, 2012 at 4:26 AM, <alessio at users.alioth.debian.org> wrote:
> The following commit has been merged in the master branch:
> commit 726c947f2edde84a0a86ed972cb61a5e669501b7
> Author: Alessio Treglia <alessio at debian.org>
> Date: Sun Apr 1 10:25:41 2012 +0200
>
> Pass --with-cpu=arm_nofpu to configure for armhf too.
>
> diff --git a/debian/rules b/debian/rules
> index bc8a8cd..9f82935 100755
> --- a/debian/rules
> +++ b/debian/rules
> @@ -17,13 +17,7 @@ CONF_COMMON:=--enable-static=no --enable-shared --enable-lfs-alias \
> --with-module-suffix=.so
>
> CONF_i486:=--with-cpu=x86_dither
> -ifeq ($(ARCH),armel)
> CONF_arm:=--with-cpu=arm_nofpu
> -else
> -ifeq ($(ARCH),armhf)
> -CONF_arm:=--with-cpu=neon
> -endif
> -endif
>
> SOVERSION:=0
> LIB_PKG:=libmpg123-$(SOVERSION)
>
> --
> mpg123 packaging
>
> _______________________________________________
> pkg-multimedia-commits mailing list
> pkg-multimedia-commits at lists.alioth.debian.org
> http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-commits
Hello:
To make this work you could have done:
ifeq ($(ARCH),armhf)
CONF_arm:=--with-cpu=neon
CFLAGS += -mfpu=neon
endif
and moved
More information about the pkg-multimedia-maintainers
mailing list