For example, this section means that compiling for a linux target will always require fontconfig to be available, even when the source feature is not enabled: https://github.com/servo/font-kit/blob/master/Cargo.toml#L61-L62
This means that eg. cross-compiling becomes more difficult, since you now need fontconfig compiled for the target system, even though you don't intend to use it.
For example, this section means that compiling for a linux target will always require
fontconfigto be available, even when thesourcefeature is not enabled: https://github.com/servo/font-kit/blob/master/Cargo.toml#L61-L62This means that eg. cross-compiling becomes more difficult, since you now need
fontconfigcompiled for the target system, even though you don't intend to use it.