forked from speed-dreams/speed-dreams-code
The MacPorts include paths are like UNIX not like APPLE
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6098 30fe4595-0a0c-4342-8851-515496e4dcbd Former-commit-id: d5783118f74b3ab825a45337c224976265787f0a Former-commit-id: 408c02633167f61408f16afbfc9a42ad3ad3eb49
This commit is contained in:
parent
00f9da9278
commit
d68caa1049
4 changed files with 4 additions and 4 deletions
|
@ -37,7 +37,7 @@
|
||||||
# pragma warning (disable:4251) // class XXX needs a DLL interface ...
|
# pragma warning (disable:4251) // class XXX needs a DLL interface ...
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __APPLE__
|
#if defined(__APPLE__) && !defined(USE_MACPORTS)
|
||||||
# include <js.h>
|
# include <js.h>
|
||||||
#else
|
#else
|
||||||
# include <plib/js.h>
|
# include <plib/js.h>
|
||||||
|
|
|
@ -40,7 +40,7 @@ version : $Id$
|
||||||
#include <set>
|
#include <set>
|
||||||
#include <map>
|
#include <map>
|
||||||
|
|
||||||
#ifdef __APPLE__
|
#if defined(__APPLE__) && !defined(USE_MACPORTS)
|
||||||
#include <enet.h>
|
#include <enet.h>
|
||||||
#else
|
#else
|
||||||
#include <enet/enet.h>
|
#include <enet/enet.h>
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
#ifndef OPENAL_SOUND_H
|
#ifndef OPENAL_SOUND_H
|
||||||
#define OPENAL_SOUND_H
|
#define OPENAL_SOUND_H
|
||||||
|
|
||||||
#ifdef __APPLE__
|
#if defined(__APPLE__) && !defined(USE_MACPORTS)
|
||||||
#include"al.h"
|
#include"al.h"
|
||||||
#include"alc.h"
|
#include"alc.h"
|
||||||
#else
|
#else
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
#ifndef OPENAL_SOUND_INTERFACE_H
|
#ifndef OPENAL_SOUND_INTERFACE_H
|
||||||
#define OPENAL_SOUND_INTERFACE_H
|
#define OPENAL_SOUND_INTERFACE_H
|
||||||
|
|
||||||
#ifdef __APPLE__
|
#if defined(__APPLE__) && !defined(USE_MACPORTS)
|
||||||
#include"al.h"
|
#include"al.h"
|
||||||
#include"alc.h"
|
#include"alc.h"
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Reference in a new issue