From owner-cvs-all Tue Sep 28 18:24:56 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CEF6D14D48; Tue, 28 Sep 1999 18:24:53 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA48643; Tue, 28 Sep 1999 18:24:53 -0700 (PDT) (envelope-from steve@FreeBSD.org) Message-Id: <199909290124.SAA48643@freefall.freebsd.org> From: Steve Price Date: Tue, 28 Sep 1999 18:24:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/opendx/patches patch-ai Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/09/28 18:24:53 PDT Added files: graphics/opendx/patches patch-ai Log: Don't use 'cc -D${ARCH} -c foo.c' especially when '${ARCH} = alpha' and you have this in your code, 'double alpha[30];'. The preprocessor does what it's supposed to do and replaces all of occurrences of alpha with 1 and the compiler sees code like this 'double 1[10]' which it summarily yacks on. :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message