Skip to Content.
Sympa Menu

shibboleth-dev - Re: [Shib-Dev] log4shib compile error

Subject: Shibboleth Developers

List archive

Re: [Shib-Dev] log4shib compile error


Chronological Thread 
  • From: Russ Allbery <>
  • To:
  • Subject: Re: [Shib-Dev] log4shib compile error
  • Date: Mon, 09 Jun 2008 20:06:24 -0700
  • Organization: The Eyrie

"E. Stuart Hicks"
<>
writes:

> +#ifdef __linux__ && __i386__

I think this doesn't work the way you intend, or at least isn't guaranteed
to work the way you intend. According to C99, this is a syntax error; the
syntax for #ifdef is:

# ifdef <identifier> <newline>

You instead want:

#if defined(__linux__) && defined(__i386__)

--
Russ Allbery
()
<http://www.eyrie.org/~eagle/>



Archive powered by MHonArc 2.6.16.

Top of Page