Hello community,

here is the log from the commit of package hostapd for openSUSE:Factory checked 
in at 2013-10-03 15:47:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/hostapd (Old)
 and      /work/SRC/openSUSE:Factory/.hostapd.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "hostapd"

Changes:
--------
--- /work/SRC/openSUSE:Factory/hostapd/hostapd.changes  2013-04-22 
14:06:27.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.hostapd.new/hostapd.changes     2013-10-03 
15:47:53.000000000 +0200
@@ -1,0 +2,6 @@
+Wed Oct  2 15:33:43 UTC 2013 - dval...@suse.com
+
+- fix host_to_le32 undefined on BigEndian architectures
+  (hostapd-be-host_to_le.patch) 
+
+-------------------------------------------------------------------

New:
----
  hostapd-be-host_to_le.patch

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

Other differences:
------------------
++++++ hostapd.spec ++++++
--- /var/tmp/diff_new_pack.Sy2OF6/_old  2013-10-03 15:47:54.000000000 +0200
+++ /var/tmp/diff_new_pack.Sy2OF6/_new  2013-10-03 15:47:55.000000000 +0200
@@ -32,6 +32,7 @@
 Source1:        hostapd.service
 Patch0:         hostapd.diff
 Patch1:         hostapd-tmp.diff
+Patch2:         hostapd-be-host_to_le.patch
 %{?systemd_requires}
 
 %description
@@ -47,6 +48,7 @@
 %setup -q -n hostapd-%{version}
 %patch0 -p1
 %patch1 -p1
+%patch2 -p1
 
 cd hostapd
 cp defconfig .config

++++++ hostapd-be-host_to_le.patch ++++++
Index: hostapd-2.0/src/utils/common.h
===================================================================
--- hostapd-2.0.orig/src/utils/common.h
+++ hostapd-2.0/src/utils/common.h
@@ -207,6 +207,7 @@ static inline unsigned int wpa_swap_32(u
 #define le_to_host32(n) bswap_32(n)
 #define be_to_host32(n) (n)
 #define host_to_be32(n) (n)
+#define host_to_le32(n) bswap_32(n)
 #define le_to_host64(n) bswap_64(n)
 #define host_to_le64(n) bswap_64(n)
 #define be_to_host64(n) (n)
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to