Sun Mar 18 11:01:00 2018 UTC ()
Pull up following revision(s) (requested by nakayama in ticket #640):
	external/bsd/mdocml/include/config.h: revision 1.4
Disable wchar_t support since our C library does not treat wchar_t
as UCS-4 in the case of non-UTF-8 locales.
This feature was controlled by USE_WCHAR and disabled on NetBSD 7.


(martin)
diff -r1.3 -r1.3.4.1 src/external/bsd/mdocml/include/config.h

cvs diff -r1.3 -r1.3.4.1 src/external/bsd/mdocml/include/config.h (expand / switch to unified diff)

--- src/external/bsd/mdocml/include/config.h 2017/03/18 15:24:17 1.3
+++ src/external/bsd/mdocml/include/config.h 2018/03/18 11:01:00 1.3.4.1
@@ -31,26 +31,26 @@ @@ -31,26 +31,26 @@
31#define HAVE_REALLOCARRAY 0 31#define HAVE_REALLOCARRAY 0
32#define HAVE_REWB_BSD 1 32#define HAVE_REWB_BSD 1
33#define HAVE_REWB_SYSV 0 33#define HAVE_REWB_SYSV 0
34#define HAVE_SANDBOX_INIT 0 34#define HAVE_SANDBOX_INIT 0
35#define HAVE_STRCASESTR 1 35#define HAVE_STRCASESTR 1
36#define HAVE_STRINGLIST 0 36#define HAVE_STRINGLIST 0
37#define HAVE_STRLCAT 1 37#define HAVE_STRLCAT 1
38#define HAVE_STRLCPY 1 38#define HAVE_STRLCPY 1
39#define HAVE_STRPTIME 1 39#define HAVE_STRPTIME 1
40#define HAVE_STRSEP 1 40#define HAVE_STRSEP 1
41#define HAVE_STRTONUM 0 41#define HAVE_STRTONUM 0
42#define HAVE_SYS_ENDIAN 1 42#define HAVE_SYS_ENDIAN 1
43#define HAVE_VASPRINTF 1 43#define HAVE_VASPRINTF 1
44#define HAVE_WCHAR 1 44#define HAVE_WCHAR 0
45#define HAVE_OHASH 0 45#define HAVE_OHASH 0
46 46
47#define BINM_APROPOS "apropos" 47#define BINM_APROPOS "apropos"
48#define BINM_CATMAN "catman" 48#define BINM_CATMAN "catman"
49#define BINM_MAKEWHATIS "makewhatis" 49#define BINM_MAKEWHATIS "makewhatis"
50#define BINM_MAN "man" 50#define BINM_MAN "man"
51#define BINM_SOELIM "soelim" 51#define BINM_SOELIM "soelim"
52#define BINM_WHATIS "whatis" 52#define BINM_WHATIS "whatis"
53 53
54extern int getsubopt(char **, char * const *, char **); 54extern int getsubopt(char **, char * const *, char **);
55extern void *reallocarray(void *, size_t, size_t); 55extern void *reallocarray(void *, size_t, size_t);
56extern long long strtonum(const char *, long long, long long, const char **); 56extern long long strtonum(const char *, long long, long long, const char **);