From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Glenn Morris Newsgroups: gmane.emacs.devel Subject: GNUstep build questions Date: Tue, 25 May 2010 04:15:16 -0400 Message-ID: <6cwrusmm7f.fsf@fencepost.gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1274775331 29906 80.91.229.12 (25 May 2010 08:15:31 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 25 May 2010 08:15:31 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue May 25 10:15:29 2010 connect(): No such file or directory 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.69) (envelope-from ) id 1OGpIL-0003GS-Jy for ged-emacs-devel@m.gmane.org; Tue, 25 May 2010 10:15:25 +0200 Original-Received: from localhost ([127.0.0.1]:36054 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OGpIK-00008z-EI for ged-emacs-devel@m.gmane.org; Tue, 25 May 2010 04:15:24 -0400 Original-Received: from [199.232.76.173] (port=55688 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OGpIF-00008k-Qg for emacs-devel@gnu.org; Tue, 25 May 2010 04:15:19 -0400 Original-Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1OGpIE-0001fJ-8n for emacs-devel@gnu.org; Tue, 25 May 2010 04:15:19 -0400 Original-Received: from fencepost.gnu.org ([140.186.70.10]:56728) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1OGpID-0001fD-WE for emacs-devel@gnu.org; Tue, 25 May 2010 04:15:18 -0400 Original-Received: from rgm by fencepost.gnu.org with local (Exim 4.69) (envelope-from ) id 1OGpIC-0004JU-Cu; Tue, 25 May 2010 04:15:16 -0400 X-Spook: Firefly Dateline brigand morse CBNRC SDI ASLET wire X-Ran: !t0j>l_V3Zo>K,7M8uExm=KK.kCN^Kf. 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:125231 Archived-At: src/Makefile.in uses this fragment for GNUstep builds: /* Pull in stuff from GNUstep-make. */ FOUNDATION_LIB=gnu GUI_LIB=gnu include @GNUSTEP_MAKEFILES@/Additional/base.make include @GNUSTEP_MAKEFILES@/Additional/gui.make shared=no AFAICS, all of this has no effect at all: 1) None of the stuff defined in gui.make is used in src/Makefile. 2) The only thing that is used from base.make is $CONFIG_SYSTEM_LIBS (via NS_IMPL_GNUSTEP_TEMACS_LDFLAGS). However, base.make only sets CONFIG_SYSTEM_LIBS if shared=no, and because the above fragment only sets shared _after_ including base.make, CONFIG_SYSTEM_LIBS is never set. So this stuff seems not to be doing anything useful. Is anyone actually building the GNUstep port and able to confirm this? TIA.