From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JLmTN-0007Tw-0t for mharc-grub-devel@gnu.org; Sun, 03 Feb 2008 16:33:57 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JLmTJ-0007Ry-QE for grub-devel@gnu.org; Sun, 03 Feb 2008 16:33:53 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JLmTF-0007PQ-VL for grub-devel@gnu.org; Sun, 03 Feb 2008 16:33:51 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JLmTF-0007P0-Ir for grub-devel@gnu.org; Sun, 03 Feb 2008 16:33:49 -0500 Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JLmTE-0006qT-Uc for grub-devel@gnu.org; Sun, 03 Feb 2008 16:33:49 -0500 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1JLmT8-0004Dj-AO for grub-devel@gnu.org; Sun, 03 Feb 2008 21:33:42 +0000 Received: from adsl-69-234-224-38.dsl.irvnca.pacbell.net ([69.234.224.38]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 03 Feb 2008 21:33:42 +0000 Received: from wa1ter by adsl-69-234-224-38.dsl.irvnca.pacbell.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 03 Feb 2008 21:33:42 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: grub-devel@gnu.org From: walt Date: Sun, 03 Feb 2008 13:33:33 -0800 Organization: gmane Message-ID: <1202074413.560.7.camel@k9.localnet> Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: adsl-69-234-224-38.dsl.irvnca.pacbell.net X-Mailer: Evolution 2.12.3 Sender: news X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) Subject: [PATCH] to make grub2 compile on NetBSD X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: The development of GRUB 2 List-Id: The development of GRUB 2 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Feb 2008 21:33:54 -0000 NetBSD's gcc wants libgcc and libc to define __enable_execute_stack, but this is useless for a free-standing executable like grub. Define a dummy function in lieu of libgcc to supply __enable_execute_stack. Index: include/grub/mm.h =================================================================== RCS file: /sources/grub/grub2/include/grub/mm.h,v retrieving revision 1.8 diff -u -r1.8 mm.h --- include/grub/mm.h 21 Jul 2007 23:32:22 -0000 1.8 +++ include/grub/mm.h 3 Feb 2008 21:24:18 -0000 @@ -33,6 +33,7 @@ void EXPORT_FUNC(grub_free) (void *ptr); void *EXPORT_FUNC(grub_realloc) (void *ptr, grub_size_t size); void *EXPORT_FUNC(grub_memalign) (grub_size_t align, grub_size_t size); +void EXPORT_FUNC(__enable_execute_stack) (void); /* For NetBSD gcc */ /* For debugging. */ #if defined(MM_DEBUG) && !defined(GRUB_UTIL) Index: kern/mm.c =================================================================== RCS file: /sources/grub/grub2/kern/mm.c,v retrieving revision 1.19 diff -u -r1.19 mm.c --- kern/mm.c 23 Jan 2008 14:57:40 -0000 1.19 +++ kern/mm.c 3 Feb 2008 21:24:19 -0000 @@ -66,6 +66,12 @@ #include #include +/* Dummy symbol to make NetBSD gcc happy */ +void +__enable_execute_stack(void) +{ +} + #ifdef MM_DEBUG # undef grub_malloc # undef grub_realloc