mirror of
https://github.com/samba-team/samba.git
synced 2025-02-02 09:47:23 +03:00
lib/util: Use charset_compat.h if SAMBA_UTIL_CORE_ONLY
When doing a CTDB standalone build we don't want to use dynconfig, since this introduces a lot of unwanted complexity. To avoid this, either: * charset needs to be nobbled to avoid loading the case tables, since this depends on dynconfig; or * charset needs to be avoid completely, so some functions need to be replaced with their ASCII counterparts. The 2nd options seems more honest and less error-prone. Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
parent
1fd4556917
commit
c12aa0c444
9
lib/util/charset_compat.h
Normal file
9
lib/util/charset_compat.h
Normal file
@ -0,0 +1,9 @@
|
||||
#ifndef _SAMBA_CHARSET_COMPAT_H_
|
||||
#define _SAMBA_CHARSET_COMPAT_H_
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#define strchr_m(h, n) strchr(h, n)
|
||||
#define strstr_m(h, n) strstr(h, n)
|
||||
|
||||
#endif /* _SAMBA_CHARSET_COMPAT_H_ */
|
@ -21,7 +21,12 @@
|
||||
#ifndef _SAMBA_UTIL_H_
|
||||
#define _SAMBA_UTIL_H_
|
||||
|
||||
#ifndef SAMBA_UTIL_CORE_ONLY
|
||||
#include "lib/util/charset/charset.h"
|
||||
#else
|
||||
#include "charset_compat.h"
|
||||
#endif
|
||||
|
||||
#include "lib/util/attr.h"
|
||||
|
||||
/* for TALLOC_CTX */
|
||||
|
@ -23,7 +23,11 @@
|
||||
|
||||
#include "replace.h"
|
||||
#include "debug.h"
|
||||
#ifndef SAMBA_UTIL_CORE_ONLY
|
||||
#include "charset/charset.h"
|
||||
#else
|
||||
#include "charset_compat.h"
|
||||
#endif
|
||||
#include "substitute.h"
|
||||
|
||||
/**
|
||||
|
@ -41,6 +41,8 @@ bld.SAMBA_SUBSYSTEM('samba-util-core',
|
||||
|
||||
if not bld.env.SAMBA_UTIL_CORE_ONLY:
|
||||
|
||||
bld.env.public_headers_skip.append('charset_compat.h')
|
||||
|
||||
bld.SAMBA_LIBRARY('samba-util',
|
||||
source='''talloc_stack.c smb_threads.c
|
||||
rbtree.c rfc1738.c become_daemon.c system.c select.c getpass.c
|
||||
|
Loading…
x
Reference in New Issue
Block a user