-
Notifications
You must be signed in to change notification settings - Fork 217
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
build: properly spell "Fontconfig", "Core Text", "macOS", "DirectWrite" #839
base: master
Are you sure you want to change the base?
Conversation
Keep using "CoreText" without the space when referring to the framework. "macOS" may be a newer name, but "OSX" was never the correct spelling.
These were capitalized for consistency with PKG_CHECK_MODULES, which used to print "checking for VARNAME", but this was changed to "checking for module >= version" or similar in pkg-config 0.29.2 (released 2017-03-20) and pkgconf 1.9.0 (released 2022-08-07).
configure.ac
Outdated
AC_ARG_ENABLE([directwrite], AS_HELP_STRING([--disable-directwrite], | ||
[disable DirectWrite support (Windows only) @<:@default=check@:>@])) | ||
AC_ARG_ENABLE([coretext], AS_HELP_STRING([--disable-coretext], | ||
[disable CoreText support (OSX only) @<:@default=check@:>@])) | ||
[disable Core Text support (macOS only) @<:@default=check@:>@])) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In fact, this isn’t correct: Core Text is also available on iOS and probably on Apple’s other platforms (watchOS, tvOS…) if libass can be built there at all. Should we change this to “macOS/iOS”? Or something else?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I usually just say "Apple" (ie "(Apple only)" here).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added a commit that switches to “Apple”.
No description provided.