diff options
author | thor <thor@pkgsrc.org> | 2021-05-25 09:08:10 +0000 |
---|---|---|
committer | thor <thor@pkgsrc.org> | 2021-05-25 09:08:10 +0000 |
commit | a1c9a4b480b562c7320abbfd49a514caeda89cb0 (patch) | |
tree | 352affa01f138472ab2a0c5feff00dddf3d35e77 /graphics | |
parent | 2a083b3031ef75c7c047b9d05b935c389538d7c1 (diff) | |
download | pkgsrc-a1c9a4b480b562c7320abbfd49a514caeda89cb0.tar.gz |
graphics/cairo: revert bfd option again, nia disabled that already
Sorry for not noticing that my patch conflicted with the Makefile
change that added --disable-symbol-lookup already. It is a fringe
feature that we really don't need.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/cairo/options.mk | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/graphics/cairo/options.mk b/graphics/cairo/options.mk index 83259cff326..fdb4a51f356 100644 --- a/graphics/cairo/options.mk +++ b/graphics/cairo/options.mk @@ -1,7 +1,7 @@ -# $NetBSD: options.mk,v 1.20 2021/04/23 16:56:21 thor Exp $ +# $NetBSD: options.mk,v 1.21 2021/05/25 09:08:10 thor Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.cairo -PKG_SUPPORTED_OPTIONS= x11 xcb bfd +PKG_SUPPORTED_OPTIONS= x11 xcb .if exists(/System/Library/Frameworks/Quartz.framework) PKG_SUPPORTED_OPTIONS+= quartz .endif @@ -57,12 +57,3 @@ CONFIGURE_ARGS+= --disable-quartz CONFIGURE_ARGS+= --disable-quartz-font CONFIGURE_ARGS+= --disable-quartz-image .endif - -# The symbol lookup feature uses libbfd from binutils, which -# is rather fragile when they decide to change the API again. -.if !empty(PKG_OPTIONS:Mbfd) -CONFIGURE_ARGS+= --enable-symbol-lookup -.else -CONFIGURE_ARGS+= --disable-symbol-lookup -.endif - |