GNOME Bugzilla – Bug 789666
meson: dist po/meson.build
Last modified: 2017-10-30 22:46:00 UTC
The attached patch is needed to actually build with meson. I noticed a few other things: 2. The autotools builds installs include files for atspi-device-listener-private.h, atspi-event-listener-private.h, and atspi-private.h. meson doesn't but they are marked private so maybe that's ok for meson. 3. With autotools, the library symlinks are: libatspi.so -> libatspi.so.0.0.1 libatspi.so.0 -> libatspi.so.0.0.1 But with meson, it's: libatspi.so -> libatspi.so.0.0.1 libatspi.so.0.0.1 -> libatspi.so.0 I think autotools is more correct.
Created attachment 362579 [details] [review] meson: dist po/meson.build
This is with at-spi-core 2.26.1 on Ubuntu 17.10.
Comment on attachment 362579 [details] [review] meson: dist po/meson.build Sorry about that. Committed and released a 2.26.2. And it looks as though I was passing version where soversion should have been passed and vice versa; should be fixed now. Thanks for the report.
Thanks, the new release fixes my issues.