#!/bin/sh
osversion=`sw_vers -productVersion | sed 's/\(10\.[0-9]*\).*/\1/'`
if test "$osversion" != "10.3"; then
    exit 112
fi
if ! test -f /System/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/config/Makefile; then
    exit 113
fi
exit 0
