mirror of
https://github.com/samba-team/samba.git
synced 2025-03-27 22:50:26 +03:00
libwbclient: bump version to 0.9, and add this version to .pc file
This commit is contained in:
parent
4b29cf5f66
commit
18e8d49d7e
@ -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;
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user