Questions tagged [libiconv]

81 questions
1
vote
0 answers

iconv does not convert bosnian literals on CentOS, but works on Windows

CentOS Case: When on http://urloment.com/ I post a code snippet of: "ćććć" I will get an output: Ä Like this: http://urloment.com/TG5vg1eC However, when I try the same thing on Windows, it will store the full value in my database table: "ćććć". On…
user1386320
1
vote
4 answers

How to resolve "langinfo.h not found" error when building libiconv on OSX for Android?

I try to build libiconv as an bibliothek accessible by an android-JNI. I've found a lot of example makefiles to include in my Android.mk. The problem is, every time I run ndk-build I get the following…
ashiaka
  • 3,994
  • 8
  • 32
  • 45
1
vote
1 answer

Mac OSX Lion and libiconv

I am running FreeSWITCH on Mac OSX Lion, after great pains getting it to compile. When I run the app I get this error: Reason: Incompatible library version: mod_XXX.so requires version 8.0.0 or later, but libiconv.2.dylib provides version…
Neil
  • 7,042
  • 9
  • 43
  • 78
0
votes
1 answer

Mac OS X Lion git push

On Mac OS X Lion 10.7.2 when i try to push to remote repository using ssh I get ld.so.1: git-receive-pack: fatal: libiconv.so.2: open failed: No such file or directory fatal: The remote end hung up unexpectedly libiconv.2.dylib files are found…
Troydm
  • 2,642
  • 3
  • 24
  • 35
0
votes
0 answers

Adding new Icons to MUI library

Is it possible to add new icons to MUI Library ? Please help us find some workarounds to add icons to the library. I coudld not able to find the appropiate icon for my product, so trying to add some custom MUI icons which is not availbale in MUI…
0
votes
0 answers

libiconv - cannot convert argument 2 from 'char **' to 'const char **'

I am trying to use libxml2 with libiconv to parse xml files. Now I faced encoding conversion issue. here is my function: char* convert_iconv(char* in) { char* out; size_t size, out_size; size = strlen(in) + 1; out_size = size * 2 -…
Kirumata
  • 165
  • 1
  • 9
0
votes
1 answer

Is GNU libraries able to link to dynamic MSVC runtime using autoconf build system when relying on gnulib?

My goal is to understand a GNU libraries autoconf build system. I am aware that libiconv can be build successfully using a crafted MS Visual Studio project with manully added source code files. So the question is more academical rather than…
Sergey
  • 13
  • 2
0
votes
3 answers

Every single Qt application crashes in one place?

Basically, all of the Qt applications I try to run will crash in one place: #0 0x0000000000000000 in ?? () #1 0x0000000100f4f570 in QIconvCodec::createIconv_t () #2 0x0000000100f5043b in QIconvCodec::convertToUnicode () #3 0x0000000100032c7e in…
Kristina
  • 15,859
  • 29
  • 111
  • 181
0
votes
1 answer

I am trying to get an app which runs on older Android phones, to run on a Galaxy S20 FE 5G. The logs from adb logcat say "libiconv.so" not found

I unzipped the .apk file, and the the file libiconv.so is in the correct folder "/lib/aarch64/". The log says the file was "not found". Here is the pertinent part of the logs 26 05-03 11:55:50.861 13141 13141 E AndroidRuntime: Process:…
user1807717
  • 21
  • 1
  • 5
0
votes
1 answer

Cannot rpm uninstall packages on AIX

it seems to be a dependency loop... # rpm -e libiconv-1.15-1.ppc error: Failed dependencies: libiconv.a(libiconv.so.2) is needed by (installed) gettext-0.19.8.1-1.ppc libiconv >= 1.15-1 is needed by (installed)…
zero_yu
  • 493
  • 5
  • 15
0
votes
2 answers

nokogiri.so LoadError maybe problem with libiconv on Solaris

I'm trying to get the Ruby gem "Nokogiri" running on a Solaris machine where I don't have root priviledges. What I've done so far: I've build my own ruby version (1.9.2p180) in my home directory tried to install nokogiri with "gem install…
andreas
  • 955
  • 7
  • 15
0
votes
1 answer

How to use libiconv correctly in C so that it would not report "Arg list too long"?

Code /*char* to wchar_t* */ wchar_t*strtowstr(char*str){ iconv_t cd=iconv_open("wchar_t","UTF-8"); if(cd==(iconv_t)-1){ return NULL; } size_t len1=strlen(str),len2=1024; …
Pudron
  • 66
  • 1
  • 7
0
votes
1 answer

iconv - retaining characters that cannot be converted to ascii

I'm using iconv's transliterate function to convert a unicode string to the nearest ASCII equivalent. However, the string contains some symbols which do not have an ASCII equivalent. I want to retain such symbols without dropping them. Currently,…
jeffreyveon
  • 13,400
  • 18
  • 79
  • 129
0
votes
1 answer

How to fix "builddir not recognized as an internal or external command." error when building libiconv?

I'm trying to compile libiconv under Windows 7 using mingw. I've been following this tutorial: https://blog.inventic.eu/2010/11/how-to-compile-open-source-libraries-under-windows-using-mingw/ However when I try to make, it throws an error. Here's a…
Derp
  • 33
  • 4
0
votes
1 answer

C convert iso ISO−8859-1 to UTF-8 with libconv

I need to encode Latin ISO−8859-1 chars into to UTF-8 (and the reverse operation too). I first used this answer Is there a way to convert from UTF8 to iso-8859-1? to perform the operation and it works; Now I want to use the libiconv which provides…
Guillaume
  • 5,488
  • 11
  • 47
  • 83