aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/md.rb
AgeCommit message (Collapse)Author
2012-10-10Fix missing keg-only on pre-Mountain Lion formulae.mbcoguno
Closes #15375. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-09-10Clean up MacOS version method usageJack Nagel
The MacOS.version? family of methods (other than "leopard?") are poorly defined and lead to confusing code. Replace them in formulae with more explicit comparisons. "MacOS.version" is a special version object that can be compared to numerics, symbols, and strings using the standard Ruby comparison methods. The old methods were moved to compat when the version comparison code was merged, and they must remain there "forever", but they should not be used in new code. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-07-28Added formula for md (1), which is missing from OS X Mountain LionSimon Heimlicher
Up to and including 10.7.4, OS X shipped with 'md' at '/usr/bin/md', a BSD utility to manage dependencies. Since OS X 10.8, 'md' is missing, which causes compilation of older software to fail with an error message along the lines of 'make: md: No such file or directory'. This formula uses the source for 'md' from OS X 10.7.4. Closes #13612. Signed-off-by: Misty De Meo <mistydemeo@gmail.com>