-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Description
Some Libiconv implementions define symbols such as iconv_open whereas others define libiconv_open.
Currently GNATColl-iconv use iconv_open style in binding support, for instance:
void *gnatcoll_iconv_open(char *tocode, char *fromcode){
iconv_t res = iconv_open(tocode, fromcode);
return (res == (iconv_t) -1) ? NULL : res;
}
As it was formerly explained in documentation:
If your application depends on having a working libiconv, you can specify –with-iconv or –with-iconv=PATH to GNATCOLL’s configure.
But configure is no more present.
How can I use Libiconv library with libiconv_open style?
Metadata
Metadata
Assignees
Labels
No labels