Quote Originally Posted by slimittn View Post
The second solution :

Qt Code:
  1. win32:LIBS += -LC:/Windows/system32/mlang.dll
To copy to clipboard, switch view to plain text mode 
doesn't change anything.
That isn't quite what I wrote, but I expect that what I wrote will not work either.
Qt Code:
  1. // What I wrote explicitly lists the library file full path
  2. win32: LIBS += C:/Windows/system32/mlang.dll
  3. // and you could also try this search path (-L) and lib (-l) variation
  4. win32: LIBS += -LC:/Windows/system32 -lmlang
To copy to clipboard, switch view to plain text mode 

I also tried to make the import library and it also doesn't succeed . I think that the mlang dll isn't compatible with the dlltool of MinGW.

Or maybe i don't known how to do it.
I think the only option is to hand craft a DEF file and make the import library yourself. You'd need the docs for the mlang library (link in my earlier reply) and perserverance. You could start with this:
http://code.google.com/p/win-iconv/s.../mlang.def?r=5
and see how you get on.