From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tom Tromey Newsgroups: gmane.emacs.devel Subject: Re: 23.0.50; Image support disabled by default? Date: Sun, 27 Jan 2008 15:20:00 -0700 Message-ID: References: <87sl0o5wtf.GNU's_Not_Unix!%yavor@gnu.org> <479776B3.6010500@gnu.org> <8uodba7c7j.fsf@fencepost.gnu.org> Reply-To: Tom Tromey NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1201474822 23208 80.91.229.12 (27 Jan 2008 23:00:22 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 27 Jan 2008 23:00:22 +0000 (UTC) Cc: Glenn Morris , Yavor Doganov , Jason Rumney , emacs-devel@gnu.org To: YAMAMOTO Mitsuharu Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jan 28 00:00:41 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1JJGUR-0002Ie-HC for ged-emacs-devel@m.gmane.org; Mon, 28 Jan 2008 00:00:39 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JJGU0-0000W3-P1 for ged-emacs-devel@m.gmane.org; Sun, 27 Jan 2008 18:00:12 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JJGST-0008TB-Ee for emacs-devel@gnu.org; Sun, 27 Jan 2008 17:58:37 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JJGSS-0008Si-Oi for emacs-devel@gnu.org; Sun, 27 Jan 2008 17:58:37 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JJGSS-0008Sd-FP for emacs-devel@gnu.org; Sun, 27 Jan 2008 17:58:36 -0500 Original-Received: from mx1.redhat.com ([66.187.233.31]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JJGSH-000095-FK; Sun, 27 Jan 2008 17:58:25 -0500 Original-Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id m0RMwI1v026123; Sun, 27 Jan 2008 17:58:18 -0500 Original-Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [10.11.255.20]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id m0RMwImO018599; Sun, 27 Jan 2008 17:58:18 -0500 Original-Received: from opsy.redhat.com (ton.yyz.redhat.com [10.15.16.15]) by pobox.corp.redhat.com (8.13.1/8.13.1) with ESMTP id m0RMwHdg012372; Sun, 27 Jan 2008 17:58:17 -0500 Original-Received: by opsy.redhat.com (Postfix, from userid 500) id 9CD0B5089AC; Sun, 27 Jan 2008 15:20:00 -0700 (MST) X-Attribution: Tom In-Reply-To: (YAMAMOTO Mitsuharu's message of "Fri\, 25 Jan 2008 14\:00\:59 +0900") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.990 (gnu/linux) X-Scanned-By: MIMEDefang 2.58 on 172.16.52.254 X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 3) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:87665 Archived-At: >>>>> ">" == YAMAMOTO Mitsuharu writes: >> Setting CC on configure no longer works without `--without-gcc'. >> CC='gcc -arch ppc64' ./configure --without-gcc I don't see a reason to have --without-gcc at all. The normal approach is to have the user set CC on the command line and then have configure detect whether or not it is gcc; AC_PROG_CC will do this. So what do you think of this? Tom ChangeLog: 2008-01-27 Tom Tromey * INSTALL (DETAILED BUILDING AND INSTALLATION): Remove --with-gcc. * configure.in (--with-gcc): Remove. Index: INSTALL =================================================================== RCS file: /sources/emacs/emacs/INSTALL,v retrieving revision 1.126 diff -u -r1.126 INSTALL --- INSTALL 8 Jan 2008 20:46:40 -0000 1.126 +++ INSTALL 27 Jan 2008 22:57:45 -0000 @@ -270,11 +270,6 @@ PATH is the pathname to pkg-config. Note that GTK version 2.4 or newer is required for Emacs. -The `--with-gcc' option specifies that the build process should -compile Emacs using GCC. If you don't want to use GCC, specify -`--with-gcc=no'. If you omit this option, `configure' will search -for GCC in your path, and use it if present. - The Emacs mail reader RMAIL is configured to be able to read mail from a POP3 server by default. Versions of the POP protocol older than POP3 are not supported. For Kerberos-authenticated POP add Index: configure.in =================================================================== RCS file: /sources/emacs/emacs/configure.in,v retrieving revision 1.502 diff -u -r1.502 configure.in --- configure.in 27 Jan 2008 16:06:01 -0000 1.502 +++ configure.in 27 Jan 2008 22:57:46 -0000 @@ -70,11 +70,6 @@ m4_bpatsubst([with_$1], [[^0-9a-z]], [_])=yes])dnl ])dnl -dnl By default, neither off nor on. -AC_ARG_WITH([gcc], -[AS_HELP_STRING([--without-gcc], - [don't use GCC to compile Emacs even if GCC is found])]) - OPTION_DEFAULT_ON([pop],[don't support POP mail retrieval with movemail]) if test "$with_pop" = yes; then AC_DEFINE(MAIL_USE_POP) @@ -817,11 +812,6 @@ # Save the value of CFLAGS that the user specified. SPECIFIED_CFLAGS="$CFLAGS" -case ${with_gcc} in - "yes" ) CC="gcc" GCC=yes ;; - "no" ) : ${CC=cc} ;; - * ) -esac AC_PROG_CC # On Suns, sometimes $CPP names a directory.