I have the libpng rpm package installed on Centos linux which includes:
/usr/lib64/libpng.so.3.49.0
/usr/lib64/libpng.so.3 #softlink to libpng.so.3.49.0
I use software that uses:
/usr/lib64/libpng.so
Is it better to install the libpng-devel package which creates the /usr/lib64/libpng.so softlink such that this softlink will get updated when the libpng package gets updated? (I don't need to actually compile anything so I only need the soft link.)
Or is it better to manually create the softlink knowing that if the libpng package eventually gets updated the softlink won't work and may need to be recreated?
Or is their another way besides these first two ways that should be used instead?