scottdraves / flam3

the original fractal flame renderer and genetic language
GNU General Public License v3.0
394 stars 73 forks source link

build: Fix undefined libm references. #33

Open orbea opened 3 years ago

orbea commented 3 years ago

When building flam3 with slibtool (https://dev.midipix.org/cross/slibtool) it fails with many references to libm indicating a missing -lm for libflam3_la_LIBADD. This happens because it uses -no-undefined and GNU libtool does not fail because it silently ignores -no-undefined.

Additionally I moved the dependencies to LIBADD where they should be and removed the -lm from the LDADD variables where its now redundant.

Please see this downstream issue: https://bugs.gentoo.org/779001

orbea commented 2 years ago

@scottdraves Is this project still active?