diff options
-rw-r--r-- | VERSION.cmake | 2 | ||||
-rw-r--r-- | package/libzypp-bindings.changes | 6 | ||||
-rw-r--r-- | swig/zypp.i | 3 |
3 files changed, 10 insertions, 1 deletions
diff --git a/VERSION.cmake b/VERSION.cmake index 541e39f..b0f8cf7 100644 --- a/VERSION.cmake +++ b/VERSION.cmake @@ -1,4 +1,4 @@ # on maintenance branch add a 2nd level to patch (p.1, p.2, ...) SET(VERSION_MAJOR "0") SET(VERSION_MINOR "6") -SET(VERSION_PATCH "1") +SET(VERSION_PATCH "2") diff --git a/package/libzypp-bindings.changes b/package/libzypp-bindings.changes index ca760d9..7f19f52 100644 --- a/package/libzypp-bindings.changes +++ b/package/libzypp-bindings.changes @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Thu Aug 14 14:45:12 CEST 2014 - mls@suse.de + +- work around syntax errors because of __attribute__ +- 0.6.2 + +------------------------------------------------------------------- Fri Mar 14 14:39:37 CET 2014 - ma@suse.de - c++11 fixes diff --git a/swig/zypp.i b/swig/zypp.i index b1f2329..9935197 100644 --- a/swig/zypp.i +++ b/swig/zypp.i @@ -153,6 +153,9 @@ typedef std::list<std::string> StringList; %} +/* swig does not understand the __attribute__ extension */ +#define __attribute__(x) + /* prevent swig from creating a type called 'Target_Type' */ #if defined(SWIGRUBY) #define Target_Type VALUE |