mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 13:50:38 -04:00
- 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
13 lines
405 B
Text
13 lines
405 B
Text
--- configure.orig 2021-08-07 07:33:50 UTC
|
|
+++ configure
|
|
@@ -12642,8 +12642,8 @@ echo "$as_me: error:
|
|
" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
- CFLAGS="$CFLAGS `$FREETYPE_CONFIG $freetypeconf_args --cflags`"
|
|
- LIBS="$LIBS `$FREETYPE_CONFIG $freetypeconf_args --libs`"
|
|
+ CFLAGS="$CFLAGS `pkg-config freetype2 --cflags`"
|
|
+ LIBS="$LIBS `pkg-config freetype2 --libs`"
|
|
fi
|
|
|
|
SDL_VERSION=1.2.4
|