GNOME Bugzilla – Bug 740963
build: Add -lm dependency to clutter-gst-3.0.la
Last modified: 2014-12-01 14:08:26 UTC
Otherwise clutter-gst’s introspection build fails with: ./.libs/libclutter-gst-3.0.so: error: undefined reference to 'rint' ./.libs/libclutter-gst-3.0.so: error: undefined reference to 'cos' ./.libs/libclutter-gst-3.0.so: error: undefined reference to 'sin'
Created attachment 291881 [details] [review] build: Add -lm dependency to clutter-gst-3.0.la It uses rint(), cos() and sin().
Review of attachment 291881 [details] [review]: I would use `LT_LIB_M` in configure.ac, and then use `$(LIBM)` in the various Makefile.am, instead.
Created attachment 291883 [details] [review] build: Add -lm dependency to clutter-gst-3.0.la It uses rint(), cos() and sin().
Merged. Thanks for the super-fast review! Attachment 291883 [details] pushed as b9de8d4 - build: Add -lm dependency to clutter-gst-3.0.la