Libpng12.so.0

Questions about Wine on Linux
Locked
Phantom21123
Newbie
Newbie
Posts: 1
Joined: Wed Aug 29, 2018 10:47 am

Libpng12.so.0

Post by Phantom21123 »

Hey guys,
For the last 3 days I have been trying to get Eve Online working again. Seems with this last update it broke the launcher.
What I did:
Recompiled Wine: Yes prefix is in Wine32
Winecfg: Changed to Windoze XP; disabled dx3d11; installed corefonts, vcrun 2003;2005;2010
Installed Eve via windoze through wine
When trying to run it via counsel I get can not locate libpng12.so.0
I have tried: sudo apt install libpng12-dev and get that it is labeled obsolette or otherwise not available
I found through google a place to download libpng12, however I am at a lose as to how to move it where needed or otherwise have wine point to it to use it.

Help would be nice.
Thank you
Phantom
jkfloris
Level 12
Level 12
Posts: 3201
Joined: Thu Aug 14, 2014 10:10 am

Re: Libpng12.so.0

Post by jkfloris »

Recompiled Wine
Why did you recompile Wine? Do you want to add some patches?

A recent Wine version depends on libpng16. If you want an older Wine version use apt-cache to find your desired version

Code: Select all

$ apt-cache policy winehq-devel
...
  Version table:
     3.14.0~sid 500
        500 https://dl.winehq.org/wine-builds/debian sid/main amd64 Packages
     3.13.0~sid 500
        500 https://dl.winehq.org/wine-builds/debian sid/main amd64 Packages
     3.12.0~sid 500
        500 https://dl.winehq.org/wine-builds/debian sid/main amd64 Packages
     3.11.0~sid 500
        500 https://dl.winehq.org/wine-builds/debian sid/main amd64 Packages
     3.10.0~sid 500
        500 https://dl.winehq.org/wine-builds/debian sid/main amd64 Packages
     3.9.0~sid 500
        500 https://dl.winehq.org/wine-builds/debian sid/main amd64 Packages
     3.8.0~sid 500
        500 https://dl.winehq.org/wine-builds/debian sid/main amd64 Packages
     3.7.0~sid 500
        500 https://dl.winehq.org/wine-builds/debian sid/main amd64 Packages
     3.6.0~sid 500
...
 
use apt-get install package=number to install this version

Code: Select all

$ apt-get install winehq-devel=3.6.0~sid
Locked