Prefix all env variable with "ARDOUR_"

In particular "CONCURRENCY" can be problematic. But in general
it's good practice to use a namespace prefix for app-specifics.
This commit is contained in:
Robin Gareus 2019-07-26 16:44:29 +02:00
parent b759fb883e
commit 78fc6d6651
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
6 changed files with 9 additions and 9 deletions

View file

@ -74,7 +74,7 @@ FastMeter::FastMeter (long hold, unsigned long dimen, Orientation o, int len,
last_peak_rect.x = 0;
last_peak_rect.y = 0;
no_rgba_overlay = ! Glib::getenv("NO_METER_SHADE").empty();
no_rgba_overlay = ! Glib::getenv("ARDOUR_NO_METER_SHADE").empty();
_clr[0] = clr0;
_clr[1] = clr1;