plan9port/bin/osxvers

8 lines
150 B
Text
Raw Permalink Normal View History

2009-04-30 15:01:33 +00:00
#!/bin/sh
u=`uname`
case "$u" in
Darwin)
sw_vers -productVersion | awk -F. '{printf("CFLAGS=$CFLAGS -DOSX_VERSION=%d%02d%02d\n", $1, $2, $3)}'
2009-04-30 15:01:33 +00:00
esac