diff options
author | Tobias C. Berner <tcberner@FreeBSD.org> | 2021-08-07 10:10:18 +0000 |
---|---|---|
committer | Tobias C. Berner <tcberner@FreeBSD.org> | 2021-08-07 10:11:32 +0000 |
commit | 81d97816103e3ce24b10d700d0de2df470a78eea (patch) | |
tree | df57839fdf005cbf50b7c6041ff7447a2d89a9ca | |
parent | 6923da4303f955134aaf0a8fd35393f1e38422b1 (diff) | |
download | ports-81d97816103e3ce24b10d700d0de2df470a78eea.tar.gz ports-81d97816103e3ce24b10d700d0de2df470a78eea.zip |
x11-clocks/dclock: prepare for freetype2 update
- freetype2 will no longer ship freetype-config (which was a pkg-config
wrapper) in the near future -- use pkg-config to gather the required
flags.
PR: 251512
-rw-r--r-- | x11-clocks/dclock/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11-clocks/dclock/Makefile b/x11-clocks/dclock/Makefile index 1005afd7bcf1..23757c3deb76 100644 --- a/x11-clocks/dclock/Makefile +++ b/x11-clocks/dclock/Makefile @@ -29,8 +29,8 @@ SOX_DESC= Install SOX to play audio SOX_RUN_DEPENDS= play:audio/sox XFT_USE= XORG=xft -XFT_CPPFLAGS= $$(freetype-config --cflags) -DXFT_SUPPORT -XFT_LDFLAGS= $$(freetype-config --libs) -lXft +XFT_CPPFLAGS= $$(pkg-config freetype2 --cflags) -DXFT_SUPPORT +XFT_LDFLAGS= $$(pkg-config freetype2 --libs) -lXft post-patch: .for i in Dclock.c Dclock.ad dclock.1 |