diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2017-12-26 19:04:22 -0500 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2018-01-06 11:56:12 -0500 |
commit | 15490cb0fbb3a29dc024aa30b06fdcf06c23cf50 (patch) | |
tree | 5790f965c41e0a1a94e4eea9d2faefcecf8a6f09 /profiles/default | |
parent | dev-perl/PDF-Create: Drop old (diff) | |
download | gentoo-15490cb0fbb3a29dc024aa30b06fdcf06c23cf50.tar.gz gentoo-15490cb0fbb3a29dc024aa30b06fdcf06c23cf50.tar.bz2 gentoo-15490cb0fbb3a29dc024aa30b06fdcf06c23cf50.zip |
profiles: unset USE=session in default/linux/make.defaults.
The "session" USE flag has been enabled by default for all linux
profiles in default/linux/make.defaults since 2010. According to the
comment in that file, the flag was added for dev-lang/php where
session support is near-critical. But, now that we have an IUSE
default, the global setting is redundant.
This commit drops USE=session from the default/linux profile's
make.defaults, and also drops the (now unnecessary) override of that
flag in the features/hardened profile's make.defaults.
A few other packages with "session" in IUSE will be affected by this
change; however, the meaning of "session" varies wildly between the
packages that use it. Since the meaning of "session" is dependent on
the package in question, within the package itself (that is, with IUSE
defaults) is a better place to enable this flag by default.
Closes: https://bugs.gentoo.org/635742
Diffstat (limited to 'profiles/default')
-rw-r--r-- | profiles/default/linux/make.defaults | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/profiles/default/linux/make.defaults b/profiles/default/linux/make.defaults index 899637eb7f42..4d580b1ba06f 100644 --- a/profiles/default/linux/make.defaults +++ b/profiles/default/linux/make.defaults @@ -23,7 +23,7 @@ USE="${USE} seccomp" # These USE flags were originally inserted here because of PHP # and were later removed by me. Reinserting the USE flags again because they are # global USE flags that may be expected to be set by other packages. -USE="${USE} cli pcre session" +USE="${USE} cli pcre" # 2006/03/07 - Donnie Berkholz <dberkholz@gentoo.org> # Modular X: Support direct rendering by default |