From: malattia at linux.it
To: devel@acpica.org
Subject: [Devel] [patch 5/5] Fix building on GNU/Hurd
Date: Mon, 05 Jul 2010 21:03:29 +0900 [thread overview]
Message-ID: <20100705120818.535578966@linux.it> (raw)
In-Reply-To: 20100705120324.581857151@linux.it
[-- Attachment #1: Type: text/plain, Size: 810 bytes --]
gcc on GNU/Hurd defines __GNU__, use the same includes as __linux__ as after all
it runs with the same userspace.
Signed-off-by: Mattia Dongili <malattia(a)linux.it>
---
include/platform/acenv.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: b/include/platform/acenv.h
===================================================================
--- a/include/platform/acenv.h 2010-07-04 11:18:17.506017933 +0900
+++ b/include/platform/acenv.h 2010-07-04 11:18:24.686018064 +0900
@@ -193,7 +193,7 @@
*
*****************************************************************************/
-#if defined(_LINUX) || defined(__linux__)
+#if defined(_LINUX) || defined(__linux__) || defined(__GNU__)
#include "aclinux.h"
#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
reply other threads:[~2010-07-05 12:03 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20100705120818.535578966@linux.it \
--to=devel@acpica.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.