mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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. Spotted by: Yoshihiko Sarumaru MFC after: 1 days
This commit is contained in:
parent
b340491939
commit
46c57c6794
1 changed files with 3 additions and 3 deletions
|
|
@ -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 *);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue