From 57f4c2edaf58137ad3530a3f8f0e10b5b824b3f1 Mon Sep 17 00:00:00 2001 From: pmai <pmai> Date: Sun, 25 Jul 2004 18:27:53 +0000 Subject: [PATCH] Add support for Darwin/PPC when guessing the proper configurations. --- tools/create-target.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/create-target.sh b/tools/create-target.sh index 8339d99ae..6eda392a8 100755 --- a/tools/create-target.sh +++ b/tools/create-target.sh @@ -28,6 +28,7 @@ if [ $# = 1 ]; then case `uname -s` in SunOS) LISP_VARIANT=sun4_solaris_gcc ;; Linux) LISP_VARIANT=linux_gencgc ;; + Darwin) LISP_VARIANT=ppc_darwin ;; # Please fill in some other common systems *) echo "Sorry, please specify the desired Lisp variant." exit 1 ;; @@ -63,6 +64,7 @@ if [ "$MOTIF_VARIANT" = "" ]; then FreeBSD*) MOTIF_VARIANT=FreeBSD ;; NetBSD*) MOTIF_VARIANT=NetBSD ;; OpenBSD*) MOTIF_VARIANT=OpenBSD ;; + *_darwin) MOTIF_VARIANT=Darwin ;; sun4_solaris*) MOTIF_VARIANT=solaris ;; sun4c*) MOTIF_VARIANT=sun4c_411 ;; hp700*) MOTIF_VARIANT=hpux_cc ;; -- GitLab