[linux-audio-dev] defining a platform

From: derek holzer <derek@email-addr-hidden-i.net>
Date: Sat Dec 24 2005 - 13:08:09 EET

Hi all,

I hope this is a simple question. I'm trying to compile Rezound on OSX,
and I'm getting this:

../../../config/platform/platform.h:10:3: warning: #warning no platform
determined!

Which leads to some other troubles later on.

So I've created a config/platform/darwin.h file (based on the bsd.h
file) which starts like this:

#ifndef __rez_platform_darwin_H__
#define __rez_platform_darwin_H__

#if defined(__Darwin)
         #define rez_OS_DARWIN

#endif

And added OS_DARWIN to the platform.h file:

#ifndef __platform_H__
#define __platform_H__

#include "linux.h"
#include "solaris.h"
#include "bsd.h"
#include "darwin.h"

#if !defined(rez_OS_DARWIN) && !defined(rez_OS_LINUX) &&
!defined(rez_OS_SOLARIS) && !defined(rez_OS_BSD)
         #warning no platform determined!
#endif

#endif

But I still get the error. In the darwin.h file, I have tried various
different syntax for defining Darwin:

(__darwin), (darwin), __Darwin__), etc etc

With no result. Can anybody shed some light on the right way to define
the platform in this situation?

thx + happy new year,
derek

-- 
derek holzer ::: http://www.umatic.nl
---Oblique Strategy # 81:
"Go to an extreme, move back to a more comfortable place"
Received on Sat Dec 24 16:15:04 2005

This archive was generated by hypermail 2.1.8 : Sat Dec 24 2005 - 16:15:04 EET