svn commit: r295203 - stable/9/bin/csh
Hajimu UMEMOTO
ume at FreeBSD.org
Wed Feb 3 11:41:56 UTC 2016
Author: ume
Date: Wed Feb 3 11:41:55 2016
New Revision: 295203
URL: https://svnweb.freebsd.org/changeset/base/295203
Log:
MFC r295147:
Make dynamic link of libiconv from ports work again.
The symbols of libiconv from ports were changed to
have prefixed.
Since we have iconv in our libc these days, we don't
need it on 10.X and later. However, 9.X still need
this.
Modified:
stable/9/bin/csh/iconv_stub.c
Directory Properties:
stable/9/bin/csh/ (props changed)
Modified: stable/9/bin/csh/iconv_stub.c
==============================================================================
--- stable/9/bin/csh/iconv_stub.c Wed Feb 3 11:03:44 2016 (r295202)
+++ stable/9/bin/csh/iconv_stub.c Wed Feb 3 11:41:55 2016 (r295203)
@@ -36,9 +36,9 @@
#undef iconv_close
#define ICONVLIB "libiconv.so"
-#define ICONV_ENGINE "iconv"
-#define ICONV_OPEN "iconv_open"
-#define ICONV_CLOSE "iconv_close"
+#define ICONV_ENGINE "libiconv"
+#define ICONV_OPEN "libiconv_open"
+#define ICONV_CLOSE "libiconv_close"
typedef iconv_t iconv_open_t(const char *, const char *);
More information about the svn-src-stable-9
mailing list