From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dan Nicolaescu Newsgroups: gmane.emacs.devel Subject: autconf bcopy and bzero Date: Sat, 26 Jan 2008 10:33:30 -0800 Message-ID: <200801261833.m0QIXZ2R024158@sallyv1.ics.uci.edu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1201372600 9147 80.91.229.12 (26 Jan 2008 18:36:40 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 26 Jan 2008 18:36:40 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jan 26 19:36:59 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 1JIpti-0006wq-EG for ged-emacs-devel@m.gmane.org; Sat, 26 Jan 2008 19:36:58 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JIptH-00029w-KA for ged-emacs-devel@m.gmane.org; Sat, 26 Jan 2008 13:36:31 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JIptD-00028p-Gu for emacs-devel@gnu.org; Sat, 26 Jan 2008 13:36:27 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JIptC-00028d-OS for emacs-devel@gnu.org; Sat, 26 Jan 2008 13:36:27 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JIptC-00028a-Lg for emacs-devel@gnu.org; Sat, 26 Jan 2008 13:36:26 -0500 Original-Received: from sallyv1.ics.uci.edu ([128.195.1.109]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_3DES_EDE_CBC_SHA1:24) (Exim 4.60) (envelope-from ) id 1JIptC-0003BE-5c for emacs-devel@gnu.org; Sat, 26 Jan 2008 13:36:26 -0500 X-ICS-MailScanner-Watermark: 1201977222.46072@kIjSnZi5K+V72yFhM4cUpw Original-Received: from mothra.ics.uci.edu (mothra.ics.uci.edu [128.195.6.93]) by sallyv1.ics.uci.edu (8.13.7+Sun/8.13.7) with ESMTP id m0QIXZ2R024158 for ; Sat, 26 Jan 2008 10:33:40 -0800 (PST) Original-Lines: 24 X-ICS-MailScanner: Found to be clean X-ICS-MailScanner-SpamCheck: not spam, SpamAssassin (score=-1.44, required 5, autolearn=disabled, ALL_TRUSTED -1.44) X-ICS-MailScanner-From: dann@mothra.ics.uci.edu X-detected-kernel: by monty-python.gnu.org: Solaris 10 (beta) 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:87590 Archived-At: uclibc uses #define to define bcopy and bzero in emacs' configure script decides that bcopy and bzero are not available and then #defines them in config.h. Then all the files get warnings like this: In file included from frame.c:22: ./config.h:1159:1: warning: "bcopy" redefined In file included from ./config.h:1096, from frame.c:22: /usr/include/string.h:329:1: warning: this is the location of the previous definition In file included from frame.c:22: ./config.h:1162:1: warning: "bzero" redefined In file included from ./config.h:1096, from frame.c:22: /usr/include/string.h:330:1: warning: this is the location of the previous definition Can somebody that understands the autoconf magic involved please fix this? Thanks.