Hello community,

here is the log from the commit of package libxmp for openSUSE:Factory checked 
in at 2015-01-05 04:43:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libxmp (Old)
 and      /work/SRC/openSUSE:Factory/.libxmp.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libxmp"

Changes:
--------
--- /work/SRC/openSUSE:Factory/libxmp/libxmp.changes    2014-12-16 
14:48:52.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.libxmp.new/libxmp.changes       2015-01-05 
04:43:16.000000000 +0100
@@ -1,0 +2,5 @@
+Sat Dec 27 20:59:19 UTC 2014 - [email protected]
+
+- endian.patch: properly configure byte order
+
+-------------------------------------------------------------------

New:
----
  endian.patch

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

Other differences:
------------------
++++++ libxmp.spec ++++++
--- /var/tmp/diff_new_pack.p4TJMG/_old  2015-01-05 04:43:17.000000000 +0100
+++ /var/tmp/diff_new_pack.p4TJMG/_new  2015-01-05 04:43:17.000000000 +0100
@@ -27,6 +27,7 @@
 
 #Git-Clone:    git://git.code.sf.net/p/xmp/libxmp
 Source:         http://downloads.sf.net/xmp/%name-%version.tar.gz
+Patch1:         endian.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  pkg-config
 
@@ -62,10 +63,11 @@
 
 %prep
 %setup -q
+%patch -P 1 -p1
 
 %build
 %configure
-make %{?_smp_mflags}
+make %{?_smp_mflags} V=1
 
 %install
 b="%buildroot"

++++++ endian.patch ++++++
From: Andreas Schwab <[email protected]>
Date: Sat, 27 Dec 2014 22:06:12 +0100

properly configure byte order

Index: libxmp-4.3.2/configure
===================================================================
--- libxmp-4.3.2.orig/configure
+++ libxmp-4.3.2/configure
@@ -3721,7 +3721,6 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUI
  presetting ac_cv_c_bigendian=no (or yes) will help" "$LINENO" 5 ;;
  esac
 
-0>confdefs.h
 
 
 
Index: libxmp-4.3.2/configure.ac
===================================================================
--- libxmp-4.3.2.orig/configure.ac
+++ libxmp-4.3.2/configure.ac
@@ -8,7 +8,6 @@ AC_PROG_CC
 AC_PROG_INSTALL
 AC_PROG_RANLIB
 AC_C_BIGENDIAN
-0>confdefs.h
 
 dnl XMP_TRY_COMPILE(<message>,<cache-var>,<flags>,<program>,<ifyes>,<ifno>)
 AC_DEFUN([XMP_TRY_COMPILE],[
Index: libxmp-4.3.2/test/md5.c
===================================================================
--- libxmp-4.3.2.orig/test/md5.c
+++ libxmp-4.3.2/test/md5.c
@@ -63,7 +63,7 @@ static void MD5Transform(uint32 state[4]
 {
        uint32 a, b, c, d, in[MD5_BLOCK_LENGTH / 4];
 
-#if BYTE_ORDER == LITTLE_ENDIAN
+#ifndef WORDS_BIGENDIAN
        memcpy(in, block, sizeof(in));
 #else
        for (a = 0; a < MD5_BLOCK_LENGTH / 4; a++) {
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to