From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: jasonr (Jason Rumney) @ f2s.com Newsgroups: gmane.emacs.help Subject: Re: Can't build Emacs 21.3 on AIX 5.1 Date: 06 May 2004 19:50:49 +0100 Organization: freedom2surf Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1083870328 28477 80.91.224.253 (6 May 2004 19:05:28 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 6 May 2004 19:05:28 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu May 06 21:05:18 2004 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BLoBJ-0002WC-01 for ; Thu, 06 May 2004 21:05:17 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.30) id 1BLo9c-0004L5-JB for geh-help-gnu-emacs@m.gmane.org; Thu, 06 May 2004 15:03:32 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!newsmi-us.news.garr.it!newsmi-eu.news.garr.it!NewsITBone-GARR!feed.news.tiscali.de!newsfeed.tiscali.ch!stargate.gts.cz!news.freedom2surf.net!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 27 Original-NNTP-Posting-Host: jasonrumney.net Original-X-Trace: news.freedom2surf.net 1083869450 22249 195.137.77.250 (6 May 2004 18:50:50 GMT) Original-X-Complaints-To: abuse@freedom2surf.net Original-NNTP-Posting-Date: Thu, 6 May 2004 18:50:50 +0000 (UTC) X-Face: .PruP48JRO{Z6Rfz?YkZ>)zR+7!Up"`!1Cvq{fGd)@K; y]C:8r\CrJ^Mj\_U"9*WD2 I#zdK_#tw]y9*Y$?ge&b23Zt7zpknL{)F7Px4DVSY6b9dg[^VtkN-R_$YJ0cL''j[, }O#k{k| User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50 Original-Xref: shelby.stanford.edu gnu.emacs.help:123035 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.4 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:18322 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:18322 gwinn@uk.ibm.com writes: > on in the make with errors relating to header files. I noticed in the > output from configure that it correctly identifies the platform as > powerpc-ibm-aix5.1.0.0 but a few lines further on I see > > checking for AIX... no > > This is odd, so I looked in the configure script and it prints that > line when it finds that confdefs.h is missing. confdefs.h should not be missing. The configure script creates confdefs.h here: # AIX cpp loses on an empty file, so make sure it contains at least a newline. echo > confdefs.h It prints "checking for AIX... no" when a confdefs.c with the following contents run through the preprocessor does not contain "yes". #include "confdefs.h" #ifdef _AIX yes #endif So it seems that your compiler does not define _AIX.