From owner-svn-src-head@FreeBSD.ORG Thu Jul 22 18:49:27 2010 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B31911065673; Thu, 22 Jul 2010 18:49:27 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A23038FC1C; Thu, 22 Jul 2010 18:49:27 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o6MInRVg031283; Thu, 22 Jul 2010 18:49:27 GMT (envelope-from rpaulo@svn.freebsd.org) Received: (from rpaulo@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o6MInR6Z031281; Thu, 22 Jul 2010 18:49:27 GMT (envelope-from rpaulo@svn.freebsd.org) Message-Id: <201007221849.o6MInR6Z031281@svn.freebsd.org> From: Rui Paulo Date: Thu, 22 Jul 2010 18:49:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r210385 - head/gnu/lib/libobjc X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jul 2010 18:49:27 -0000 Author: rpaulo Date: Thu Jul 22 18:49:27 2010 New Revision: 210385 URL: http://svn.freebsd.org/changeset/base/210385 Log: Disable building libobjc with clang as it's not yet supported. Submitted by: Dimitry Andric Modified: head/gnu/lib/libobjc/Makefile Modified: head/gnu/lib/libobjc/Makefile ============================================================================== --- head/gnu/lib/libobjc/Makefile Thu Jul 22 18:47:41 2010 (r210384) +++ head/gnu/lib/libobjc/Makefile Thu Jul 22 18:49:27 2010 (r210385) @@ -13,6 +13,9 @@ SRCS= archive.c class.c encoding.c gc.c nil_method.c NXConstStr.m Object.m objects.c Protocol.m sarray.c \ selector.c sendmsg.c thr.c thr-objc.c exception.c +# XXX: clang cannot compile libobjc yet +CC:=${CC:C/^cc|^clang/gcc/} + INCS= encoding.h hash.h objc-api.h objc-decls.h objc-list.h objc.h runtime.h \ sarray.h thr.h typedstream.h NXConstStr.h Object.h Protocol.h INCSDIR=${INCLUDEDIR}/objc