Hello community,

here is the log from the commit of package openmcu for openSUSE:Factory checked 
in at 2015-10-19 22:52:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/openmcu (Old)
 and      /work/SRC/openSUSE:Factory/.openmcu.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "openmcu"

Changes:
--------
--- /work/SRC/openSUSE:Factory/openmcu/openmcu.changes  2015-10-03 
20:30:17.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.openmcu.new/openmcu.changes     2015-10-20 
00:06:17.000000000 +0200
@@ -1,0 +2,6 @@
+Thu Oct 15 15:59:04 UTC 2015 - sch...@suse.de
+
+- aarch64-support.patch: Add support for aarch64
+- undefined-operation.patch: Remove undefined operation
+
+-------------------------------------------------------------------

New:
----
  aarch64-support.patch
  undefined-operation.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ openmcu.spec ++++++
--- /var/tmp/diff_new_pack.FdWx6n/_old  2015-10-20 00:06:18.000000000 +0200
+++ /var/tmp/diff_new_pack.FdWx6n/_new  2015-10-20 00:06:18.000000000 +0200
@@ -25,6 +25,8 @@
 Url:            http://openmcu.ru/eng.htm
 
 Source0:        https://github.com/muggot/openmcu/archive/v%{version}.tar.gz
+Patch0:         aarch64-support.patch
+Patch1:         undefined-operation.patch
 BuildRequires:  SDL-devel
 BuildRequires:  autoconf
 BuildRequires:  automake
@@ -70,6 +72,8 @@
 
 %prep
 %setup -q
+%patch0 -p1
+%patch1 -p1
 
 %build
 NOCONFIGURE=1 ./autogen.sh

++++++ aarch64-support.patch ++++++
Index: openmcu-3.48.0/configure.ac
===================================================================
--- openmcu-3.48.0.orig/configure.ac
+++ openmcu-3.48.0/configure.ac
@@ -158,6 +158,11 @@ case "$target_cpu" in
    s390)           MACHTYPE=s390 ;
                    ;;
 
+   aarch64)        MACHTYPE=aarch64
+                   P_64BIT=1
+                   LIB64=1
+                   ;;
+
    *)              MACHTYPE=$target_cpu ;
                    AC_MSG_WARN("CPU $target_cpu not recognized - proceed with 
caution!") ;
                    ;;
Index: openmcu-3.48.0/ptlib/configure
===================================================================
--- openmcu-3.48.0.orig/ptlib/configure
+++ openmcu-3.48.0/ptlib/configure
@@ -2938,6 +2938,11 @@ case "$target_cpu" in
    s390)          MACHTYPE=s390 ;
                   ;;
 
+   aarch64)        MACHTYPE=aarch64
+                   P_64BIT=1
+                   LIB64=1
+                   ;;
+
    * )            MACHTYPE=$target_cpu ;
                   { $as_echo "$as_me:$LINENO: WARNING: \"CPU $target_cpu not 
recognized - proceed with caution!\"" >&5
 $as_echo "$as_me: WARNING: \"CPU $target_cpu not recognized - proceed with 
caution!\"" >&2;} ;;
Index: openmcu-3.48.0/ptlib/configure.ac
===================================================================
--- openmcu-3.48.0.orig/ptlib/configure.ac
+++ openmcu-3.48.0/ptlib/configure.ac
@@ -201,6 +201,11 @@ case "$target_cpu" in
    s390)          MACHTYPE=s390 ;
                   ;;
 
+   aarch64)        MACHTYPE=aarch64
+                   P_64BIT=1
+                   LIB64=1
+                   ;;
+
    * )            MACHTYPE=$target_cpu ;
                   AC_MSG_WARN("CPU $target_cpu not recognized - proceed with 
caution!") ;;
 esac
++++++ undefined-operation.patch ++++++
Index: openmcu-3.48.0/plugins/iLBC/iLBC/iCBSearch.c
===================================================================
--- openmcu-3.48.0.orig/plugins/iLBC/iLBC/iCBSearch.c
+++ openmcu-3.48.0/plugins/iLBC/iLBC/iCBSearch.c
@@ -121,7 +121,7 @@
                *ppe=0.0;
                pp=buf+LPC_FILTERORDER+lMem-lTarget;
                for (j=0; j<lTarget; j++) {
-                   *ppe+=(*pp)*(*pp++);
+                   *ppe+=(*pp)*(*pp); pp++;
                }
                
                if (*ppe>0.0) {

Reply via email to