Switch the iconv(3) prototype to the POSIX conformant variation
Remove const from the 2nd argument. const char ** and char ** are incompatible types and it was a cost to keep the technically incompatible form for a more purist variation. NetBSD was almost the last alive OS to still keep the const argument (known leftovers: Minix and Illumos). Keep the const form for the internal purposes inside citrus and rump. Address the build breakage fallout in the same change. There are no ABI changes. Change accepted by core@.
This commit is contained in:
parent
f033e6150f
commit
77a1ad5f00
@ -1201,7 +1201,7 @@
|
||||
/* #undef HAVE__MKGMTIME64 */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Version number of libarchive as a single integer */
|
||||
#define LIBARCHIVE_VERSION_NUMBER "3004000"
|
||||
|
9
external/bsd/nvi/dist/common/conv.c
vendored
9
external/bsd/nvi/dist/common/conv.c
vendored
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: conv.c,v 1.10 2017/11/21 02:36:45 rin Exp $ */
|
||||
/* $NetBSD: conv.c,v 1.11 2019/10/24 18:17:14 kamil Exp $ */
|
||||
/*-
|
||||
* Copyright (c) 1993, 1994
|
||||
* The Regents of the University of California. All rights reserved.
|
||||
@ -16,7 +16,7 @@
|
||||
static const char sccsid[] = "Id: conv.c,v 1.27 2001/08/18 21:41:41 skimo Exp (Berkeley) Date: 2001/08/18 21:41:41 ";
|
||||
#endif /* not lint */
|
||||
#else
|
||||
__RCSID("$NetBSD: conv.c,v 1.10 2017/11/21 02:36:45 rin Exp $");
|
||||
__RCSID("$NetBSD: conv.c,v 1.11 2019/10/24 18:17:14 kamil Exp $");
|
||||
#endif
|
||||
|
||||
#include <sys/types.h>
|
||||
@ -95,7 +95,7 @@ raw2int(SCR *sp, const char * str, ssize_t len, CONVWIN *cw, size_t *tolen,
|
||||
char *bp = buffer; \
|
||||
outleft = CONV_BUFFER_SIZE; \
|
||||
errno = 0; \
|
||||
if (iconv(id, (const char **)&str, &left, &bp, &outleft) \
|
||||
if (iconv(id, (char **)(void *)&str, &left, &bp, &outleft) \
|
||||
== (size_t)-1 && errno != E2BIG) \
|
||||
HANDLE_ICONV_ERROR(bp, str, outleft, left); \
|
||||
if ((len = CONV_BUFFER_SIZE - outleft) == 0) { \
|
||||
@ -283,7 +283,7 @@ default_int2char(SCR *sp, const CHAR_T * str, ssize_t len, CONVWIN *cw,
|
||||
BINC_GOTOC(NULL, cw->bp1, cw->blen1, nlen); \
|
||||
} \
|
||||
errno = 0; \
|
||||
ret = iconv(id, &bp, lenp, &obp, &outleft); \
|
||||
ret = iconv(id, (char **)(void *)&bp, lenp, &obp, &outleft);\
|
||||
if (ret == (size_t)-1 && errno != E2BIG) \
|
||||
HANDLE_ICONV_ERROR(obp, bp, outleft, len); \
|
||||
offset = cw->blen1 - outleft; \
|
||||
@ -463,4 +463,3 @@ err:
|
||||
#endif
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
10
external/bsd/smbfs/dist/lib/smb/nls.c
vendored
10
external/bsd/smbfs/dist/lib/smb/nls.c
vendored
@ -33,7 +33,7 @@
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__RCSID("$NetBSD: nls.c,v 1.2 2013/12/25 22:03:15 christos Exp $");
|
||||
__RCSID("$NetBSD: nls.c,v 1.3 2019/10/24 18:17:14 kamil Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/types.h>
|
||||
@ -110,7 +110,7 @@ nls_str_toloc(char *dst, const char *src)
|
||||
return strcpy(dst, src);
|
||||
inlen = outlen = strlen(src);
|
||||
iconv(nls_toloc, NULL, NULL, &p, &outlen);
|
||||
while (iconv(nls_toloc, &src, &inlen, &p, &outlen) == -1) {
|
||||
while (iconv(nls_toloc, __UNCONST(&src), &inlen, &p, &outlen) == -1) {
|
||||
*p++ = *src++;
|
||||
inlen--;
|
||||
outlen--;
|
||||
@ -129,7 +129,7 @@ nls_str_toext(char *dst, const char *src)
|
||||
return strcpy(dst, src);
|
||||
inlen = outlen = strlen(src);
|
||||
iconv(nls_toext, NULL, NULL, &p, &outlen);
|
||||
while (iconv(nls_toext, &src, &inlen, &p, &outlen) == -1) {
|
||||
while (iconv(nls_toext, __UNCONST(&src), &inlen, &p, &outlen) == -1) {
|
||||
*p++ = *src++;
|
||||
inlen--;
|
||||
outlen--;
|
||||
@ -152,7 +152,7 @@ nls_mem_toloc(void *dst, const void *src, size_t size)
|
||||
return memcpy(dst, src, size);
|
||||
inlen = outlen = size;
|
||||
iconv(nls_toloc, NULL, NULL, &p, &outlen);
|
||||
while (iconv(nls_toloc, &s, &inlen, &p, &outlen) == -1) {
|
||||
while (iconv(nls_toloc, __UNCONST(&s), &inlen, &p, &outlen) == -1) {
|
||||
*p++ = *s++;
|
||||
inlen--;
|
||||
outlen--;
|
||||
@ -175,7 +175,7 @@ nls_mem_toext(void *dst, const void *src, size_t size)
|
||||
|
||||
inlen = outlen = size;
|
||||
iconv(nls_toext, NULL, NULL, &p, &outlen);
|
||||
while (iconv(nls_toext, &s, &inlen, &p, &outlen) == -1) {
|
||||
while (iconv(nls_toext, __UNCONST(&s), &inlen, &p, &outlen) == -1) {
|
||||
*p++ = *s++;
|
||||
inlen--;
|
||||
outlen--;
|
||||
|
3
external/gpl2/gettext/include/config.h
vendored
3
external/gpl2/gettext/include/config.h
vendored
@ -617,7 +617,7 @@
|
||||
/* #undef HAVE___SECURE_GETENV */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the value of ${prefix}, as a string. */
|
||||
#define INSTALLPREFIX "/usr/local"
|
||||
@ -906,4 +906,3 @@
|
||||
#ifdef __EMX__
|
||||
# include "intl/os2compat.h"
|
||||
#endif
|
||||
|
||||
|
2
external/gpl2/grep/include/config.h
vendored
2
external/gpl2/grep/include/config.h
vendored
@ -259,7 +259,7 @@
|
||||
/* #undef HAVE___ARGZ_STRINGIFY */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Name of package */
|
||||
#define PACKAGE "grep"
|
||||
|
2
external/gpl2/texinfo/include/config.h
vendored
2
external/gpl2/texinfo/include/config.h
vendored
@ -330,7 +330,7 @@
|
||||
/* #undef HAVE___SECURE_GETENV */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define if integer division by zero raises signal SIGFPE. */
|
||||
#define INTDIV0_RAISES_SIGFPE 1
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -186,7 +186,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -190,7 +190,7 @@
|
||||
/* #undef HAVE_WINDOWS_H */
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -1354,7 +1354,7 @@ namespace std
|
||||
#define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define _GLIBCXX_ICONV_CONST const
|
||||
#define _GLIBCXX_ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -712,7 +712,7 @@
|
||||
#define HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -1354,7 +1354,7 @@ namespace std
|
||||
#define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define _GLIBCXX_ICONV_CONST const
|
||||
#define _GLIBCXX_ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -712,7 +712,7 @@
|
||||
#define HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -1354,7 +1354,7 @@ namespace std
|
||||
#define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define _GLIBCXX_ICONV_CONST const
|
||||
#define _GLIBCXX_ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -712,7 +712,7 @@
|
||||
#define HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -1354,7 +1354,7 @@ namespace std
|
||||
#define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define _GLIBCXX_ICONV_CONST const
|
||||
#define _GLIBCXX_ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -712,7 +712,7 @@
|
||||
#define HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -1206,7 +1206,7 @@ namespace std
|
||||
#define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define _GLIBCXX_ICONV_CONST const
|
||||
#define _GLIBCXX_ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -1354,7 +1354,7 @@ namespace std
|
||||
#define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define _GLIBCXX_ICONV_CONST const
|
||||
#define _GLIBCXX_ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -712,7 +712,7 @@
|
||||
#define HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -1354,7 +1354,7 @@ namespace std
|
||||
#define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define _GLIBCXX_ICONV_CONST const
|
||||
#define _GLIBCXX_ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -712,7 +712,7 @@
|
||||
#define HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -1354,7 +1354,7 @@ namespace std
|
||||
#define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define _GLIBCXX_ICONV_CONST const
|
||||
#define _GLIBCXX_ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -712,7 +712,7 @@
|
||||
#define HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -1354,7 +1354,7 @@ namespace std
|
||||
#define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define _GLIBCXX_ICONV_CONST const
|
||||
#define _GLIBCXX_ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -712,7 +712,7 @@
|
||||
#define HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -1354,7 +1354,7 @@ namespace std
|
||||
#define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define _GLIBCXX_ICONV_CONST const
|
||||
#define _GLIBCXX_ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -712,7 +712,7 @@
|
||||
#define HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -1354,7 +1354,7 @@ namespace std
|
||||
#define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define _GLIBCXX_ICONV_CONST const
|
||||
#define _GLIBCXX_ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -712,7 +712,7 @@
|
||||
#define HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -1354,7 +1354,7 @@ namespace std
|
||||
#define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define _GLIBCXX_ICONV_CONST const
|
||||
#define _GLIBCXX_ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -712,7 +712,7 @@
|
||||
#define HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -1354,7 +1354,7 @@ namespace std
|
||||
#define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define _GLIBCXX_ICONV_CONST const
|
||||
#define _GLIBCXX_ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -712,7 +712,7 @@
|
||||
#define HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -1354,7 +1354,7 @@ namespace std
|
||||
#define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define _GLIBCXX_ICONV_CONST const
|
||||
#define _GLIBCXX_ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -712,7 +712,7 @@
|
||||
#define HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -1354,7 +1354,7 @@ namespace std
|
||||
#define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define _GLIBCXX_ICONV_CONST const
|
||||
#define _GLIBCXX_ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -712,7 +712,7 @@
|
||||
#define HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -1354,7 +1354,7 @@ namespace std
|
||||
#define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define _GLIBCXX_ICONV_CONST const
|
||||
#define _GLIBCXX_ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -712,7 +712,7 @@
|
||||
#define HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -1354,7 +1354,7 @@ namespace std
|
||||
#define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define _GLIBCXX_ICONV_CONST const
|
||||
#define _GLIBCXX_ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -712,7 +712,7 @@
|
||||
#define HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define ICONV_CONST const
|
||||
#define ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
@ -1354,7 +1354,7 @@ namespace std
|
||||
#define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL 1
|
||||
|
||||
/* Define as const if the declaration of iconv() needs const. */
|
||||
#define _GLIBCXX_ICONV_CONST const
|
||||
#define _GLIBCXX_ICONV_CONST
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user