Skip to content
Snippets Groups Projects
Commit 57f4c2ed authored by pmai's avatar pmai
Browse files

Add support for Darwin/PPC when guessing the proper configurations.

parent be291d61
No related branches found
No related tags found
No related merge requests found
...@@ -28,6 +28,7 @@ if [ $# = 1 ]; then ...@@ -28,6 +28,7 @@ if [ $# = 1 ]; then
case `uname -s` in case `uname -s` in
SunOS) LISP_VARIANT=sun4_solaris_gcc ;; SunOS) LISP_VARIANT=sun4_solaris_gcc ;;
Linux) LISP_VARIANT=linux_gencgc ;; Linux) LISP_VARIANT=linux_gencgc ;;
Darwin) LISP_VARIANT=ppc_darwin ;;
# Please fill in some other common systems # Please fill in some other common systems
*) echo "Sorry, please specify the desired Lisp variant." *) echo "Sorry, please specify the desired Lisp variant."
exit 1 ;; exit 1 ;;
...@@ -63,6 +64,7 @@ if [ "$MOTIF_VARIANT" = "" ]; then ...@@ -63,6 +64,7 @@ if [ "$MOTIF_VARIANT" = "" ]; then
FreeBSD*) MOTIF_VARIANT=FreeBSD ;; FreeBSD*) MOTIF_VARIANT=FreeBSD ;;
NetBSD*) MOTIF_VARIANT=NetBSD ;; NetBSD*) MOTIF_VARIANT=NetBSD ;;
OpenBSD*) MOTIF_VARIANT=OpenBSD ;; OpenBSD*) MOTIF_VARIANT=OpenBSD ;;
*_darwin) MOTIF_VARIANT=Darwin ;;
sun4_solaris*) MOTIF_VARIANT=solaris ;; sun4_solaris*) MOTIF_VARIANT=solaris ;;
sun4c*) MOTIF_VARIANT=sun4c_411 ;; sun4c*) MOTIF_VARIANT=sun4c_411 ;;
hp700*) MOTIF_VARIANT=hpux_cc ;; hp700*) MOTIF_VARIANT=hpux_cc ;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment