The lzma.library installer script doesn't work. This was rather annoying since I had to extract the archive to RAM: and modify the Install script before I could use it rather than just mounting with XADFileSystem and just running the Install script which is how I install this type of stuff usually.
Diff of changes I had to make:
*** Install.old 2011-04-11 22:08:34
--- Install 2011-04-11 22:08:37
***************
*** 7,13 ****
(copylib
(prompt "Copying lzma.library")
(help @copylib-help)
! (source "libs/lzma.library"))
(dest "libs:")
(confirm)
)
--- 7,13 ----
(copylib
(prompt "Copying lzma.library")
(help @copylib-help)
! (source "libs/lzma.library")
(dest "libs:")
(confirm)
)
***************
*** 26,32 ****
(copyfiles
(prompt "Copying stub library (liblzma.a)")
(help @copyfiles-help)
! (source "dev/lib/libwebp.a"))
(dest "SDK:local/newlib/lib")
(optional "nofail" "force")
)
--- 26,32 ----
(copyfiles
(prompt "Copying stub library (liblzma.a)")
(help @copyfiles-help)
! (source "dev/lib/liblzma.a")
(dest "SDK:local/newlib/lib")
(optional "nofail" "force")
)
***************
*** 34,40 ****
(copyfiles
(prompt "Copying library includes")
(help @copyfiles-help)
! (source "dev/include"))
(dest "SDK:local/common/include")
(optional "nofail" "force")
(all)
--- 34,40 ----
(copyfiles
(prompt "Copying library includes")
(help @copyfiles-help)
! (source "dev/include")
(dest "SDK:local/common/include")
(optional "nofail" "force")
(all)