libimobiledevice / libplist

A library to handle Apple Property List format in binary or XML
https://libimobiledevice.org
GNU Lesser General Public License v2.1
532 stars 304 forks source link

Fix for LibTool compalation and Python 3 libintl #197

Closed rickmark closed 2 years ago

rickmark commented 2 years ago

On Python 3.9 libpython no longer is linkable as a static library due to the fact that libpython now depends on libintl. This would mean we would have to import libintl to create a fully linked .la

It is better to be explicit that we are building a .so (really a .dylib but autotools uses linux file conventions) that doesn't have to be fully resolved.

Resolves #196

nikias commented 2 years ago

Merged after rebase.