From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from lists.gentoo.org ([140.105.134.102] helo=robin.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1J8YDS-0000Q1-CE for garchives@archives.gentoo.org; Sat, 29 Dec 2007 09:42:50 +0000 Received: from robin.gentoo.org (localhost [127.0.0.1]) by robin.gentoo.org (8.14.2/8.14.0) with SMTP id lBT9gi1s024464; Sat, 29 Dec 2007 09:42:44 GMT Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by robin.gentoo.org (8.14.2/8.14.0) with ESMTP id lBT9ghfN024458 for ; Sat, 29 Dec 2007 09:42:43 GMT Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 2C62C65CBA for ; Sat, 29 Dec 2007 09:42:43 +0000 (UTC) Received: from vapier by stork.gentoo.org with local (Exim 4.60) (envelope-from ) id 1J8YDJ-0008CD-OT for gentoo-commits@lists.gentoo.org; Sat, 29 Dec 2007 09:42:41 +0000 From: "Mike Frysinger (vapier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, vapier@gentoo.org Subject: [gentoo-commits] gentoo commit in xml/htdocs/proj/en/base/embedded/handbook: cross-compiling-packages.xml X-VCS-Repository: gentoo X-VCS-Files: cross-compiling-packages.xml X-VCS-Directories: xml/htdocs/proj/en/base/embedded/handbook X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: Sender: Mike Frysinger Date: Sat, 29 Dec 2007 09:42:41 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@gentoo.org X-Archives-Salt: 7d8c3597-8e34-4de4-b199-ef5f160db864 X-Archives-Hash: 72bf646734a101ff2957ab60902fd6cc vapier 07/12/29 09:42:41 Modified: cross-compiling-packages.xml Log: suggestion to force common autoconf tests when cross-compiling Revision Changes Path 1.3 xml/htdocs/proj/en/base/embedded/handbook/cross-compiling-packages.xml file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/base/embedded/handbook/cross-compiling-packages.xml?rev=1.3&view=markup plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/base/embedded/handbook/cross-compiling-packages.xml?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/base/embedded/handbook/cross-compiling-packages.xml?r1=1.2&r2=1.3 Index: cross-compiling-packages.xml =================================================================== RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/base/embedded/handbook/cross-compiling-packages.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- cross-compiling-packages.xml 24 Dec 2007 20:26:21 -0000 1.2 +++ cross-compiling-packages.xml 29 Dec 2007 09:42:41 -0000 1.3 @@ -1,7 +1,7 @@ - + @@ -130,6 +130,19 @@ # ln -s /usr/portage/profiles/uclibc/ppc SYSROOT/etc/make.profile +

+There are some additional tests you should override for configure scripts. To +do this, simply export a few variables to force the test to get the answer it +should. This will help prevent bloat in packages which add local functions to +workaround issues it assumes your system has because it could not run the test. +

+ +
+export ac_cv_func_malloc_0_nonnull=yes
+export ac_cv_func_calloc_0_nonnull=yes
+export ac_cv_func_realloc_0_nonnull=yes
+
+ -- gentoo-commits@gentoo.org mailing list