1
0
Fork 0

A couple of hacks to fix cygwin compilation. These may not be the correct fix, but they prevent new cygwin users getting an almost instant compile error following make

This commit is contained in:
daveluff 2006-02-22 19:21:29 +00:00
parent 3407419c4e
commit 44a375520a
2 changed files with 8 additions and 2 deletions

View file

@ -6,8 +6,10 @@
# include <OpenAL/alc.h>
#else
# include <AL/al.h>
# include <AL/alc.h>
# include <AL/alext.h>
# include <AL/alc.h>
# ifndef __CYGWIN__
# include <AL/alext.h>
# endif
#endif
#ifndef AL_VERSION_1_1

View file

@ -1,4 +1,8 @@
// do some test relating to the concept of "up"
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <simgear/compiler.h>