summaryrefslogtreecommitdiff
path: root/nsswitch/libwbclient
diff options
context:
space:
mode:
Diffstat (limited to 'nsswitch/libwbclient')
-rw-r--r--nsswitch/libwbclient/wbclient.h3
-rw-r--r--nsswitch/libwbclient/wscript7
2 files changed, 7 insertions, 3 deletions
diff --git a/nsswitch/libwbclient/wbclient.h b/nsswitch/libwbclient/wbclient.h
index 809e00a007..1dd387aef4 100644
--- a/nsswitch/libwbclient/wbclient.h
+++ b/nsswitch/libwbclient/wbclient.h
@@ -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;
diff --git a/nsswitch/libwbclient/wscript b/nsswitch/libwbclient/wscript
index 8390af19e5..f51c3d001f 100644
--- a/nsswitch/libwbclient/wscript
+++ b/nsswitch/libwbclient/wscript
@@ -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)