Hello community,

here is the log from the commit of package crda for openSUSE:Factory checked in 
at 2012-09-13 00:01:34
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/crda (Old)
 and      /work/SRC/openSUSE:Factory/.crda.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "crda", Maintainer is "mac...@suse.com"

Changes:
--------
--- /work/SRC/openSUSE:Factory/crda/crda.changes        2012-02-29 
14:06:03.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.crda.new/crda.changes   2012-09-13 
00:01:35.000000000 +0200
@@ -1,0 +2,5 @@
+Sun Sep  9 18:28:40 UTC 2012 - p.drou...@gmail.com
+
+- update to 1.1.2 release
+
+-------------------------------------------------------------------

Old:
----
  crda-1.1.1.tar.bz2

New:
----
  crda-1.1.2.tar.bz2

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

Other differences:
------------------
++++++ crda.spec ++++++
--- /var/tmp/diff_new_pack.fV3EDm/_old  2012-09-13 00:01:41.000000000 +0200
+++ /var/tmp/diff_new_pack.fV3EDm/_new  2012-09-13 00:01:41.000000000 +0200
@@ -22,7 +22,7 @@
 Summary:        802.11 central regulatory domain agent
 License:        BSD-3-Clause
 Group:          Hardware/Wifi
-Version:        1.1.1
+Version:        1.1.2
 Release:        0
 Source:         %{name}-%{version}.tar.bz2
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
@@ -62,7 +62,7 @@
 /sbin/regdbdump
 #EndUserMerge
 /lib/udev/rules.d/85-regulatory.rules
-/usr/share/man/man8/crda.8.gz
-/usr/share/man/man8/regdbdump.8.gz
+%{_mandir}/man8/crda.8.gz
+%{_mandir}/man8/regdbdump.8.gz
 
 %changelog

++++++ crda-1.1.1.tar.bz2 -> crda-1.1.2.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/crda-1.1.1/Makefile new/crda-1.1.2/Makefile
--- old/crda-1.1.1/Makefile     2010-01-25 18:43:20.000000000 +0100
+++ new/crda-1.1.2/Makefile     2011-08-10 01:36:19.000000000 +0200
@@ -47,15 +47,22 @@
 
 NL1FOUND := $(shell pkg-config --atleast-version=1 libnl-1 && echo Y)
 NL2FOUND := $(shell pkg-config --atleast-version=2 libnl-2.0 && echo Y)
+NL3FOUND := $(shell pkg-config --atleast-version=3 libnl-3.0 && echo Y)
 
-ifeq ($(NL1FOUND),Y)
-NLLIBNAME = libnl-1
-endif
-
-ifeq ($(NL2FOUND),Y)
-CFLAGS += -DCONFIG_LIBNL20
+ifeq ($(NL3FOUND),Y)
+CFLAGS += -DCONFIG_LIBNL30
 NLLIBS += -lnl-genl
-NLLIBNAME = libnl-2.0
+NLLIBNAME = libnl-3.0
+else
+       ifeq ($(NL2FOUND),Y)
+       CFLAGS += -DCONFIG_LIBNL20
+       NLLIBS += -lnl-genl
+       NLLIBNAME = libnl-2.0
+       else
+               ifeq ($(NL1FOUND),Y)
+               NLLIBNAME = libnl-1
+               endif
+       endif
 endif
 
 ifeq ($(NLLIBNAME),)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/crda-1.1.1/crda.c new/crda-1.1.2/crda.c
--- old/crda-1.1.1/crda.c       2010-01-25 18:43:20.000000000 +0100
+++ new/crda-1.1.2/crda.c       2011-08-10 01:36:19.000000000 +0200
@@ -21,7 +21,7 @@
 #include "regdb.h"
 #include "reglib.h"
 
-#ifndef CONFIG_LIBNL20
+#if !defined(CONFIG_LIBNL20) && !defined(CONFIG_LIBNL30)
 /* libnl 2.0 compatibility code */
 static inline struct nl_handle *nl_socket_alloc(void)
 {
@@ -44,7 +44,7 @@
 
 #define genl_ctrl_alloc_cache __genl_ctrl_alloc_cache
 #define nl_sock nl_handle
-#endif /* CONFIG_LIBNL20 */
+#endif /* CONFIG_LIBNL20 && CONFIG_LIBNL30 */
 
 struct nl80211_state {
        struct nl_sock *nl_sock;

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to