diff options
| author | Eli Schwartz <eschwartz@archlinux.org> | 2022-02-22 17:39:35 -0500 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2022-03-01 12:13:24 -0800 |
| commit | 140d6aef04ecd4d1d1df49a04d591060b4fb7a7e (patch) | |
| tree | 494d0e5a873347085c3a47104db8ac3e961eb911 /mesonbuild/dependencies/dev.py | |
| parent | 23e767176e832768d9c1f8c87efbe2bda69ee1c1 (diff) | |
| download | meson-140d6aef04ecd4d1d1df49a04d591060b4fb7a7e.tar.gz | |
mark a bunch of dependencies with the version they were introduced
All these dependencies are impossible to find on versions of Meson older
than the ones they got custom lookups in, because they don't provide
pkg-config files. So they should not / cannot be reasonably used on
older versions, and it is easy to say "yep, these should emit a
FeatureNew for the versions they got added in".
Diffstat (limited to 'mesonbuild/dependencies/dev.py')
| -rw-r--r-- | mesonbuild/dependencies/dev.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/dependencies/dev.py b/mesonbuild/dependencies/dev.py index d31acbf1c..85beb4bd7 100644 --- a/mesonbuild/dependencies/dev.py +++ b/mesonbuild/dependencies/dev.py @@ -500,6 +500,7 @@ class ZlibSystemDependency(SystemDependency): class JDKSystemDependency(SystemDependency): def __init__(self, environment: 'Environment', kwargs: T.Dict[str, T.Any]): super().__init__('jdk', environment, kwargs) + self.feature_since = ('0.59.0', '') m = self.env.machines[self.for_machine] |
