diff options
-rw-r--r-- | libc/misc/wchar/wchar.c | 3 | ||||
-rw-r--r-- | utils/Makefile.in | 3 | ||||
-rw-r--r-- | utils/iconv.c | 7 |
3 files changed, 10 insertions, 3 deletions
diff --git a/libc/misc/wchar/wchar.c b/libc/misc/wchar/wchar.c index 412c557eb..0704096a9 100644 --- a/libc/misc/wchar/wchar.c +++ b/libc/misc/wchar/wchar.c @@ -1196,6 +1196,9 @@ libc_hidden_proto(__iconv_codesets) #endif #if defined L_iconv || defined L_iconv_main +# ifdef L_iconv_main +static +# endif const unsigned char __iconv_codesets[] = "\x0a\xe0""WCHAR_T\x00" /* superset of UCS-4 but platform-endian */ #if __BYTE_ORDER == __BIG_ENDIAN diff --git a/utils/Makefile.in b/utils/Makefile.in index bb85be3ce..1714d2866 100644 --- a/utils/Makefile.in +++ b/utils/Makefile.in @@ -36,8 +36,7 @@ CFLAGS-ldd := $(CFLAGS-utils-shared) -DBUILDING_LINKAGE # Need CFLAGS-utils explicitly, because the source file is not located in utils CFLAGS-iconv := $(CFLAGS-utils) \ $(CFLAGS-utils-shared) \ - -I$(top_srcdir)libc/misc/wchar \ - -DL_iconv_main \ + -I$(top_srcdir)libc/misc/wchar CFLAGS-locale := $(CFLAGS-utils) CFLAGS-getconf :=$(CFLAGS-utils) \ diff --git a/utils/iconv.c b/utils/iconv.c index 04e2c32eb..a0260df93 100644 --- a/utils/iconv.c +++ b/utils/iconv.c @@ -108,7 +108,12 @@ #include <wchar.h> #include "wchar.c" /* for _UC_iconv_t and __iconv_codesets */ -extern const unsigned char __iconv_codesets[]; +#ifdef L_iconv_main +static +#else +extern +#endif +const unsigned char __iconv_codesets[]; #define IBUF BUFSIZ #define OBUF BUFSIZ |