Browse Source

Please review. Added experimental Darwin unofficial support. Included Miles Egan's guessos patch as interim code predating an official GNU shtool release.

master
Michael Schloh von Bennewitz 23 years ago committed by Ralf S. Engelschall
parent
commit
6bc1355b7f
  1. 3
      openpkg/aux.prereq.sh
  2. 4
      openpkg/shtool

3
openpkg/aux.prereq.sh

@ -88,6 +88,9 @@ case $platform in
*-hpux* )
support=maybe
;;
*-darwin* )
support=maybe
;;
esac
case $support in
yes ) support="Congratulations: officially supported" ;;

4
openpkg/shtool

@ -2529,6 +2529,10 @@ guessos )
esac
echo "${MACHINE}-apple-rhapsody${RELEASE}"; exit 0
;;
Darwin:*:*:*)
MACHINE=`uname -p`
echo "${MACHINE}-apple-darwin${RELEASE}"; exit 0
;;
"Mac OS":*:*:*)
MACHINE=`uname -p`
echo "${MACHINE}-apple-macos${RELEASE}"; exit 0

Loading…
Cancel
Save