From 2dedaeb11ee59fef992a536ae42d89ce7262c209 Mon Sep 17 00:00:00 2001 From: Kevin Layer <layer@franz.com> Date: Wed, 15 Jul 2009 09:54:00 -0700 Subject: [PATCH] error on 64-bit Mac OS X --- ChangeLog.n | 6 +++++- Makefile.macosx | 3 ++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog.n b/ChangeLog.n index 354ee13d..71fb5c0a 100644 --- a/ChangeLog.n +++ b/ChangeLog.n @@ -2,8 +2,12 @@ *** LEAVE THIS AT THE TOP OF THE FILE *** don't forget to change the version in utils/packages.lisp if you do anything user visible. - ******************************************************************************* + +2009-07-15 Kevin Layer <layer@gemini.franz.com> + + * Makefile.macosx: ppc => i386; error on 64-bit Mac OS X + 2009-06-29 Andreas Fuchs <afuchs@franz.com> * aclpc/acl-frames.lisp: Fix types and ff call arguments in diff --git a/Makefile.macosx b/Makefile.macosx index 0ff46cd2..501f1503 100644 --- a/Makefile.macosx +++ b/Makefile.macosx @@ -25,7 +25,8 @@ XLIB=-L/usr/X11R6/lib -lX11 XINCLUDES=-I/usr/X11R6/include -I/usr/local/motif/include ifeq ($(SIXTYFOURBIT),yes) -CFLAGS= -arch ppc64 -DAcl64Bit +$(error CLIM does not work on 64-bit Mac OS X yet.) +CFLAGS = -arch i386 -DAcl64Bit MAKE_SHARED = sh ../src/bin/make_shared.mac64 else ifeq ($(MACHINE),x86) -- GitLab