| Summary: | Debian patch: Linking with -lm | ||
|---|---|---|---|
| Product: | SDL_ttf | Reporter: | manuel.montezelo |
| Component: | misc | Assignee: | Sam Lantinga <slouken> |
| Status: | RESOLVED FIXED | QA Contact: | Sam Lantinga <slouken> |
| Severity: | normal | ||
| Priority: | P2 | CC: | hasufell |
| Version: | unspecified | ||
| Hardware: | Other | ||
| OS: | Linux | ||
|
Description
manuel.montezelo
2012-01-27 12:15:21 UTC
Could you please try to take again a look at this patch? Fixing it upstream should be straightforward and harmless and it would make easier for packagers to not have to carry the patch release after release. Gentoo is going to apply this too, however adding "-lm" to LDFLAGS is not the way to go. --- a/Makefile.am +++ b/Makefile.am @@ -35,6 +35,7 @@ -release $(LT_RELEASE) \ -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) endif +libSDL2_ttf_la_LIBADD = @MATHLIB@ pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = SDL2_ttf.pc Fixed, thanks! http://hg.libsdl.org/SDL_ttf/rev/e826b2504c66 |