From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Masatake YAMATO Newsgroups: gmane.emacs.devel Subject: Re: GTK version checked in. Date: Mon, 20 Jan 2003 07:56:48 +0900 (JST) Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <20030120.075648.112295700.jet@gyve.org> References: <200301192253.h0JMrmDU011470@stubby.bodenonline.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1043022033 21033 80.91.224.249 (20 Jan 2003 00:20:33 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 20 Jan 2003 00:20:33 +0000 (UTC) Cc: emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18aPfy-0005T2-00 for ; Mon, 20 Jan 2003 01:20:30 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 18aPqb-0006Pw-00 for ; Mon, 20 Jan 2003 01:31:29 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18aPgZ-0002Tj-0A for emacs-devel@quimby.gnus.org; Sun, 19 Jan 2003 19:21:07 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18aPfc-0001Ob-00 for emacs-devel@gnu.org; Sun, 19 Jan 2003 19:20:08 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18aPeo-0008O4-00 for emacs-devel@gnu.org; Sun, 19 Jan 2003 19:19:19 -0500 Original-Received: from r-maa.spacetown.ne.jp ([210.130.136.40]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18aPea-000822-00 for emacs-devel@gnu.org; Sun, 19 Jan 2003 19:19:04 -0500 Original-Received: from localhost (h219-110-075-082.catv01.itscom.jp [219.110.75.82]) by r-maa.spacetown.ne.jp (8.11.6) with ESMTP id h0K0IqY25515; Mon, 20 Jan 2003 09:18:53 +0900 (JST) Original-To: jan.h.d@swipnet.se In-Reply-To: <200301192253.h0JMrmDU011470@stubby.bodenonline.com> X-Mailer: Mew version 2.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Emacs development discussions. List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:10876 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:10876 > I've checked in the GTK version. Great work! ./configure --with-x-toolkit=gtk works fine but ./configure --with-gtk reports: [...] checking for XScreenNumberOfScreen... yes checking for XSetWMProtocols... yes checking X11 version 6... 6 or newer checking X11 version 5... 5 or newer configure: error: Conflicting options, --with-gtk is incompatible with --with-x-toolkit= With using bashdb, I found that the value of USE_X_TOOLKIT is "maybe". It seems that you expect the value of it is "none". HAVE_GTK=no if test "${with_gtk}" = "yes" || test "$USE_X_TOOLKIT" = "gtk"; then if test "$USE_X_TOOLKIT" != "none"; then { { echo "$as_me:$LINENO: error: Conflicting options, --with-gtk is incompatible with --with-x-toolkit=${with_x_toolkit}" >&5 echo "$as_me: error: Conflicting options, --with-gtk is incompatible with --with-x-toolkit=${with_x_toolkit}" >&2;} { (exit 1); exit 1; }; }; fi .... Masatake YAMATO