From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: YAMAMOTO Mitsuharu Newsgroups: gmane.emacs.devel Subject: Re: install error on Mac OS X Date: Tue, 07 Nov 2006 11:05:53 +0900 Organization: Faculty of Science, Chiba University Message-ID: References: <86ac3cqbna.fsf@rakim.cfhp.org> <20061101.090235.63826615.kazu@iij.ad.jp> <86fyd2knb3.fsf@blue.stonehenge.com> <86wt6cnya2.fsf@blue.stonehenge.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Trace: sea.gmane.org 1162865191 2119 80.91.229.2 (7 Nov 2006 02:06:31 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 7 Nov 2006 02:06:31 +0000 (UTC) Cc: merlyn@stonehenge.com, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Nov 07 03:06:29 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1GhGM3-0000Vd-OR for ged-emacs-devel@m.gmane.org; Tue, 07 Nov 2006 03:06:24 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GhGM3-0002Zs-3g for ged-emacs-devel@m.gmane.org; Mon, 06 Nov 2006 21:06:23 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GhGLh-0002VL-Ve for emacs-devel@gnu.org; Mon, 06 Nov 2006 21:06:02 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GhGLg-0002Uf-HI for emacs-devel@gnu.org; Mon, 06 Nov 2006 21:06:01 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GhGLg-0002UZ-97 for emacs-devel@gnu.org; Mon, 06 Nov 2006 21:06:00 -0500 Original-Received: from [133.82.132.2] (helo=mathmail.math.s.chiba-u.ac.jp) by monty-python.gnu.org with esmtp (Exim 4.52) id 1GhGLb-0001sL-Kl; Mon, 06 Nov 2006 21:05:56 -0500 Original-Received: from church.math.s.chiba-u.ac.jp (church [133.82.132.36]) by mathmail.math.s.chiba-u.ac.jp (Postfix) with ESMTP id 464AD2CD5; Tue, 7 Nov 2006 11:05:53 +0900 (JST) Original-To: rms@gnu.org In-Reply-To: User-Agent: Wanderlust/2.14.0 (Africa) SEMI/1.14.6 (Maruoka) FLIM/1.14.6 (Marutamachi) APEL/10.6 Emacs/22.0.90 (sparc-sun-solaris2.8) MULE/5.0 (SAKAKI) 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:61891 Archived-At: >>>>> On Mon, 06 Nov 2006 16:00:25 -0500, Richard Stallman said: >> To use X should require a specific option. > What should we do for the case that --with-x-toolkit (or other > X-specific options) is specified without explicit --with-x or > --without-carbon? > It would make sense for --with-x-toolkit to imply --with-x. Could anyone who is familiar with autoconf check the following patch? YAMAMOTO Mitsuharu mituharu@math.s.chiba-u.ac.jp Index: configure.in =================================================================== RCS file: /cvsroot/emacs/emacs/configure.in,v retrieving revision 1.416 diff -c -r1.416 configure.in *** configure.in 4 Nov 2006 03:28:27 -0000 1.416 --- configure.in 7 Nov 2006 01:58:43 -0000 *************** *** 1779,1785 **** if test "${window_system}" = x11 && test "${HAVE_CARBON}" = yes; then if test "${with_carbon+set}" != set \ && test "${carbon_appdir_x+set}" != set; then ! HAVE_CARBON=no fi fi if test "${HAVE_CARBON}" = yes; then --- 1779,1791 ---- if test "${window_system}" = x11 && test "${HAVE_CARBON}" = yes; then if test "${with_carbon+set}" != set \ && test "${carbon_appdir_x+set}" != set; then ! for var in with_x with_x_toolkit with_gtk with_xim \ ! with_xpm with_jpeg with_tiff with_gif with_png; do ! if test "`eval 'echo \"${'\"$var\"'+set}\"'`" = set; then ! HAVE_CARBON=no ! break ! fi ! done fi fi if test "${HAVE_CARBON}" = yes; then