Hi All, This is Yashodeep Mahapatra from Birla Institute Of Technology ,Mesra,India. I tried running wine on my machine after building and installing it. But the problem that I am facing is that my system just keeps running the process wine and displays Wine Shell Script in the window. Running wine winecfg also runs in the same way without giving any output on the screen. I also tried running notepad.exe but only a blank screen appeared. wine winecfg command led to this output:
err:menubuilder:convert_to_native_icon error 0x80004005 getting frame 0
err:wincodecs:PngDecoder_CreateInstance Failed reading PNG because unable to find libpng16.16.dylib
err:menubuilder:convert_to_native_icon error 0x80004005 getting frame 0
err:wincodecs:PngDecoder_CreateInstance Failed reading PNG because unable to find libpng16.16.dylib
err:menubuilder:convert_to_native_icon error 0x80004005 getting frame 0
err:wincodecs:PngDecoder_CreateInstance Failed reading PNG because unable to find libpng16.16.dylib
err:menubuilder:convert_to_native_icon error 0x80004005 getting frame 0 and nothing appeared on the screen. wine /programs/winetest/winetest.exe.so gave the following result:
err:wincodecs:PngDecoder_CreateInstance Failed reading PNG because unable to find libpng16.16.dylib
err:menubuilder:convert_to_native_icon error 0x80004005 getting frame 0
err:wincodecs:PngDecoder_CreateInstance Failed reading PNG because unable to find libpng16.16.dylib
err:menubuilder:convert_to_native_icon error 0x80004005 getting frame 0 Can anyone please help me?
Am 2017-04-11 um 11:13 schrieb Yashodeep Mahapatra:
err:menubuilder:convert_to_native_icon error 0x80004005 getting frame 0
err:wincodecs:PngDecoder_CreateInstance Failed reading PNG because unable to find libpng16.16.dylib
You're building / running on MacOS, and Wine doesn't find libpng, which was found when you built Wine. libpng is usually part of X11 on Mac. You have two options:
1) Set DYLD_FALLBACK_LIBRARY_PATH to the place where libpng is (usually somewhere in /opt/X11/lib if my memory serves me right)
2) build without PNG support by passing --without-png to configure. This is not recommended, PNG is a fairly essential image format.
Stefan
Hi,
Additionally, if possible, come over on #winehackers if you can. Mailing lists are good, but IMO not as quick for troubleshooting compilation issues like these over on IRC.
Cheers, Aaryaman
On Tue, Apr 11, 2017 at 6:27 PM, Stefan Dösinger stefandoesinger@gmail.com wrote:
Am 2017-04-11 um 11:13 schrieb Yashodeep Mahapatra:
err:menubuilder:convert_to_native_icon error 0x80004005 getting frame 0
err:wincodecs:PngDecoder_CreateInstance Failed reading PNG because unable to find libpng16.16.dylib
You're building / running on MacOS, and Wine doesn't find libpng, which was found when you built Wine. libpng is usually part of X11 on Mac. You have two options:
- Set DYLD_FALLBACK_LIBRARY_PATH to the place where libpng is (usually
somewhere in /opt/X11/lib if my memory serves me right)
- build without PNG support by passing --without-png to configure. This
is not recommended, PNG is a fairly essential image format.
Stefan