liboil: fix arm vfp stuff
authorHenning Heinold <heinold@inf.fu-berlin.de>
Thu, 25 Sep 2008 12:08:32 +0000 (12:08 +0000)
committerHenning Heinold <heinold@inf.fu-berlin.de>
Thu, 25 Sep 2008 12:08:32 +0000 (12:08 +0000)
* the only for vfp is in liboil/arm/math_vfp.c and math_vfp_asm.S
  it is only triggered when __VFP_FP__ is defined, which I belief
  is set when gcc is called with -mfpu=vfp
* so removing the whole VFP_CLFAGS stuff from configure.ac because
  our cpu tune options does this fine for us
* bump PR

packages/liboil/liboil-0.3.15/autotools.patch
packages/liboil/liboil_0.3.15.bb

index bbd4cbb..53501e3 100644 (file)
@@ -1,8 +1,8 @@
 Index: liboil-0.3.15/configure.ac
 ===================================================================
 --- liboil-0.3.15.orig/configure.ac    2008-07-01 06:45:53.000000000 +0200
-+++ liboil-0.3.15/configure.ac 2008-09-24 20:37:24.963143501 +0200
-@@ -187,15 +187,33 @@
++++ liboil-0.3.15/configure.ac 2008-09-25 13:44:18.633758105 +0200
+@@ -187,16 +187,6 @@
      true)
  fi
  
@@ -13,34 +13,9 @@ Index: liboil-0.3.15/configure.ac
 -  #AS_COMPILER_FLAG(["-Wa,-mfloat-abi=softfp"],
 -  #  [VFP_CFLAGS="$VFP_CFLAGS -mfloat-abi=softfp"],
 -  #  true)
-+dnl macro taken from cacao
-+dnl check if softfloat should be used
-+
-+AC_DEFUN([AC_CHECK_SOFTFLOAT],[
-+AC_MSG_CHECKING(whether softfloat should be used)
-+AC_ARG_ENABLE([softfloat],
-+              [AS_HELP_STRING(--enable-softfloat,use softfloat [[default=no]])],
-+              [case "${enableval}" in
-+                  yes)
-+                      ENABLE_SOFTFLOAT=yes
-+                      ;;
-+                  *)
-+                      ENABLE_SOFTFLOAT=no
-+                      ;;
-+              esac],
-+              [ENABLE_SOFTFLOAT=no])
-+AC_MSG_RESULT(${ENABLE_SOFTFLOAT})
-+
-+if test x"${ENABLE_SOFTFLOAT}" = "xyes"; then
-+      VFP_CFLAGS="$VFP_CFLAGS -mfloat-abi=softfp"
-+else
-+      VFP_CFLAGS="$VFP_CFLAGS -mfpu=vfp"
- fi
+-fi
 -AC_SUBST(VFP_CFLAGS)
-+AC_SUBST([VFP_CFLAGS])
-+])
-+
-+AC_CHECK_SOFTFLOAT
+-
  #AS_COMPILER_FLAG(["-fasm-blocks"], HAVE_ASM_BLOCKS=yes, HAVE_ASM_BLOCKS=no)
  HAVE_ASM_BLOCKS=no
+ if test "x$HAVE_ASM_BLOCKS" = "xyes"
index 2021451..338121a 100644 (file)
@@ -1,7 +1,7 @@
 DESCRIPTION = "Liboil is a library of simple functions that are optimized for various CPUs."
 HOMEPAGE = "http://liboil.freedesktop.org/"
 LICENSE = "various"
-PR = "r1"
+PR = "r2"
 
 DEPENDS = "glib-2.0"
 
@@ -11,10 +11,6 @@ SRC_URI = "http://liboil.freedesktop.org/download/${P}.tar.gz \
 
 inherit autotools pkgconfig
 
-EXTRA_OECONF = "\
-        ${@['','--enable-softfloat'][bb.data.getVar('TARGET_FPU',d,1) == 'soft']} \
-              "
-
 do_stage() {
        autotools_stage_all
 }