Bug 285405 - graphics/libavif: needs math library
Summary: graphics/libavif: needs math library
Status: Closed DUPLICATE of bug 285403
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: --- Affects Only Me
Assignee: Po-Chuan Hsieh
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2025-03-14 13:56 UTC by Trond Endrestøl
Modified: 2025-03-15 13:02 UTC (History)
1 user (show)

See Also:
bugzilla: maintainer-feedback? (sunpoet)


Attachments
Patch for graphics/libavif/Makefile adding the math library (2.14 KB, patch)
2025-03-14 13:56 UTC, Trond Endrestøl
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Trond Endrestøl 2025-03-14 13:56:08 UTC
[ 96% 66/66] : && /usr/local/libexec/ccache/cc -O2 -pipe -fno-omit-frame-pointer  -fstack-protector-strong -fno-strict-aliasing -O2 -pipe -fno-omit-frame-pointer  -fstack-protector-strong -fno-strict-aliasing -DNDEBUG -fstack-protector-strong     -Xlinker --dependency-file=CMakeFiles/avifenc.dir/link.d CMakeFiles/avifenc.dir/apps/avifenc.c.o -o avifenc  -Wl,-rpath,/construction/xports/graphics/libavif/work/.build:/usr/local/lib:  libavif_apps.a  libavif.so.16.2.0  /usr/local/lib/libpng.so  /usr/lib/libz.so  /usr/local/lib/libjpeg.so && :
FAILED: avifenc
: && /usr/local/libexec/ccache/cc -O2 -pipe -fno-omit-frame-pointer  -fstack-protector-strong -fno-strict-aliasing -O2 -pipe -fno-omit-frame-pointer  -fstack-protector-strong -fno-strict-aliasing  -DNDEBUG -fstack-protector-strong     -Xlinker --dependency-file=CMakeFiles/avifenc.dir/link.d CMakeFiles/avifenc.dir/apps/avifenc.c.o -o avifenc  -Wl,-rpath,/construction/xports/graphics/libavif/work/.build:/usr/local/lib:  libavif_apps.a  libavif.so.16.2.0  /usr/local/lib/libpng.so  /usr/lib/libz.so  /usr/local/lib/libjpeg.so && :
ld: error: undefined symbol: round
>>> referenced by iccmaker.c
>>>               iccmaker.c.o:(avifGenerateRGBICC) in archive libavif_apps.a
>>> referenced by iccmaker.c
>>>               iccmaker.c.o:(avifGenerateRGBICC) in archive libavif_apps.a
>>> referenced by iccmaker.c
>>>               iccmaker.c.o:(avifGenerateRGBICC) in archive libavif_apps.a
>>> referenced 10 more times

ld: error: undefined symbol: roundf
>>> referenced by iccmaker.c
>>>               iccmaker.c.o:(avifGenerateRGBICC) in archive libavif_apps.a
>>> referenced by iccmaker.c
>>>               iccmaker.c.o:(avifGenerateGrayICC) in archive libavif_apps.a
cc: error: linker command failed with exit code 1 (use -v to see invocation)
Comment 1 Trond Endrestøl 2025-03-14 13:56:55 UTC
Created attachment 258664 [details]
Patch for graphics/libavif/Makefile adding the math library
Comment 2 Vladimir Druzenko freebsd_committer freebsd_triage 2025-03-14 19:32:21 UTC
*** This bug has been marked as a duplicate of bug 285403 ***
Comment 3 commit-hook freebsd_committer freebsd_triage 2025-03-15 13:02:31 UTC
A commit in branch main references this bug:

URL: https://cgit.FreeBSD.org/ports/commit/?id=1e99b807283ac2743600d0db0832c97e8fcaa4db

commit 1e99b807283ac2743600d0db0832c97e8fcaa4db
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2025-03-15 13:01:11 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2025-03-15 13:01:11 +0000

    graphics/libavif: Fix build with non-default options

    libavif uses round/roundf which is in the math library.
    It builds fine with default options because libm is brought in via its dependencies.
    Therefore, we add it to LDFLAGS explicitly.

    PR:             285403, 285405
    Reported by:    many

 graphics/libavif/Makefile | 1 +
 1 file changed, 1 insertion(+)