diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2023-02-02 13:46:01 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2023-02-02 13:48:38 +0000 |
commit | 577f0f83f6c6a11ad833dad1e268d3a7c65d8bbd (patch) | |
tree | 0b88e882f887c61f68598fe790b4bf702d55daf1 | |
parent | e01ae2321ae356437053e3f18ace8aa3ff46d344 (diff) | |
download | ports-577f0f83f6c6a11ad833dad1e268d3a7c65d8bbd.tar.gz ports-577f0f83f6c6a11ad833dad1e268d3a7c65d8bbd.zip |
graphics/birdfont: fix build on powerpc
ld: error: ./build/bin/libbirdgems.so: undefined reference to sqrt [--no-allow-shlib-undefined]
(cherry picked from commit 95c8e8dc31a0c1c9692ef646dd361421b8c4a1dd)
-rw-r--r-- | graphics/birdfont/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/graphics/birdfont/Makefile b/graphics/birdfont/Makefile index 2576db343364..f6a441daf1f3 100644 --- a/graphics/birdfont/Makefile +++ b/graphics/birdfont/Makefile @@ -35,6 +35,7 @@ CONFIGURE_ARGS= --cc="${CC}" \ --ldflags="${LDFLAGS}" \ --prefix="${PREFIX}" +LDFLAGS_powerpc= -lm _STRIPPABLE= bin/birdfont bin/birdfont-autotrace bin/birdfont-export \ bin/birdfont-import lib/libbirdfont.so.36.0 \ lib/libbirdgems.so.0.0 |