diff --git a/external/bsd/libarchive/include/config_netbsd.h b/external/bsd/libarchive/include/config_netbsd.h index bf8708df8dff..b9b46753a13b 100644 --- a/external/bsd/libarchive/include/config_netbsd.h +++ b/external/bsd/libarchive/include/config_netbsd.h @@ -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" diff --git a/external/bsd/nvi/dist/common/conv.c b/external/bsd/nvi/dist/common/conv.c index bb9c0de36fc9..29cc94cf2fd3 100644 --- a/external/bsd/nvi/dist/common/conv.c +++ b/external/bsd/nvi/dist/common/conv.c @@ -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 @@ -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; } - diff --git a/external/bsd/smbfs/dist/lib/smb/nls.c b/external/bsd/smbfs/dist/lib/smb/nls.c index 966452a7f060..dff1503afb75 100644 --- a/external/bsd/smbfs/dist/lib/smb/nls.c +++ b/external/bsd/smbfs/dist/lib/smb/nls.c @@ -33,7 +33,7 @@ */ #include -__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 #include @@ -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--; diff --git a/external/gpl2/gettext/include/config.h b/external/gpl2/gettext/include/config.h index ff64e7191176..51e89e969fb4 100644 --- a/external/gpl2/gettext/include/config.h +++ b/external/gpl2/gettext/include/config.h @@ -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 - diff --git a/external/gpl2/grep/include/config.h b/external/gpl2/grep/include/config.h index 15b0d0903075..6423f68c078a 100644 --- a/external/gpl2/grep/include/config.h +++ b/external/gpl2/grep/include/config.h @@ -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" diff --git a/external/gpl2/texinfo/include/config.h b/external/gpl2/texinfo/include/config.h index 50fe5d912beb..d23b69c8da8a 100644 --- a/external/gpl2/texinfo/include/config.h +++ b/external/gpl2/texinfo/include/config.h @@ -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 diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/aarch64/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/aarch64/config.h index caee9505d32a..2bc319fd9391 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/aarch64/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/aarch64/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/aarch64eb/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/aarch64eb/config.h index 95a62ca1ac1a..4e64ba343cbf 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/aarch64eb/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/aarch64eb/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/alpha/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/alpha/config.h index dc2eae57ac14..4706794de4b4 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/alpha/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/alpha/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/arm/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/arm/config.h index e85f143aa3e7..6958b4d484a0 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/arm/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/arm/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/armeb/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/armeb/config.h index 2235a8b50399..88c79aed5c23 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/armeb/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/armeb/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/coldfire/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/coldfire/config.h index 72e3543fad00..f6f9b2776821 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/coldfire/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/coldfire/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/earm/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/earm/config.h index 0b1c915bdc30..a922cc5447f1 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/earm/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/earm/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/earmeb/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/earmeb/config.h index 38d28da676ff..2296266acac5 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/earmeb/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/earmeb/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/earmhf/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/earmhf/config.h index 0a13131b4f99..892457d395f7 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/earmhf/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/earmhf/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/earmhfeb/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/earmhfeb/config.h index bda7ede88bd3..15761b4e8016 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/earmhfeb/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/earmhfeb/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/hppa/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/hppa/config.h index e2262d128154..02047c49e7dc 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/hppa/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/hppa/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/i386/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/i386/config.h index ab78397369ad..9d8f9e50c7a6 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/i386/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/i386/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/ia64/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/ia64/config.h index 7c832f460a1f..c909891e808b 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/ia64/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/ia64/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/m68000/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/m68000/config.h index 874e2337088e..e4c710e68e55 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/m68000/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/m68000/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/m68k/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/m68k/config.h index 8f622199f9f4..cfc8f321611e 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/m68k/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/m68k/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/mips64eb/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/mips64eb/config.h index 43118c4c7b84..adbb0f11eb5b 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/mips64eb/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/mips64eb/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/mips64el/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/mips64el/config.h index c4920eafb411..bbd66670b5bc 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/mips64el/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/mips64el/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/mipseb/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/mipseb/config.h index b0a125ebc86f..62f65f7b35ea 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/mipseb/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/mipseb/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/mipsel/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/mipsel/config.h index 19b37115d492..e3cefc658beb 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/mipsel/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/mipsel/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/or1k/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/or1k/config.h index c4df8e485de1..3c55b0264226 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/or1k/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/or1k/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/powerpc/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/powerpc/config.h index 3943683f2d91..37e79a69437e 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/powerpc/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/powerpc/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/powerpc64/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/powerpc64/config.h index f3fc824e0264..d6552344ac76 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/powerpc64/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/powerpc64/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/riscv32/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/riscv32/config.h index 1fcbea7dc600..d49291389829 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/riscv32/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/riscv32/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/riscv64/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/riscv64/config.h index 346c8c715b7f..05154b406e1c 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/riscv64/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/riscv64/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/sh3eb/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/sh3eb/config.h index 9a7db2f8f445..4e485b30a480 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/sh3eb/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/sh3eb/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/sh3el/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/sh3el/config.h index 3ccdb1ce6f90..ede327704e46 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/sh3el/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/sh3el/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/sparc/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/sparc/config.h index 00c96724bf8b..6616df9ecec9 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/sparc/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/sparc/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/sparc64/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/sparc64/config.h index 16c9b3a910fe..9a002f56db15 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/sparc64/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/sparc64/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/vax/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/vax/config.h index 63eef1648eb0..58d76d31f42a 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/vax/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/vax/config.h @@ -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. */ diff --git a/external/gpl3/binutils.old/usr.bin/common/arch/x86_64/config.h b/external/gpl3/binutils.old/usr.bin/common/arch/x86_64/config.h index 7abaa59e7869..70a505be2589 100644 --- a/external/gpl3/binutils.old/usr.bin/common/arch/x86_64/config.h +++ b/external/gpl3/binutils.old/usr.bin/common/arch/x86_64/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/aarch64/config.h b/external/gpl3/binutils/usr.bin/common/arch/aarch64/config.h index a28281d18058..2880432d3704 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/aarch64/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/aarch64/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/aarch64eb/config.h b/external/gpl3/binutils/usr.bin/common/arch/aarch64eb/config.h index 95a62ca1ac1a..4e64ba343cbf 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/aarch64eb/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/aarch64eb/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/alpha/config.h b/external/gpl3/binutils/usr.bin/common/arch/alpha/config.h index 65a1e1008c43..07238736878c 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/alpha/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/alpha/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/arm/config.h b/external/gpl3/binutils/usr.bin/common/arch/arm/config.h index ebceb2cf3a88..7839fa4cac5d 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/arm/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/arm/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/armeb/config.h b/external/gpl3/binutils/usr.bin/common/arch/armeb/config.h index 55d0365f1d2d..c90177ffe4a6 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/armeb/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/armeb/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/coldfire/config.h b/external/gpl3/binutils/usr.bin/common/arch/coldfire/config.h index 72e3543fad00..f6f9b2776821 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/coldfire/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/coldfire/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/earm/config.h b/external/gpl3/binutils/usr.bin/common/arch/earm/config.h index 4870f20af8c7..a6918a2dcd7e 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/earm/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/earm/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/earmeb/config.h b/external/gpl3/binutils/usr.bin/common/arch/earmeb/config.h index 7650c7af47ae..9c778358b877 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/earmeb/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/earmeb/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/earmhf/config.h b/external/gpl3/binutils/usr.bin/common/arch/earmhf/config.h index ad75ef87f3a2..4ca0fd376b3e 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/earmhf/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/earmhf/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/earmhfeb/config.h b/external/gpl3/binutils/usr.bin/common/arch/earmhfeb/config.h index 2c1aae4708ca..47ad211c74ed 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/earmhfeb/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/earmhfeb/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/hppa/config.h b/external/gpl3/binutils/usr.bin/common/arch/hppa/config.h index 45ea39e05d4f..f35ae04cb092 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/hppa/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/hppa/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/i386/config.h b/external/gpl3/binutils/usr.bin/common/arch/i386/config.h index c6444afe96e8..629a5faa63e5 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/i386/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/i386/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/ia64/config.h b/external/gpl3/binutils/usr.bin/common/arch/ia64/config.h index 217d9af1c180..710e8d68080c 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/ia64/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/ia64/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/m68000/config.h b/external/gpl3/binutils/usr.bin/common/arch/m68000/config.h index a8645cdc0f6f..afca85c5cad1 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/m68000/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/m68000/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/m68k/config.h b/external/gpl3/binutils/usr.bin/common/arch/m68k/config.h index 808b32cc36e1..6103a4384b52 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/m68k/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/m68k/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/mips64eb/config.h b/external/gpl3/binutils/usr.bin/common/arch/mips64eb/config.h index 6c452bac8773..80f51c42ab6b 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/mips64eb/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/mips64eb/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/mips64el/config.h b/external/gpl3/binutils/usr.bin/common/arch/mips64el/config.h index 86e048cc3a57..77aa767fdd6d 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/mips64el/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/mips64el/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/mipseb/config.h b/external/gpl3/binutils/usr.bin/common/arch/mipseb/config.h index 44581c199e36..e4e098cf2e5e 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/mipseb/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/mipseb/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/mipsel/config.h b/external/gpl3/binutils/usr.bin/common/arch/mipsel/config.h index 1df8ccda9dab..aecfd7a40978 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/mipsel/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/mipsel/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/or1k/config.h b/external/gpl3/binutils/usr.bin/common/arch/or1k/config.h index c4df8e485de1..3c55b0264226 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/or1k/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/or1k/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/powerpc/config.h b/external/gpl3/binutils/usr.bin/common/arch/powerpc/config.h index 1133f8ec1ab7..3b495dbbdc70 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/powerpc/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/powerpc/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/powerpc64/config.h b/external/gpl3/binutils/usr.bin/common/arch/powerpc64/config.h index d7bf9974b9fe..cc49f6b064bd 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/powerpc64/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/powerpc64/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/riscv32/config.h b/external/gpl3/binutils/usr.bin/common/arch/riscv32/config.h index a04e6c81dd6f..be9f1f283ae9 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/riscv32/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/riscv32/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/riscv64/config.h b/external/gpl3/binutils/usr.bin/common/arch/riscv64/config.h index 17b7067fd4bc..720ab63032e0 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/riscv64/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/riscv64/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/sh3eb/config.h b/external/gpl3/binutils/usr.bin/common/arch/sh3eb/config.h index 4a4fa6fb6e84..940f34cdcc83 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/sh3eb/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/sh3eb/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/sh3el/config.h b/external/gpl3/binutils/usr.bin/common/arch/sh3el/config.h index 0331c2fa1f03..6260ffc22586 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/sh3el/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/sh3el/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/sparc/config.h b/external/gpl3/binutils/usr.bin/common/arch/sparc/config.h index 36418960b25a..9989d2d172ab 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/sparc/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/sparc/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/sparc64/config.h b/external/gpl3/binutils/usr.bin/common/arch/sparc64/config.h index e8caae244f96..74ba9f820dd4 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/sparc64/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/sparc64/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/vax/config.h b/external/gpl3/binutils/usr.bin/common/arch/vax/config.h index 830e9a95a87e..9b5857027213 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/vax/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/vax/config.h @@ -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. */ diff --git a/external/gpl3/binutils/usr.bin/common/arch/x86_64/config.h b/external/gpl3/binutils/usr.bin/common/arch/x86_64/config.h index 8f3a769fe6f7..6f280f697f45 100644 --- a/external/gpl3/binutils/usr.bin/common/arch/x86_64/config.h +++ b/external/gpl3/binutils/usr.bin/common/arch/x86_64/config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/aarch64/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/aarch64/c++config.h index ceae3cc80f13..7cbddb62ecbf 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/aarch64/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/aarch64/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/aarch64/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/aarch64/symver-config.h index e82621ed2762..a3ee4df56c5c 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/aarch64/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/aarch64/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/alpha/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/alpha/c++config.h index 1b16171c67a7..9009557851f3 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/alpha/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/alpha/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/alpha/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/alpha/symver-config.h index c9bfef96b757..b3c7be626172 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/alpha/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/alpha/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/arm/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/arm/c++config.h index 0b0faaa532f7..9154dc16224d 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/arm/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/arm/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/arm/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/arm/symver-config.h index 93ac7e622669..89cdef989b6d 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/arm/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/arm/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/armeb/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/armeb/c++config.h index 0b0faaa532f7..9154dc16224d 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/armeb/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/armeb/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/armeb/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/armeb/symver-config.h index 93ac7e622669..89cdef989b6d 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/armeb/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/armeb/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/coldfire/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/coldfire/c++config.h index 1d9c01e27d54..0f60f24279e6 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/coldfire/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/coldfire/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earm/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earm/c++config.h index 4ecd8090a321..8bba4044a59a 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earm/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earm/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earm/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earm/symver-config.h index e7db5e87d31a..1c3f403b5ba1 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earm/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earm/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmeb/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmeb/c++config.h index 4ecd8090a321..8bba4044a59a 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmeb/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmeb/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmeb/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmeb/symver-config.h index e7db5e87d31a..1c3f403b5ba1 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmeb/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmeb/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmhf/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmhf/c++config.h index 4ecd8090a321..8bba4044a59a 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmhf/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmhf/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmhf/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmhf/symver-config.h index e7db5e87d31a..1c3f403b5ba1 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmhf/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmhf/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmhfeb/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmhfeb/c++config.h index 4ecd8090a321..8bba4044a59a 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmhfeb/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmhfeb/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmhfeb/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmhfeb/symver-config.h index e7db5e87d31a..1c3f403b5ba1 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmhfeb/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmhfeb/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv4/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv4/c++config.h index 4ecd8090a321..8bba4044a59a 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv4/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv4/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv4/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv4/symver-config.h index e7db5e87d31a..1c3f403b5ba1 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv4/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv4/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv4eb/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv4eb/c++config.h index 4ecd8090a321..8bba4044a59a 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv4eb/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv4eb/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv4eb/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv4eb/symver-config.h index e7db5e87d31a..1c3f403b5ba1 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv4eb/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv4eb/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6/c++config.h index ef8b4434da42..ea800d7932b7 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6/symver-config.h index 941c41e5b954..a0c79a5d5de5 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6eb/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6eb/c++config.h index ef8b4434da42..ea800d7932b7 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6eb/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6eb/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6eb/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6eb/symver-config.h index 941c41e5b954..a0c79a5d5de5 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6eb/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6eb/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6hf/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6hf/c++config.h index ef8b4434da42..ea800d7932b7 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6hf/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6hf/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6hf/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6hf/symver-config.h index 941c41e5b954..a0c79a5d5de5 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6hf/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6hf/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6hfeb/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6hfeb/c++config.h index ef8b4434da42..ea800d7932b7 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6hfeb/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6hfeb/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6hfeb/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6hfeb/symver-config.h index 941c41e5b954..a0c79a5d5de5 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6hfeb/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv6hfeb/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7/c++config.h index ef8b4434da42..ea800d7932b7 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7/symver-config.h index 941c41e5b954..a0c79a5d5de5 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7eb/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7eb/c++config.h index ef8b4434da42..ea800d7932b7 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7eb/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7eb/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7eb/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7eb/symver-config.h index 941c41e5b954..a0c79a5d5de5 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7eb/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7eb/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7hf/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7hf/c++config.h index ef8b4434da42..ea800d7932b7 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7hf/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7hf/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7hf/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7hf/symver-config.h index 941c41e5b954..a0c79a5d5de5 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7hf/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7hf/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7hfeb/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7hfeb/c++config.h index ef8b4434da42..ea800d7932b7 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7hfeb/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7hfeb/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7hfeb/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7hfeb/symver-config.h index 941c41e5b954..a0c79a5d5de5 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7hfeb/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/earmv7hfeb/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/hppa/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/hppa/c++config.h index fcdcc45db509..fdc77e3d9eb8 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/hppa/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/hppa/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/hppa/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/hppa/symver-config.h index cc9db95b1d5c..ccfa99a16db2 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/hppa/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/hppa/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/i386/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/i386/c++config.h index 16f791d939f1..4ba82c1507df 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/i386/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/i386/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/i386/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/i386/symver-config.h index 99deb6f8163b..954f459eb40b 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/i386/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/i386/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/ia64/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/ia64/c++config.h index 486bf11453e4..ccd78d605693 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/ia64/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/ia64/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/ia64/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/ia64/symver-config.h index f743463756af..62c4d809c0fc 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/ia64/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/ia64/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/m68000/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/m68000/c++config.h index be4eee9fb4c2..56b35dd0eb09 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/m68000/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/m68000/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/m68000/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/m68000/symver-config.h index 42e7e9ea890f..8ed44d1c70b8 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/m68000/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/m68000/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/m68k/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/m68k/c++config.h index 1dfa17794c4b..7841bd8aa381 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/m68k/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/m68k/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/m68k/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/m68k/symver-config.h index 225720a58849..bff1bd5c4ed7 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/m68k/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/m68k/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mips64eb/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mips64eb/c++config.h index 189864fd75c9..458986239867 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mips64eb/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mips64eb/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mips64eb/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mips64eb/symver-config.h index b72dbcf3718b..835a2529c1ab 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mips64eb/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mips64eb/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mips64el/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mips64el/c++config.h index 189864fd75c9..458986239867 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mips64el/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mips64el/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mips64el/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mips64el/symver-config.h index b72dbcf3718b..835a2529c1ab 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mips64el/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mips64el/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mipseb/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mipseb/c++config.h index e1a33d8a3f9f..c5758c9310ff 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mipseb/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mipseb/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mipseb/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mipseb/symver-config.h index 914e7cf0e832..843b3c4cf867 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mipseb/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mipseb/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mipsel/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mipsel/c++config.h index e1a33d8a3f9f..c5758c9310ff 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mipsel/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mipsel/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mipsel/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mipsel/symver-config.h index 914e7cf0e832..843b3c4cf867 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mipsel/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/mipsel/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/or1k/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/or1k/c++config.h index 7d7b5b7589d5..02a96168d410 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/or1k/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/or1k/c++config.h @@ -1135,7 +1135,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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/powerpc/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/powerpc/c++config.h index 9002dbf36843..f407580f68da 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/powerpc/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/powerpc/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/powerpc/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/powerpc/symver-config.h index 181b134af439..979f33e611b3 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/powerpc/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/powerpc/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/powerpc64/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/powerpc64/c++config.h index 1b16171c67a7..9009557851f3 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/powerpc64/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/powerpc64/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/powerpc64/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/powerpc64/symver-config.h index c9bfef96b757..b3c7be626172 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/powerpc64/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/powerpc64/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/riscv32/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/riscv32/c++config.h index bc4dcb20b692..17fd9c71f5fa 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/riscv32/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/riscv32/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/riscv32/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/riscv32/symver-config.h index b603c9b66e32..cd18af53e3e6 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/riscv32/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/riscv32/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/riscv64/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/riscv64/c++config.h index 6e768b84745c..9e875b91e7e3 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/riscv64/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/riscv64/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/riscv64/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/riscv64/symver-config.h index e5fc3c9bd2c1..2ce6812b73c7 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/riscv64/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/riscv64/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sh3eb/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sh3eb/c++config.h index e1a33d8a3f9f..c5758c9310ff 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sh3eb/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sh3eb/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sh3eb/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sh3eb/symver-config.h index 914e7cf0e832..843b3c4cf867 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sh3eb/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sh3eb/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sh3el/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sh3el/c++config.h index e1a33d8a3f9f..c5758c9310ff 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sh3el/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sh3el/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sh3el/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sh3el/symver-config.h index 914e7cf0e832..843b3c4cf867 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sh3el/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sh3el/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sparc/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sparc/c++config.h index 0b0faaa532f7..9154dc16224d 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sparc/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sparc/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sparc/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sparc/symver-config.h index 93ac7e622669..89cdef989b6d 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sparc/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sparc/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sparc64/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sparc64/c++config.h index ceae3cc80f13..7cbddb62ecbf 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sparc64/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sparc64/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sparc64/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sparc64/symver-config.h index e82621ed2762..a3ee4df56c5c 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sparc64/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/sparc64/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/vax/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/vax/c++config.h index a5b0c7773d36..0cc7af3efabb 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/vax/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/vax/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/vax/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/vax/symver-config.h index 9b8c832b510d..06e0b25cde94 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/vax/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/vax/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/x86_64/c++config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/x86_64/c++config.h index 90cd2329c50c..b66c21b84eb5 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/x86_64/c++config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/x86_64/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/x86_64/symver-config.h b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/x86_64/symver-config.h index d9caa1470421..4029bed37710 100644 --- a/external/gpl3/gcc.old/lib/libstdc++-v3/arch/x86_64/symver-config.h +++ b/external/gpl3/gcc.old/lib/libstdc++-v3/arch/x86_64/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/aarch64/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/aarch64/auto-host.h index df3eb8e14009..67823f26329d 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/aarch64/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/aarch64/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/alpha/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/alpha/auto-host.h index c62af344ef9f..0917c861f2f5 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/alpha/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/alpha/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/arm/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/arm/auto-host.h index 4079e06dcc97..67f1666e7a18 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/arm/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/arm/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/armeb/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/armeb/auto-host.h index 7010a28effa6..611a4cac51cf 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/armeb/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/armeb/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/coldfire/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/coldfire/auto-host.h index d80b7a4a25a7..674b5062cdf5 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/coldfire/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/coldfire/auto-host.h @@ -1819,7 +1819,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/earm/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/earm/auto-host.h index a3c0cdcedc7b..f4d77526a5db 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/earm/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/earm/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/earmeb/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/earmeb/auto-host.h index 7a0f1b0a52f7..f657dd9e0e0d 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/earmeb/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/earmeb/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/earmhf/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/earmhf/auto-host.h index a3c0cdcedc7b..f4d77526a5db 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/earmhf/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/earmhf/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/earmhfeb/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/earmhfeb/auto-host.h index 7a0f1b0a52f7..f657dd9e0e0d 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/earmhfeb/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/earmhfeb/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv4/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv4/auto-host.h index a3c0cdcedc7b..f4d77526a5db 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv4/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv4/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv4eb/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv4eb/auto-host.h index 7a0f1b0a52f7..f657dd9e0e0d 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv4eb/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv4eb/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv6/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv6/auto-host.h index a3c0cdcedc7b..f4d77526a5db 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv6/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv6/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv6eb/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv6eb/auto-host.h index 7a0f1b0a52f7..f657dd9e0e0d 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv6eb/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv6eb/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv6hf/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv6hf/auto-host.h index a3c0cdcedc7b..f4d77526a5db 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv6hf/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv6hf/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv6hfeb/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv6hfeb/auto-host.h index 7a0f1b0a52f7..f657dd9e0e0d 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv6hfeb/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv6hfeb/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv7/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv7/auto-host.h index a3c0cdcedc7b..f4d77526a5db 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv7/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv7/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv7eb/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv7eb/auto-host.h index 7a0f1b0a52f7..f657dd9e0e0d 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv7eb/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv7eb/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv7hf/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv7hf/auto-host.h index a3c0cdcedc7b..f4d77526a5db 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv7hf/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv7hf/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv7hfeb/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv7hfeb/auto-host.h index 7a0f1b0a52f7..f657dd9e0e0d 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv7hfeb/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv7hfeb/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/hppa/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/hppa/auto-host.h index bbb46402c362..836fbb4837bc 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/hppa/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/hppa/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/i386/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/i386/auto-host.h index 1b2ffd2eab7f..a9a7b60d192b 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/i386/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/i386/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/ia64/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/ia64/auto-host.h index 31d1aaef6322..ac57abd15be3 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/ia64/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/ia64/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/m68000/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/m68000/auto-host.h index 6d7273ab92f6..faf734809a85 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/m68000/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/m68000/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/m68k/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/m68k/auto-host.h index b674c5929dc8..bcec59297b76 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/m68k/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/m68k/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/mips64eb/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/mips64eb/auto-host.h index 46df4dd9eaa6..d194014530b7 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/mips64eb/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/mips64eb/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/mips64el/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/mips64el/auto-host.h index 1f401d769661..15d712878bc8 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/mips64el/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/mips64el/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/mipseb/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/mipseb/auto-host.h index 6e1aa6f122c5..9a243a0b7979 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/mipseb/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/mipseb/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/mipsel/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/mipsel/auto-host.h index 125dcff46d12..c62aaebaf7e8 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/mipsel/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/mipsel/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/or1k/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/or1k/auto-host.h index 2189a28b05ee..0b355d6ec98d 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/or1k/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/or1k/auto-host.h @@ -1637,7 +1637,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/powerpc/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/powerpc/auto-host.h index e1502b9eb0bd..14ade51f97dc 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/powerpc/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/powerpc/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/powerpc64/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/powerpc64/auto-host.h index ef859b2e3012..4949f365f572 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/powerpc64/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/powerpc64/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/riscv32/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/riscv32/auto-host.h index 32755854d7b0..71b470ced050 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/riscv32/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/riscv32/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/riscv64/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/riscv64/auto-host.h index d142552e9ff3..521bbee20752 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/riscv64/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/riscv64/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/sh3eb/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/sh3eb/auto-host.h index acd7f2eadda0..e01afd6b183b 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/sh3eb/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/sh3eb/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/sh3el/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/sh3el/auto-host.h index 9c6603ae66f1..9d6054b57474 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/sh3el/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/sh3el/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/sparc/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/sparc/auto-host.h index 3f618d57ce67..b552dd2edad3 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/sparc/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/sparc/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/sparc64/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/sparc64/auto-host.h index 8df9f436aa2b..07cf8057314d 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/sparc64/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/sparc64/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/vax/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/vax/auto-host.h index 29bd78c98547..32fd45d65111 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/vax/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/vax/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/gcc/arch/x86_64/auto-host.h b/external/gpl3/gcc.old/usr.bin/gcc/arch/x86_64/auto-host.h index a8612aa22600..493015bbcfd3 100644 --- a/external/gpl3/gcc.old/usr.bin/gcc/arch/x86_64/auto-host.h +++ b/external/gpl3/gcc.old/usr.bin/gcc/arch/x86_64/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/aarch64/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/aarch64/config.h index fdb67265c3d8..fff3dd6b0217 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/aarch64/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/aarch64/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/alpha/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/alpha/config.h index 43c9012e2f8b..6f2db101a3f3 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/alpha/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/alpha/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/arm/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/arm/config.h index 8daef53af9ae..09d1d480e272 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/arm/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/arm/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/armeb/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/armeb/config.h index 50290181bd44..c5f9b60e9f3d 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/armeb/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/armeb/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/coldfire/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/coldfire/config.h index 31337f25f939..63dcf1f557ed 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/coldfire/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/coldfire/config.h @@ -234,7 +234,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earm/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earm/config.h index 7d84ef0ee263..c889e18ef99c 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earm/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earm/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmeb/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmeb/config.h index df9e09a0fc87..c96bd8dee178 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmeb/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmeb/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmhf/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmhf/config.h index 7d84ef0ee263..c889e18ef99c 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmhf/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmhf/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmhfeb/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmhfeb/config.h index df9e09a0fc87..c96bd8dee178 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmhfeb/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmhfeb/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv4/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv4/config.h index 0f204fa65a95..fe185cf6566d 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv4/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv4/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv4eb/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv4eb/config.h index df9e09a0fc87..c96bd8dee178 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv4eb/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv4eb/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv6/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv6/config.h index 7d84ef0ee263..c889e18ef99c 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv6/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv6/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv6eb/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv6eb/config.h index df9e09a0fc87..c96bd8dee178 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv6eb/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv6eb/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv6hf/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv6hf/config.h index 7d84ef0ee263..c889e18ef99c 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv6hf/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv6hf/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv6hfeb/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv6hfeb/config.h index df9e09a0fc87..c96bd8dee178 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv6hfeb/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv6hfeb/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv7/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv7/config.h index 7d84ef0ee263..c889e18ef99c 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv7/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv7/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv7eb/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv7eb/config.h index df9e09a0fc87..c96bd8dee178 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv7eb/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv7eb/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv7hf/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv7hf/config.h index 7d84ef0ee263..c889e18ef99c 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv7hf/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv7hf/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv7hfeb/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv7hfeb/config.h index df9e09a0fc87..c96bd8dee178 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv7hfeb/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/earmv7hfeb/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/hppa/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/hppa/config.h index 4d7c465ae8e4..891495596f37 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/hppa/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/hppa/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/i386/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/i386/config.h index e3c84ddad5ba..e037e18d311a 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/i386/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/i386/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/ia64/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/ia64/config.h index 43c9012e2f8b..6f2db101a3f3 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/ia64/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/ia64/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/m68000/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/m68000/config.h index df9e09a0fc87..c96bd8dee178 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/m68000/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/m68000/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/m68k/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/m68k/config.h index df9e09a0fc87..c96bd8dee178 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/m68k/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/m68k/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/mips64eb/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/mips64eb/config.h index 4d7c465ae8e4..891495596f37 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/mips64eb/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/mips64eb/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/mips64el/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/mips64el/config.h index 0f204fa65a95..fe185cf6566d 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/mips64el/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/mips64el/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/mipseb/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/mipseb/config.h index 4d7c465ae8e4..891495596f37 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/mipseb/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/mipseb/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/mipsel/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/mipsel/config.h index 0f204fa65a95..fe185cf6566d 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/mipsel/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/mipsel/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/or1k/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/or1k/config.h index b43c4c725a7d..3f8fcd13b2bd 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/or1k/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/or1k/config.h @@ -238,7 +238,7 @@ #define HOST_WIDE_INT long /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/powerpc/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/powerpc/config.h index fe2863d46535..f400b0d2b503 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/powerpc/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/powerpc/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/powerpc64/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/powerpc64/config.h index 9ca386d2092c..b94308343116 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/powerpc64/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/powerpc64/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/riscv32/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/riscv32/config.h index 8daef53af9ae..09d1d480e272 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/riscv32/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/riscv32/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/riscv64/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/riscv64/config.h index 21db4cacbc1b..2f5645eeeabc 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/riscv64/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/riscv64/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/sh3eb/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/sh3eb/config.h index 4d7c465ae8e4..891495596f37 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/sh3eb/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/sh3eb/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/sh3el/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/sh3el/config.h index 0f204fa65a95..fe185cf6566d 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/sh3el/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/sh3el/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/sparc/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/sparc/config.h index fe2863d46535..f400b0d2b503 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/sparc/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/sparc/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/sparc64/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/sparc64/config.h index 9ca386d2092c..b94308343116 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/sparc64/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/sparc64/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/vax/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/vax/config.h index 0f204fa65a95..fe185cf6566d 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/vax/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/vax/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc.old/usr.bin/libcpp/arch/x86_64/config.h b/external/gpl3/gcc.old/usr.bin/libcpp/arch/x86_64/config.h index e8f1fd0a14a4..bdc432eaff3f 100644 --- a/external/gpl3/gcc.old/usr.bin/libcpp/arch/x86_64/config.h +++ b/external/gpl3/gcc.old/usr.bin/libcpp/arch/x86_64/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/aarch64/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/aarch64/c++config.h index 550847fa0fc6..2a5b3069ca72 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/aarch64/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/aarch64/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/aarch64/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/aarch64/symver-config.h index d9d4c9f4914b..496b4b7f5d2f 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/aarch64/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/aarch64/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/alpha/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/alpha/c++config.h index cd7d9ee433d5..961a0affa06d 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/alpha/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/alpha/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/alpha/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/alpha/symver-config.h index 1697fb91c1cd..f0df62f02e06 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/alpha/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/alpha/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/arm/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/arm/c++config.h index f696ef4952a1..bb7205f5c2bc 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/arm/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/arm/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/arm/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/arm/symver-config.h index faa9effbdcf2..2f631387b05c 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/arm/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/arm/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/armeb/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/armeb/c++config.h index f696ef4952a1..bb7205f5c2bc 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/armeb/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/armeb/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/armeb/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/armeb/symver-config.h index faa9effbdcf2..2f631387b05c 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/armeb/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/armeb/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/coldfire/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/coldfire/c++config.h index 1d9c01e27d54..0f60f24279e6 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/coldfire/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/coldfire/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earm/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earm/c++config.h index 3418dba569dd..db415dfb6727 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earm/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earm/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earm/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earm/symver-config.h index 5779b4805241..b20df20cf7f5 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earm/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earm/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmeb/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmeb/c++config.h index 3418dba569dd..db415dfb6727 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmeb/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmeb/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmeb/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmeb/symver-config.h index 5779b4805241..b20df20cf7f5 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmeb/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmeb/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmhf/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmhf/c++config.h index 3418dba569dd..db415dfb6727 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmhf/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmhf/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmhf/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmhf/symver-config.h index 5779b4805241..b20df20cf7f5 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmhf/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmhf/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmhfeb/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmhfeb/c++config.h index 3418dba569dd..db415dfb6727 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmhfeb/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmhfeb/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmhfeb/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmhfeb/symver-config.h index 5779b4805241..b20df20cf7f5 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmhfeb/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmhfeb/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv4/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv4/c++config.h index 3418dba569dd..db415dfb6727 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv4/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv4/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv4/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv4/symver-config.h index 5779b4805241..b20df20cf7f5 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv4/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv4/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv4eb/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv4eb/c++config.h index 3418dba569dd..db415dfb6727 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv4eb/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv4eb/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv4eb/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv4eb/symver-config.h index 5779b4805241..b20df20cf7f5 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv4eb/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv4eb/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6/c++config.h index 7b6de2f8bbaf..721f25013b7f 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6/symver-config.h index e7b146dd37f8..d040818b26ba 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6eb/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6eb/c++config.h index 7b6de2f8bbaf..721f25013b7f 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6eb/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6eb/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6eb/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6eb/symver-config.h index e7b146dd37f8..d040818b26ba 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6eb/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6eb/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6hf/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6hf/c++config.h index 7b6de2f8bbaf..721f25013b7f 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6hf/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6hf/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6hf/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6hf/symver-config.h index e7b146dd37f8..d040818b26ba 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6hf/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6hf/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6hfeb/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6hfeb/c++config.h index 7b6de2f8bbaf..721f25013b7f 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6hfeb/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6hfeb/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6hfeb/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6hfeb/symver-config.h index e7b146dd37f8..d040818b26ba 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6hfeb/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6hfeb/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7/c++config.h index 7b6de2f8bbaf..721f25013b7f 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7/symver-config.h index e7b146dd37f8..d040818b26ba 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7eb/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7eb/c++config.h index 7b6de2f8bbaf..721f25013b7f 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7eb/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7eb/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7eb/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7eb/symver-config.h index e7b146dd37f8..d040818b26ba 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7eb/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7eb/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7hf/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7hf/c++config.h index 7b6de2f8bbaf..721f25013b7f 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7hf/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7hf/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7hf/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7hf/symver-config.h index e7b146dd37f8..d040818b26ba 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7hf/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7hf/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7hfeb/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7hfeb/c++config.h index 7b6de2f8bbaf..721f25013b7f 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7hfeb/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7hfeb/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7hfeb/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7hfeb/symver-config.h index e7b146dd37f8..d040818b26ba 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7hfeb/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7hfeb/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/hppa/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/hppa/c++config.h index 31858b8ff19b..3c007d0fab95 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/hppa/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/hppa/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/hppa/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/hppa/symver-config.h index 03033d7b15f1..3b2f26073564 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/hppa/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/hppa/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/i386/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/i386/c++config.h index af0a929b15e0..8fe7051889ab 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/i386/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/i386/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/i386/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/i386/symver-config.h index 6136bb87e5d3..8747aef2747d 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/i386/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/i386/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/ia64/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/ia64/c++config.h index cd6beead46dc..a096e16af5fc 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/ia64/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/ia64/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/ia64/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/ia64/symver-config.h index 2ca8aecc839c..29a97ffea3fc 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/ia64/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/ia64/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/m68000/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/m68000/c++config.h index 7820c19bb5e0..6ea1af860fdf 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/m68000/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/m68000/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/m68000/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/m68000/symver-config.h index a5c762d521fe..7fba0346ca68 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/m68000/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/m68000/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/m68k/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/m68k/c++config.h index 85fe949ff1e2..297871afc10d 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/m68k/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/m68k/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/m68k/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/m68k/symver-config.h index fdfe402da285..8b5ce4f5b3bd 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/m68k/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/m68k/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/mips64eb/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/mips64eb/c++config.h index ff62f55eafc4..4352be4f2de4 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/mips64eb/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/mips64eb/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/mips64eb/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/mips64eb/symver-config.h index da8f9c6191ce..727c16a18f95 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/mips64eb/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/mips64eb/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/mips64el/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/mips64el/c++config.h index ff62f55eafc4..4352be4f2de4 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/mips64el/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/mips64el/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/mips64el/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/mips64el/symver-config.h index da8f9c6191ce..727c16a18f95 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/mips64el/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/mips64el/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/mipseb/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/mipseb/c++config.h index f94df1649b16..edeeb58fd120 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/mipseb/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/mipseb/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/mipseb/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/mipseb/symver-config.h index 3efcb89132a7..3e6fce978705 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/mipseb/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/mipseb/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/mipsel/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/mipsel/c++config.h index f94df1649b16..edeeb58fd120 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/mipsel/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/mipsel/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/mipsel/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/mipsel/symver-config.h index 3efcb89132a7..3e6fce978705 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/mipsel/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/mipsel/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/or1k/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/or1k/c++config.h index 7d7b5b7589d5..02a96168d410 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/or1k/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/or1k/c++config.h @@ -1135,7 +1135,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc/c++config.h index 4312a15a73e8..5f2b856af2b4 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc/symver-config.h index 33e5c57bcacf..0907c979ac59 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc64/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc64/c++config.h index 1b16171c67a7..9009557851f3 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc64/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc64/c++config.h @@ -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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc64/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc64/symver-config.h index c9bfef96b757..b3c7be626172 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc64/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc64/symver-config.h @@ -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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/riscv32/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/riscv32/c++config.h index 35a50c74d912..69e684b0ca01 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/riscv32/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/riscv32/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/riscv32/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/riscv32/symver-config.h index 265257494b91..e6b46a9535d8 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/riscv32/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/riscv32/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/riscv64/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/riscv64/c++config.h index de119148edd8..25ad6c625611 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/riscv64/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/riscv64/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/riscv64/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/riscv64/symver-config.h index a8b7cd967c55..0a1f716ef3d6 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/riscv64/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/riscv64/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/sh3eb/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/sh3eb/c++config.h index f94df1649b16..edeeb58fd120 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/sh3eb/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/sh3eb/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/sh3eb/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/sh3eb/symver-config.h index 3efcb89132a7..3e6fce978705 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/sh3eb/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/sh3eb/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/sh3el/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/sh3el/c++config.h index f94df1649b16..edeeb58fd120 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/sh3el/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/sh3el/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/sh3el/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/sh3el/symver-config.h index 3efcb89132a7..3e6fce978705 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/sh3el/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/sh3el/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/sparc/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/sparc/c++config.h index f696ef4952a1..bb7205f5c2bc 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/sparc/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/sparc/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/sparc/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/sparc/symver-config.h index faa9effbdcf2..2f631387b05c 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/sparc/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/sparc/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/sparc64/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/sparc64/c++config.h index 550847fa0fc6..2a5b3069ca72 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/sparc64/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/sparc64/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/sparc64/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/sparc64/symver-config.h index d9d4c9f4914b..496b4b7f5d2f 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/sparc64/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/sparc64/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/vax/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/vax/c++config.h index 87beb58a64de..23c45e502e96 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/vax/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/vax/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/vax/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/vax/symver-config.h index a4e97285f9a2..b984fca13f2c 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/vax/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/vax/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/x86_64/c++config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/x86_64/c++config.h index bd1cb9188c31..c0bb13cd36d9 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/x86_64/c++config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/x86_64/c++config.h @@ -1335,7 +1335,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. */ diff --git a/external/gpl3/gcc/lib/libstdc++-v3/arch/x86_64/symver-config.h b/external/gpl3/gcc/lib/libstdc++-v3/arch/x86_64/symver-config.h index cc0e02a21465..46c2c7a18529 100644 --- a/external/gpl3/gcc/lib/libstdc++-v3/arch/x86_64/symver-config.h +++ b/external/gpl3/gcc/lib/libstdc++-v3/arch/x86_64/symver-config.h @@ -718,7 +718,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. */ diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/aarch64/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/aarch64/auto-host.h index 91952fedc6b4..b3b0076373d4 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/aarch64/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/aarch64/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/alpha/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/alpha/auto-host.h index 536083bf5640..f99188b6b70b 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/alpha/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/alpha/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/arm/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/arm/auto-host.h index 008e44ab8f57..0c650b10e8ce 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/arm/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/arm/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/armeb/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/armeb/auto-host.h index e5c79cb8993a..85bbae36c8c1 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/armeb/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/armeb/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/coldfire/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/coldfire/auto-host.h index d80b7a4a25a7..674b5062cdf5 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/coldfire/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/coldfire/auto-host.h @@ -1819,7 +1819,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/earm/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/earm/auto-host.h index bd78fa9d2a5a..b8f113dc22c1 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/earm/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/earm/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/earmeb/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/earmeb/auto-host.h index 4bf533ef406f..734f5874b3fd 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/earmeb/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/earmeb/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/earmhf/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/earmhf/auto-host.h index bd78fa9d2a5a..b8f113dc22c1 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/earmhf/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/earmhf/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/earmhfeb/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/earmhfeb/auto-host.h index 4bf533ef406f..734f5874b3fd 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/earmhfeb/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/earmhfeb/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/earmv4/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/earmv4/auto-host.h index bd78fa9d2a5a..b8f113dc22c1 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/earmv4/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/earmv4/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/earmv4eb/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/earmv4eb/auto-host.h index 4bf533ef406f..734f5874b3fd 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/earmv4eb/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/earmv4eb/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/earmv6/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/earmv6/auto-host.h index bd78fa9d2a5a..b8f113dc22c1 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/earmv6/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/earmv6/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/earmv6eb/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/earmv6eb/auto-host.h index 4bf533ef406f..734f5874b3fd 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/earmv6eb/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/earmv6eb/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/earmv6hf/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/earmv6hf/auto-host.h index bd78fa9d2a5a..b8f113dc22c1 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/earmv6hf/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/earmv6hf/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/earmv6hfeb/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/earmv6hfeb/auto-host.h index 4bf533ef406f..734f5874b3fd 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/earmv6hfeb/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/earmv6hfeb/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/earmv7/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/earmv7/auto-host.h index bd78fa9d2a5a..b8f113dc22c1 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/earmv7/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/earmv7/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/earmv7eb/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/earmv7eb/auto-host.h index 4bf533ef406f..734f5874b3fd 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/earmv7eb/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/earmv7eb/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/earmv7hf/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/earmv7hf/auto-host.h index bd78fa9d2a5a..b8f113dc22c1 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/earmv7hf/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/earmv7hf/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/earmv7hfeb/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/earmv7hfeb/auto-host.h index 4bf533ef406f..734f5874b3fd 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/earmv7hfeb/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/earmv7hfeb/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/hppa/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/hppa/auto-host.h index d2b4c7f35212..edd9d84905d1 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/hppa/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/hppa/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/i386/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/i386/auto-host.h index 579262b41c0e..0b0027952fa1 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/i386/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/i386/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/ia64/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/ia64/auto-host.h index f8df70f86f84..33abcab2bcaf 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/ia64/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/ia64/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/m68000/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/m68000/auto-host.h index d53199ef8f53..77bb6baaa467 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/m68000/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/m68000/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/m68k/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/m68k/auto-host.h index 3aeedb4548ff..2e4831253989 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/m68k/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/m68k/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/mips64eb/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/mips64eb/auto-host.h index 2f9e34599d05..2b7fe99c1c37 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/mips64eb/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/mips64eb/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/mips64el/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/mips64el/auto-host.h index 2ba11b129f9f..bed43c9888fb 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/mips64el/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/mips64el/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/mipseb/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/mipseb/auto-host.h index f95b394614f0..35bedb469d79 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/mipseb/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/mipseb/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/mipsel/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/mipsel/auto-host.h index ed7b3f36bbdf..bffacfabd53f 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/mipsel/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/mipsel/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/or1k/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/or1k/auto-host.h index 2189a28b05ee..0b355d6ec98d 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/or1k/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/or1k/auto-host.h @@ -1637,7 +1637,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/powerpc/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/powerpc/auto-host.h index b9174c4a0d38..e07a1a2d1311 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/powerpc/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/powerpc/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/powerpc64/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/powerpc64/auto-host.h index ef859b2e3012..4949f365f572 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/powerpc64/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/powerpc64/auto-host.h @@ -1952,7 +1952,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/riscv32/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/riscv32/auto-host.h index f36110ff3dad..9ab6fd75ec4b 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/riscv32/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/riscv32/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/riscv64/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/riscv64/auto-host.h index 06b18ba957de..3bb15bdae944 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/riscv64/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/riscv64/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/sh3eb/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/sh3eb/auto-host.h index 64959247e624..268b78f634fe 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/sh3eb/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/sh3eb/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/sh3el/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/sh3el/auto-host.h index 484b4b4b8184..37f7a79a63ad 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/sh3el/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/sh3el/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/sparc/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/sparc/auto-host.h index fc5e084ec8fb..36d577074f4f 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/sparc/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/sparc/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/sparc64/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/sparc64/auto-host.h index bc52e34da182..548c8c04bbdb 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/sparc64/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/sparc64/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/vax/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/vax/auto-host.h index 5844adcd9c91..ab8989f1ed32 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/vax/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/vax/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/gcc/arch/x86_64/auto-host.h b/external/gpl3/gcc/usr.bin/gcc/arch/x86_64/auto-host.h index acbd8622c0b6..e761e3e3acd7 100644 --- a/external/gpl3/gcc/usr.bin/gcc/arch/x86_64/auto-host.h +++ b/external/gpl3/gcc/usr.bin/gcc/arch/x86_64/auto-host.h @@ -1973,7 +1973,7 @@ /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET -#define ICONV_CONST const +#define ICONV_CONST #endif diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/aarch64/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/aarch64/config.h index fdb67265c3d8..fff3dd6b0217 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/aarch64/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/aarch64/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/alpha/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/alpha/config.h index 43c9012e2f8b..6f2db101a3f3 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/alpha/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/alpha/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/arm/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/arm/config.h index 8daef53af9ae..09d1d480e272 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/arm/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/arm/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/armeb/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/armeb/config.h index 50290181bd44..c5f9b60e9f3d 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/armeb/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/armeb/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/coldfire/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/coldfire/config.h index 31337f25f939..63dcf1f557ed 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/coldfire/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/coldfire/config.h @@ -234,7 +234,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/earm/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/earm/config.h index 7d84ef0ee263..c889e18ef99c 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/earm/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/earm/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/earmeb/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/earmeb/config.h index df9e09a0fc87..c96bd8dee178 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/earmeb/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/earmeb/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/earmhf/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/earmhf/config.h index 7d84ef0ee263..c889e18ef99c 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/earmhf/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/earmhf/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/earmhfeb/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/earmhfeb/config.h index df9e09a0fc87..c96bd8dee178 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/earmhfeb/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/earmhfeb/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/earmv4/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/earmv4/config.h index 0f204fa65a95..fe185cf6566d 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/earmv4/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/earmv4/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/earmv4eb/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/earmv4eb/config.h index df9e09a0fc87..c96bd8dee178 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/earmv4eb/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/earmv4eb/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/earmv6/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/earmv6/config.h index 7d84ef0ee263..c889e18ef99c 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/earmv6/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/earmv6/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/earmv6eb/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/earmv6eb/config.h index df9e09a0fc87..c96bd8dee178 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/earmv6eb/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/earmv6eb/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/earmv6hf/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/earmv6hf/config.h index 7d84ef0ee263..c889e18ef99c 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/earmv6hf/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/earmv6hf/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/earmv6hfeb/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/earmv6hfeb/config.h index df9e09a0fc87..c96bd8dee178 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/earmv6hfeb/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/earmv6hfeb/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/earmv7/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/earmv7/config.h index 7d84ef0ee263..c889e18ef99c 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/earmv7/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/earmv7/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/earmv7eb/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/earmv7eb/config.h index df9e09a0fc87..c96bd8dee178 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/earmv7eb/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/earmv7eb/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/earmv7hf/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/earmv7hf/config.h index 7d84ef0ee263..c889e18ef99c 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/earmv7hf/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/earmv7hf/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/earmv7hfeb/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/earmv7hfeb/config.h index df9e09a0fc87..c96bd8dee178 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/earmv7hfeb/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/earmv7hfeb/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/hppa/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/hppa/config.h index 4d7c465ae8e4..891495596f37 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/hppa/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/hppa/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/i386/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/i386/config.h index e3c84ddad5ba..e037e18d311a 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/i386/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/i386/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/ia64/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/ia64/config.h index 43c9012e2f8b..6f2db101a3f3 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/ia64/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/ia64/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/m68000/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/m68000/config.h index df9e09a0fc87..c96bd8dee178 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/m68000/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/m68000/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/m68k/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/m68k/config.h index df9e09a0fc87..c96bd8dee178 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/m68k/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/m68k/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/mips64eb/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/mips64eb/config.h index 4d7c465ae8e4..891495596f37 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/mips64eb/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/mips64eb/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/mips64el/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/mips64el/config.h index 0f204fa65a95..fe185cf6566d 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/mips64el/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/mips64el/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/mipseb/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/mipseb/config.h index 4d7c465ae8e4..891495596f37 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/mipseb/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/mipseb/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/mipsel/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/mipsel/config.h index 0f204fa65a95..fe185cf6566d 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/mipsel/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/mipsel/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/or1k/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/or1k/config.h index b43c4c725a7d..3f8fcd13b2bd 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/or1k/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/or1k/config.h @@ -238,7 +238,7 @@ #define HOST_WIDE_INT long /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/powerpc/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/powerpc/config.h index fe2863d46535..f400b0d2b503 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/powerpc/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/powerpc/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/powerpc64/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/powerpc64/config.h index 9ca386d2092c..b94308343116 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/powerpc64/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/powerpc64/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/riscv32/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/riscv32/config.h index 8daef53af9ae..09d1d480e272 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/riscv32/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/riscv32/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/riscv64/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/riscv64/config.h index 21db4cacbc1b..2f5645eeeabc 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/riscv64/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/riscv64/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/sh3eb/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/sh3eb/config.h index 4d7c465ae8e4..891495596f37 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/sh3eb/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/sh3eb/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/sh3el/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/sh3el/config.h index 0f204fa65a95..fe185cf6566d 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/sh3el/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/sh3el/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/sparc/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/sparc/config.h index fe2863d46535..f400b0d2b503 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/sparc/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/sparc/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/sparc64/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/sparc64/config.h index 9ca386d2092c..b94308343116 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/sparc64/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/sparc64/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/vax/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/vax/config.h index 0f204fa65a95..fe185cf6566d 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/vax/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/vax/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gcc/usr.bin/libcpp/arch/x86_64/config.h b/external/gpl3/gcc/usr.bin/libcpp/arch/x86_64/config.h index e8f1fd0a14a4..bdc432eaff3f 100644 --- a/external/gpl3/gcc/usr.bin/libcpp/arch/x86_64/config.h +++ b/external/gpl3/gcc/usr.bin/libcpp/arch/x86_64/config.h @@ -240,7 +240,7 @@ #define HAVE_UNISTD_H 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Define to the name of this package. */ #define PACKAGE "cpplib" diff --git a/external/gpl3/gdb.old/lib/libgdb/arch/aarch64/config.h b/external/gpl3/gdb.old/lib/libgdb/arch/aarch64/config.h index eea8497a0845..bad8117158a4 100644 --- a/external/gpl3/gdb.old/lib/libgdb/arch/aarch64/config.h +++ b/external/gpl3/gdb.old/lib/libgdb/arch/aarch64/config.h @@ -615,7 +615,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb.old/lib/libgdb/arch/alpha/config.h b/external/gpl3/gdb.old/lib/libgdb/arch/alpha/config.h index 37e84fb976f1..0a43dc6bad94 100644 --- a/external/gpl3/gdb.old/lib/libgdb/arch/alpha/config.h +++ b/external/gpl3/gdb.old/lib/libgdb/arch/alpha/config.h @@ -615,7 +615,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb.old/lib/libgdb/arch/arm/config.h b/external/gpl3/gdb.old/lib/libgdb/arch/arm/config.h index eac0043d13e3..ac1a3c868680 100644 --- a/external/gpl3/gdb.old/lib/libgdb/arch/arm/config.h +++ b/external/gpl3/gdb.old/lib/libgdb/arch/arm/config.h @@ -615,7 +615,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb.old/lib/libgdb/arch/armeb/config.h b/external/gpl3/gdb.old/lib/libgdb/arch/armeb/config.h index 114966fd813a..1e3e92823bfa 100644 --- a/external/gpl3/gdb.old/lib/libgdb/arch/armeb/config.h +++ b/external/gpl3/gdb.old/lib/libgdb/arch/armeb/config.h @@ -615,7 +615,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb.old/lib/libgdb/arch/coldfire/config.h b/external/gpl3/gdb.old/lib/libgdb/arch/coldfire/config.h index e8eecf8145ea..ce5429be40dc 100644 --- a/external/gpl3/gdb.old/lib/libgdb/arch/coldfire/config.h +++ b/external/gpl3/gdb.old/lib/libgdb/arch/coldfire/config.h @@ -612,7 +612,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb.old/lib/libgdb/arch/hppa/config.h b/external/gpl3/gdb.old/lib/libgdb/arch/hppa/config.h index 44ebf6500371..6e076aedaf0a 100644 --- a/external/gpl3/gdb.old/lib/libgdb/arch/hppa/config.h +++ b/external/gpl3/gdb.old/lib/libgdb/arch/hppa/config.h @@ -615,7 +615,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb.old/lib/libgdb/arch/i386/config.h b/external/gpl3/gdb.old/lib/libgdb/arch/i386/config.h index 66145c70cdfe..6d6e96d76b47 100644 --- a/external/gpl3/gdb.old/lib/libgdb/arch/i386/config.h +++ b/external/gpl3/gdb.old/lib/libgdb/arch/i386/config.h @@ -615,7 +615,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb.old/lib/libgdb/arch/m68000/config.h b/external/gpl3/gdb.old/lib/libgdb/arch/m68000/config.h index c3b84422029c..abedba976fec 100644 --- a/external/gpl3/gdb.old/lib/libgdb/arch/m68000/config.h +++ b/external/gpl3/gdb.old/lib/libgdb/arch/m68000/config.h @@ -615,7 +615,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb.old/lib/libgdb/arch/m68k/config.h b/external/gpl3/gdb.old/lib/libgdb/arch/m68k/config.h index 92f1c81cf745..fe6f52429b9d 100644 --- a/external/gpl3/gdb.old/lib/libgdb/arch/m68k/config.h +++ b/external/gpl3/gdb.old/lib/libgdb/arch/m68k/config.h @@ -615,7 +615,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb.old/lib/libgdb/arch/mips64eb/config.h b/external/gpl3/gdb.old/lib/libgdb/arch/mips64eb/config.h index 330db73ad70a..6276dd90c10c 100644 --- a/external/gpl3/gdb.old/lib/libgdb/arch/mips64eb/config.h +++ b/external/gpl3/gdb.old/lib/libgdb/arch/mips64eb/config.h @@ -615,7 +615,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb.old/lib/libgdb/arch/mips64el/config.h b/external/gpl3/gdb.old/lib/libgdb/arch/mips64el/config.h index 54fa2a33ff1d..af2fe4ecec69 100644 --- a/external/gpl3/gdb.old/lib/libgdb/arch/mips64el/config.h +++ b/external/gpl3/gdb.old/lib/libgdb/arch/mips64el/config.h @@ -615,7 +615,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb.old/lib/libgdb/arch/mipseb/config.h b/external/gpl3/gdb.old/lib/libgdb/arch/mipseb/config.h index 4d4d27a669ba..4d796d399c5e 100644 --- a/external/gpl3/gdb.old/lib/libgdb/arch/mipseb/config.h +++ b/external/gpl3/gdb.old/lib/libgdb/arch/mipseb/config.h @@ -615,7 +615,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb.old/lib/libgdb/arch/mipsel/config.h b/external/gpl3/gdb.old/lib/libgdb/arch/mipsel/config.h index 228a562008da..93e3c4c7e542 100644 --- a/external/gpl3/gdb.old/lib/libgdb/arch/mipsel/config.h +++ b/external/gpl3/gdb.old/lib/libgdb/arch/mipsel/config.h @@ -615,7 +615,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb.old/lib/libgdb/arch/powerpc/config.h b/external/gpl3/gdb.old/lib/libgdb/arch/powerpc/config.h index 9c4226a818ca..4c23dbda0f3d 100644 --- a/external/gpl3/gdb.old/lib/libgdb/arch/powerpc/config.h +++ b/external/gpl3/gdb.old/lib/libgdb/arch/powerpc/config.h @@ -615,7 +615,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb.old/lib/libgdb/arch/powerpc64/config.h b/external/gpl3/gdb.old/lib/libgdb/arch/powerpc64/config.h index ba83712f8a4d..1ba99b412a84 100644 --- a/external/gpl3/gdb.old/lib/libgdb/arch/powerpc64/config.h +++ b/external/gpl3/gdb.old/lib/libgdb/arch/powerpc64/config.h @@ -615,7 +615,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb.old/lib/libgdb/arch/sh3eb/config.h b/external/gpl3/gdb.old/lib/libgdb/arch/sh3eb/config.h index 705e7aa230c4..5669ca917a7b 100644 --- a/external/gpl3/gdb.old/lib/libgdb/arch/sh3eb/config.h +++ b/external/gpl3/gdb.old/lib/libgdb/arch/sh3eb/config.h @@ -615,7 +615,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb.old/lib/libgdb/arch/sh3el/config.h b/external/gpl3/gdb.old/lib/libgdb/arch/sh3el/config.h index b765d7802b18..1c97c5006520 100644 --- a/external/gpl3/gdb.old/lib/libgdb/arch/sh3el/config.h +++ b/external/gpl3/gdb.old/lib/libgdb/arch/sh3el/config.h @@ -615,7 +615,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb.old/lib/libgdb/arch/sparc/config.h b/external/gpl3/gdb.old/lib/libgdb/arch/sparc/config.h index 0396dc1d7da4..8034126b88c1 100644 --- a/external/gpl3/gdb.old/lib/libgdb/arch/sparc/config.h +++ b/external/gpl3/gdb.old/lib/libgdb/arch/sparc/config.h @@ -615,7 +615,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb.old/lib/libgdb/arch/sparc64/config.h b/external/gpl3/gdb.old/lib/libgdb/arch/sparc64/config.h index 7b6a977d0c1c..47a0163d0348 100644 --- a/external/gpl3/gdb.old/lib/libgdb/arch/sparc64/config.h +++ b/external/gpl3/gdb.old/lib/libgdb/arch/sparc64/config.h @@ -615,7 +615,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb.old/lib/libgdb/arch/vax/config.h b/external/gpl3/gdb.old/lib/libgdb/arch/vax/config.h index 9b5921c9590c..a5df49c2f792 100644 --- a/external/gpl3/gdb.old/lib/libgdb/arch/vax/config.h +++ b/external/gpl3/gdb.old/lib/libgdb/arch/vax/config.h @@ -615,7 +615,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb.old/lib/libgdb/arch/x86_64/config.h b/external/gpl3/gdb.old/lib/libgdb/arch/x86_64/config.h index 5db849c17f8e..97dcc8b1bef5 100644 --- a/external/gpl3/gdb.old/lib/libgdb/arch/x86_64/config.h +++ b/external/gpl3/gdb.old/lib/libgdb/arch/x86_64/config.h @@ -615,7 +615,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb/lib/libgdb/arch/aarch64/config.h b/external/gpl3/gdb/lib/libgdb/arch/aarch64/config.h index a5a803ddc087..7d49767f6764 100644 --- a/external/gpl3/gdb/lib/libgdb/arch/aarch64/config.h +++ b/external/gpl3/gdb/lib/libgdb/arch/aarch64/config.h @@ -597,7 +597,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb/lib/libgdb/arch/alpha/config.h b/external/gpl3/gdb/lib/libgdb/arch/alpha/config.h index 3de6f402a285..5167bf9176bf 100644 --- a/external/gpl3/gdb/lib/libgdb/arch/alpha/config.h +++ b/external/gpl3/gdb/lib/libgdb/arch/alpha/config.h @@ -597,7 +597,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb/lib/libgdb/arch/arm/config.h b/external/gpl3/gdb/lib/libgdb/arch/arm/config.h index db890a4c274a..e5c047725171 100644 --- a/external/gpl3/gdb/lib/libgdb/arch/arm/config.h +++ b/external/gpl3/gdb/lib/libgdb/arch/arm/config.h @@ -597,7 +597,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb/lib/libgdb/arch/armeb/config.h b/external/gpl3/gdb/lib/libgdb/arch/armeb/config.h index 660ccb65558b..3fa15824223a 100644 --- a/external/gpl3/gdb/lib/libgdb/arch/armeb/config.h +++ b/external/gpl3/gdb/lib/libgdb/arch/armeb/config.h @@ -597,7 +597,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb/lib/libgdb/arch/coldfire/config.h b/external/gpl3/gdb/lib/libgdb/arch/coldfire/config.h index e8eecf8145ea..ce5429be40dc 100644 --- a/external/gpl3/gdb/lib/libgdb/arch/coldfire/config.h +++ b/external/gpl3/gdb/lib/libgdb/arch/coldfire/config.h @@ -612,7 +612,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb/lib/libgdb/arch/hppa/config.h b/external/gpl3/gdb/lib/libgdb/arch/hppa/config.h index df8f6a539865..41c3aa833d0a 100644 --- a/external/gpl3/gdb/lib/libgdb/arch/hppa/config.h +++ b/external/gpl3/gdb/lib/libgdb/arch/hppa/config.h @@ -597,7 +597,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb/lib/libgdb/arch/i386/config.h b/external/gpl3/gdb/lib/libgdb/arch/i386/config.h index 6021c3369e19..f98a001d3472 100644 --- a/external/gpl3/gdb/lib/libgdb/arch/i386/config.h +++ b/external/gpl3/gdb/lib/libgdb/arch/i386/config.h @@ -597,7 +597,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb/lib/libgdb/arch/m68000/config.h b/external/gpl3/gdb/lib/libgdb/arch/m68000/config.h index a2d96faea3d0..854e4ae0a93c 100644 --- a/external/gpl3/gdb/lib/libgdb/arch/m68000/config.h +++ b/external/gpl3/gdb/lib/libgdb/arch/m68000/config.h @@ -597,7 +597,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb/lib/libgdb/arch/m68k/config.h b/external/gpl3/gdb/lib/libgdb/arch/m68k/config.h index 030ebd80330b..f312bbc21b94 100644 --- a/external/gpl3/gdb/lib/libgdb/arch/m68k/config.h +++ b/external/gpl3/gdb/lib/libgdb/arch/m68k/config.h @@ -597,7 +597,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb/lib/libgdb/arch/mips64eb/config.h b/external/gpl3/gdb/lib/libgdb/arch/mips64eb/config.h index e6ad08d94aad..bd77e13e5e9e 100644 --- a/external/gpl3/gdb/lib/libgdb/arch/mips64eb/config.h +++ b/external/gpl3/gdb/lib/libgdb/arch/mips64eb/config.h @@ -597,7 +597,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb/lib/libgdb/arch/mips64el/config.h b/external/gpl3/gdb/lib/libgdb/arch/mips64el/config.h index a4ba74eb1116..3ad7323cec52 100644 --- a/external/gpl3/gdb/lib/libgdb/arch/mips64el/config.h +++ b/external/gpl3/gdb/lib/libgdb/arch/mips64el/config.h @@ -597,7 +597,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb/lib/libgdb/arch/mipseb/config.h b/external/gpl3/gdb/lib/libgdb/arch/mipseb/config.h index 8699b00b0149..3ee14af29d92 100644 --- a/external/gpl3/gdb/lib/libgdb/arch/mipseb/config.h +++ b/external/gpl3/gdb/lib/libgdb/arch/mipseb/config.h @@ -597,7 +597,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb/lib/libgdb/arch/mipsel/config.h b/external/gpl3/gdb/lib/libgdb/arch/mipsel/config.h index d0e31ca5667a..df66307f3b56 100644 --- a/external/gpl3/gdb/lib/libgdb/arch/mipsel/config.h +++ b/external/gpl3/gdb/lib/libgdb/arch/mipsel/config.h @@ -597,7 +597,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb/lib/libgdb/arch/powerpc/config.h b/external/gpl3/gdb/lib/libgdb/arch/powerpc/config.h index d381d1f2af7a..ff8dc9a6e3ed 100644 --- a/external/gpl3/gdb/lib/libgdb/arch/powerpc/config.h +++ b/external/gpl3/gdb/lib/libgdb/arch/powerpc/config.h @@ -597,7 +597,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb/lib/libgdb/arch/powerpc64/config.h b/external/gpl3/gdb/lib/libgdb/arch/powerpc64/config.h index 7ca5e752b0a6..f1186b63a221 100644 --- a/external/gpl3/gdb/lib/libgdb/arch/powerpc64/config.h +++ b/external/gpl3/gdb/lib/libgdb/arch/powerpc64/config.h @@ -597,7 +597,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb/lib/libgdb/arch/sh3eb/config.h b/external/gpl3/gdb/lib/libgdb/arch/sh3eb/config.h index 227ff60b4e2b..3e03a1f49c29 100644 --- a/external/gpl3/gdb/lib/libgdb/arch/sh3eb/config.h +++ b/external/gpl3/gdb/lib/libgdb/arch/sh3eb/config.h @@ -597,7 +597,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb/lib/libgdb/arch/sh3el/config.h b/external/gpl3/gdb/lib/libgdb/arch/sh3el/config.h index e94caef95a36..10cde9c5dc04 100644 --- a/external/gpl3/gdb/lib/libgdb/arch/sh3el/config.h +++ b/external/gpl3/gdb/lib/libgdb/arch/sh3el/config.h @@ -597,7 +597,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb/lib/libgdb/arch/sparc/config.h b/external/gpl3/gdb/lib/libgdb/arch/sparc/config.h index 410bf64c519d..40fe145a26fd 100644 --- a/external/gpl3/gdb/lib/libgdb/arch/sparc/config.h +++ b/external/gpl3/gdb/lib/libgdb/arch/sparc/config.h @@ -597,7 +597,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb/lib/libgdb/arch/sparc64/config.h b/external/gpl3/gdb/lib/libgdb/arch/sparc64/config.h index 255703084a02..3559aee07a37 100644 --- a/external/gpl3/gdb/lib/libgdb/arch/sparc64/config.h +++ b/external/gpl3/gdb/lib/libgdb/arch/sparc64/config.h @@ -597,7 +597,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb/lib/libgdb/arch/vax/config.h b/external/gpl3/gdb/lib/libgdb/arch/vax/config.h index 1ae349ec17d1..78f757fcf2f7 100644 --- a/external/gpl3/gdb/lib/libgdb/arch/vax/config.h +++ b/external/gpl3/gdb/lib/libgdb/arch/vax/config.h @@ -597,7 +597,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/gpl3/gdb/lib/libgdb/arch/x86_64/config.h b/external/gpl3/gdb/lib/libgdb/arch/x86_64/config.h index ad0f6e7d283a..bd34e56fe62f 100644 --- a/external/gpl3/gdb/lib/libgdb/arch/x86_64/config.h +++ b/external/gpl3/gdb/lib/libgdb/arch/x86_64/config.h @@ -597,7 +597,7 @@ /* #undef ICONV_BIN_RELOCATABLE */ /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* directory to load the JIT readers from */ #define JIT_READER_DIR "/usr/lib/gdb" diff --git a/external/mit/xorg/bin/xwininfo/Makefile b/external/mit/xorg/bin/xwininfo/Makefile index 2bc8df62977f..22f81a87a58a 100644 --- a/external/mit/xorg/bin/xwininfo/Makefile +++ b/external/mit/xorg/bin/xwininfo/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2013/05/31 09:14:18 mrg Exp $ +# $NetBSD: Makefile,v 1.7 2019/10/24 18:17:59 kamil Exp $ .include @@ -6,7 +6,7 @@ PROG= xwininfo SRCS= xwininfo.c clientwin.c dsimple.c XWININFODIR= ${X11SRCDIR.${PROG}} -CPPFLAGS+=-I${XWININFODIR} -I${XWININFODIR}/../include -DICONV_CONST=const +CPPFLAGS+=-I${XWININFODIR} -I${XWININFODIR}/../include -DICONV_CONST='' .PATH: ${XWININFODIR} ${XWININFODIR}/man diff --git a/include/iconv.h b/include/iconv.h index d04550720d6e..d28fb5b4b6b8 100644 --- a/include/iconv.h +++ b/include/iconv.h @@ -1,4 +1,4 @@ -/* $NetBSD: iconv.h,v 1.6 2005/02/03 04:39:32 perry Exp $ */ +/* $NetBSD: iconv.h,v 1.7 2019/10/24 18:17:59 kamil Exp $ */ /*- * Copyright (c)2003 Citrus Project, @@ -43,7 +43,7 @@ typedef struct __tag_iconv_t *iconv_t; __BEGIN_DECLS iconv_t iconv_open(const char *, const char *); -size_t iconv(iconv_t, const char ** __restrict, +size_t iconv(iconv_t, char ** __restrict, size_t * __restrict, char ** __restrict, size_t * __restrict); int iconv_close(iconv_t); @@ -52,7 +52,7 @@ int iconv_close(iconv_t); */ int __iconv_get_list(char ***, size_t *); void __iconv_free_list(char **, size_t); -size_t __iconv(iconv_t, const char **, size_t *, char **, +size_t __iconv(iconv_t, char **, size_t *, char **, size_t *, __uint32_t, size_t *); #define __ICONV_F_HIDE_INVALID 0x0001 __END_DECLS diff --git a/lib/libc/iconv/iconv.3 b/lib/libc/iconv/iconv.3 index 940af48b4943..b22efacba4e5 100644 --- a/lib/libc/iconv/iconv.3 +++ b/lib/libc/iconv/iconv.3 @@ -1,4 +1,4 @@ -.\" $NetBSD: iconv.3,v 1.23 2016/06/08 07:53:15 wiz Exp $ +.\" $NetBSD: iconv.3,v 1.24 2019/10/24 18:17:59 kamil Exp $ .\" .\" Copyright (c)2003 Citrus Project, .\" All rights reserved. @@ -24,7 +24,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.Dd June 8, 2016 +.Dd October 24, 2019 .Dt ICONV 3 .Os .\" ---------------------------------------------------------------------- @@ -44,7 +44,7 @@ .Ft int .Fn iconv_close "iconv_t cd" .Ft size_t -.Fn iconv "iconv_t cd" "const char ** restrict src" "size_t * restrict srcleft" "char ** restrict dst" "size_t * restrict dstleft" +.Fn iconv "iconv_t cd" "char ** restrict src" "size_t * restrict srcleft" "char ** restrict dst" "size_t * restrict dstleft" .\" ---------------------------------------------------------------------- .Sh DESCRIPTION The @@ -259,10 +259,16 @@ follow the header file definition .Pq without const , even though the version with const is arguably more correct. .Nx -has always used the const form. +used initially the const form. It was decided to reject the committee's regression and become .Pq technically incompatible. +.Pp +This decision was changed in +.Nx 10 +and the +.Fn iconv +prototype was synchronized with the standard. .\" ---------------------------------------------------------------------- .Sh BUGS If diff --git a/lib/libc/iconv/iconv.c b/lib/libc/iconv/iconv.c index 4bb4a791521d..0c2a24a3b213 100644 --- a/lib/libc/iconv/iconv.c +++ b/lib/libc/iconv/iconv.c @@ -1,4 +1,4 @@ -/* $NetBSD: iconv.c,v 1.13 2012/01/20 16:31:29 joerg Exp $ */ +/* $NetBSD: iconv.c,v 1.14 2019/10/24 18:17:59 kamil Exp $ */ /*- * Copyright (c)2003 Citrus Project, @@ -28,7 +28,7 @@ #include #if defined(LIBC_SCCS) && !defined(lint) -__RCSID("$NetBSD: iconv.c,v 1.13 2012/01/20 16:31:29 joerg Exp $"); +__RCSID("$NetBSD: iconv.c,v 1.14 2019/10/24 18:17:59 kamil Exp $"); #endif /* LIBC_SCCS and not lint */ #include "namespace.h" @@ -84,7 +84,7 @@ iconv_close(iconv_t handle) } size_t -iconv(iconv_t handle, const char **in, size_t *szin, char **out, size_t *szout) +iconv(iconv_t handle, char **in, size_t *szin, char **out, size_t *szout) { int err; size_t ret; @@ -95,8 +95,8 @@ iconv(iconv_t handle, const char **in, size_t *szin, char **out, size_t *szout) } err = _citrus_iconv_convert( - (struct _citrus_iconv *)(void *)handle, in, szin, out, szout, - 0, &ret); + (struct _citrus_iconv *)(void *)handle, + (const char **)(void *)in, szin, out, szout, 0, &ret); if (err) { errno = err; ret = (size_t)-1; @@ -106,7 +106,7 @@ iconv(iconv_t handle, const char **in, size_t *szin, char **out, size_t *szout) } size_t -__iconv(iconv_t handle, const char **in, size_t *szin, char **out, +__iconv(iconv_t handle, char **in, size_t *szin, char **out, size_t *szout, u_int32_t flags, size_t *invalids) { int err; @@ -118,8 +118,8 @@ __iconv(iconv_t handle, const char **in, size_t *szin, char **out, } err = _citrus_iconv_convert( - (struct _citrus_iconv *)(void *)handle, in, szin, out, szout, - flags, &ret); + (struct _citrus_iconv *)(void *)handle, + (const char **)(void *)in, szin, out, szout, flags, &ret); if (invalids) *invalids = ret; if (err) { diff --git a/lib/libintl/gettext_iconv.c b/lib/libintl/gettext_iconv.c index 94e6e12afaac..3b4b35af8934 100644 --- a/lib/libintl/gettext_iconv.c +++ b/lib/libintl/gettext_iconv.c @@ -1,4 +1,4 @@ -/* $NetBSD: gettext_iconv.c,v 1.8 2009/02/18 13:08:22 yamt Exp $ */ +/* $NetBSD: gettext_iconv.c,v 1.9 2019/10/24 18:18:00 kamil Exp $ */ /*- * Copyright (c) 2004 Citrus Project, @@ -184,7 +184,7 @@ again: srclen = origlen; dst = buffer; dstlen = bufferlen; - nvalid = iconv(cd, &src, &srclen, &dst, &dstlen); + nvalid = iconv(cd, __UNCONST(&src), &srclen, &dst, &dstlen); iconv_close(cd); if (nvalid == (size_t)-1) { diff --git a/lib/libipsec/config.h b/lib/libipsec/config.h index b454fa9f1b84..95688b4d0507 100644 --- a/lib/libipsec/config.h +++ b/lib/libipsec/config.h @@ -69,7 +69,7 @@ /* #define HAVE_GSSAPI */ /* Have iconv using const */ -#define HAVE_ICONV_2ND_CONST +/* #define HAVE_ICONV_2ND_CONST */ /* Define to 1 if you have the header file. */ #define HAVE_INTTYPES_H 1 diff --git a/sys/rump/dev/lib/libnetsmb/netsmb_user.c b/sys/rump/dev/lib/libnetsmb/netsmb_user.c index d50951a5cc3d..67d64bafef1c 100644 --- a/sys/rump/dev/lib/libnetsmb/netsmb_user.c +++ b/sys/rump/dev/lib/libnetsmb/netsmb_user.c @@ -1,4 +1,4 @@ -/* $NetBSD: netsmb_user.c,v 1.6 2019/03/26 08:56:17 bad Exp $ */ +/* $NetBSD: netsmb_user.c,v 1.7 2019/10/24 18:18:00 kamil Exp $ */ /* * Copyright (c) 2014 Takeshi Nakayama. @@ -27,7 +27,7 @@ #include #ifdef __KERNEL_RCSID -__KERNEL_RCSID(0, "$NetBSD: netsmb_user.c,v 1.6 2019/03/26 08:56:17 bad Exp $"); +__KERNEL_RCSID(0, "$NetBSD: netsmb_user.c,v 1.7 2019/10/24 18:18:00 kamil Exp $"); #endif #ifndef _KERNEL @@ -89,7 +89,8 @@ rumpcomp_netsmb_iconv_conv(void *handle, const char **inbuf, #ifdef __NetBSD__ int rv; - if (iconv((iconv_t)handle, inbuf, inbytesleft, outbuf, outbytesleft) + if (iconv((iconv_t)handle, __UNCONST(inbuf), inbytesleft, outbuf, + outbytesleft) == (size_t)-1) rv = errno; else diff --git a/usr.bin/iconv/iconv.c b/usr.bin/iconv/iconv.c index dd9a5d426600..686cfbca099b 100644 --- a/usr.bin/iconv/iconv.c +++ b/usr.bin/iconv/iconv.c @@ -1,4 +1,4 @@ -/* $NetBSD: iconv.c,v 1.19 2013/10/07 02:00:46 dholland Exp $ */ +/* $NetBSD: iconv.c,v 1.20 2019/10/24 18:18:00 kamil Exp $ */ /*- * Copyright (c)2003 Citrus Project, @@ -28,7 +28,7 @@ #include #if defined(LIBC_SCCS) && !defined(lint) -__RCSID("$NetBSD: iconv.c,v 1.19 2013/10/07 02:00:46 dholland Exp $"); +__RCSID("$NetBSD: iconv.c,v 1.20 2019/10/24 18:18:00 kamil Exp $"); #endif /* LIBC_SCCS and not lint */ #include @@ -115,8 +115,8 @@ do_conv(const char *fn, FILE *fp, const char *from, const char *to, int silent, out = outbuf; outbytes = OUTBUFSIZE; - ret = __iconv(cd, &in, &inbytes, &out, &outbytes, - flags, &inval); + ret = __iconv(cd, __UNCONST(&in), &inbytes, &out, + &outbytes, flags, &inval); serrno = errno; invalids += inval; if (outbytes < OUTBUFSIZE) diff --git a/usr.bin/mail/mime_codecs.c b/usr.bin/mail/mime_codecs.c index 8331a2021a96..5222640659ca 100644 --- a/usr.bin/mail/mime_codecs.c +++ b/usr.bin/mail/mime_codecs.c @@ -1,4 +1,4 @@ -/* $NetBSD: mime_codecs.c,v 1.11 2013/02/14 18:23:45 christos Exp $ */ +/* $NetBSD: mime_codecs.c,v 1.12 2019/10/24 18:18:00 kamil Exp $ */ /*- * Copyright (c) 2006 The NetBSD Foundation, Inc. @@ -52,7 +52,7 @@ #include #ifndef __lint__ -__RCSID("$NetBSD: mime_codecs.c,v 1.11 2013/02/14 18:23:45 christos Exp $"); +__RCSID("$NetBSD: mime_codecs.c,v 1.12 2019/10/24 18:18:00 kamil Exp $"); #endif /* not __lint__ */ #include @@ -85,7 +85,8 @@ mime_iconv(iconv_t cd, const char **inb, size_t *inbleft, char **outb, size_t *o { size_t sz = 0; - while ((sz = iconv(cd, inb, inbleft, outb, outbleft)) == (size_t)-1 + while ((sz = iconv(cd, __UNCONST(inb), inbleft, outb, outbleft)) + == (size_t)-1 && errno == EILSEQ) { if (*outbleft > 0) { *(*outb)++ = '?'; diff --git a/usr.bin/sdpquery/print.c b/usr.bin/sdpquery/print.c index 0d90d6b45388..3f21f5bd5ae4 100644 --- a/usr.bin/sdpquery/print.c +++ b/usr.bin/sdpquery/print.c @@ -1,4 +1,4 @@ -/* $NetBSD: print.c,v 1.22 2015/12/11 21:05:18 plunky Exp $ */ +/* $NetBSD: print.c,v 1.23 2019/10/24 18:18:00 kamil Exp $ */ /*- * Copyright (c) 2009 The NetBSD Foundation, Inc. @@ -30,7 +30,7 @@ */ #include -__RCSID("$NetBSD: print.c,v 1.22 2015/12/11 21:05:18 plunky Exp $"); +__RCSID("$NetBSD: print.c,v 1.23 2019/10/24 18:18:00 kamil Exp $"); #include #include @@ -920,7 +920,7 @@ print_codeset_string(const char *src, size_t srclen, const char *codeset) return; } - (void)iconv(ih, &src, &srclen, &dst, &dstlen); + (void)iconv(ih, __UNCONST(&src), &srclen, &dst, &dstlen); iconv_close(ih); diff --git a/usr.sbin/usbdevs/usbdevs.c b/usr.sbin/usbdevs/usbdevs.c index 00dd9a911f1a..8ad3a8f4a3cd 100644 --- a/usr.sbin/usbdevs/usbdevs.c +++ b/usr.sbin/usbdevs/usbdevs.c @@ -1,4 +1,4 @@ -/* $NetBSD: usbdevs.c,v 1.37 2019/09/21 16:22:25 gson Exp $ */ +/* $NetBSD: usbdevs.c,v 1.38 2019/10/24 18:18:00 kamil Exp $ */ /* * Copyright (c) 1998 The NetBSD Foundation, Inc. @@ -31,7 +31,7 @@ #include #ifndef lint -__RCSID("$NetBSD: usbdevs.c,v 1.37 2019/09/21 16:22:25 gson Exp $"); +__RCSID("$NetBSD: usbdevs.c,v 1.38 2019/10/24 18:18:00 kamil Exp $"); #endif #include @@ -94,7 +94,8 @@ u2t(const char *utf8str, char *termstr) if (ic != (iconv_t)-1) { insz = strlen(utf8str); outsz = MAXLEN - 1; - icres = iconv(ic, &utf8str, &insz, &termstr, &outsz); + icres = iconv(ic, __UNCONST(&utf8str), &insz, &termstr, + &outsz); if (icres != (size_t)-1) { *termstr = '\0'; return;