libwbclient: bump version to 0.9, and add this version to .pc file
authorAndrew Bartlett <abartlet@samba.org>
Thu, 19 Apr 2012 04:59:43 +0000 (14:59 +1000)
committerAndrew Bartlett <abartlet@samba.org>
Thu, 19 Apr 2012 23:54:33 +0000 (01:54 +0200)
nsswitch/libwbclient/wbclient.h
nsswitch/libwbclient/wscript

index 809e00a0076cdbe0e38248721d2854d53143aaa1..1dd387aef437936762afdbef32e78d1410c66fdc 100644 (file)
@@ -68,9 +68,10 @@ const char *wbcErrorString(wbcErr error);
  *  0.6: Made struct wbcInterfaceDetails char* members non-const
  *  0.7: Added wbcSidToStringBuf()
  *  0.8: Added wbcSidsToUnixIds() and wbcLookupSids()
+ *  0.9: Added support for WBC_ID_TYPE_BOTH
  **/
 #define WBCLIENT_MAJOR_VERSION 0
-#define WBCLIENT_MINOR_VERSION 8
+#define WBCLIENT_MINOR_VERSION 9
 #define WBCLIENT_VENDOR_VERSION "Samba libwbclient"
 struct wbcLibraryDetails {
        uint16_t major_version;
index 8390af19e5a09b1e93b23ebade1257ac72958005..f51c3d001f6c67d061f12c0ab2925720d7619ac1 100644 (file)
@@ -2,8 +2,11 @@
 
 import Options, Logs
 
+# Remember to also update wbclient.h
+VERSION="0.9"
+
 def configure(conf):
-    if conf.CHECK_BUNDLED_SYSTEM_PKG('wbclient', minversion='0'):
+    if conf.CHECK_BUNDLED_SYSTEM_PKG('wbclient', minversion=VERSION):
         conf.define('USING_SYSTEM_LIBWBCLIENT', 1)
 
 def build(bld):
@@ -25,4 +28,4 @@ def build(bld):
                       deps='winbind-client',
                       pc_files='wbclient.pc',
                       public_headers='wbclient.h',
-                      vnum='0')
+                      vnum=VERSION)