aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/compat/ENV/std.rb
blob: beca4ed6f42aff6451528395fa314d5df97f422c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
module Stdenv
  def fast
    odisabled "ENV.fast"
  end

  def O4
    odisabled "ENV.O4"
  end

  def Og
    odisabled "ENV.Og"
  end

  def gcc_4_0_1
    odisabled "ENV.gcc_4_0_1", "ENV.gcc_4_0"
  end

  def gcc
    odisabled "ENV.gcc", "ENV.gcc_4_2"
  end

  def libpng
    odisabled "ENV.libpng", "ENV.x11"
  end
end