From 3915f3c3488051550026a4fffdf43059ff958546 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 20 Jan 2008 17:30:24 +0000 Subject: *** empty log message *** --- coro.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'coro.c') diff --git a/coro.c b/coro.c index ebc9654..057008d 100644 --- a/coro.c +++ b/coro.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2001-2006 Marc Alexander Lehmann + * Copyright (c) 2001-2008 Marc Alexander Lehmann * * Redistribution and use in source and binary forms, with or without modifica- * tion, are permitted provided that the following conditions are met: @@ -68,8 +68,8 @@ static volatile void *coro_init_arg; static volatile coro_context *new_coro, *create_coro; /* what we really want to detect here is wether we use a new-enough version of GAS */ -/* instead, check for gcc 3 and ELF and hope for the best */ -#if __GNUC__ >= 3 && __ELF__ +/* instead, check for gcc 3, ELF and GNU/Linux and hope for the best */ +#if __GNUC__ >= 3 && __ELF__ && __linux__ # define HAVE_CFI 1 #endif -- cgit v1.2.3