don't be too pedantic on the OpenAL checks
This commit is contained in:
parent
22063d7e6b
commit
d708f3ecd8
2 changed files with 3 additions and 3 deletions
|
@ -62,7 +62,7 @@ script:
|
||||||
export CPPFLAGS="-fprofile-arcs -ftest-coverage";
|
export CPPFLAGS="-fprofile-arcs -ftest-coverage";
|
||||||
export LIBS="-lgcov";
|
export LIBS="-lgcov";
|
||||||
./autogen.sh;
|
./autogen.sh;
|
||||||
./configure --enable-debug agi_cv_with_openal=yes || cat config.log;
|
./configure --enable-debug || cat config.log;
|
||||||
make -j2;
|
make -j2;
|
||||||
make test || travis_terminate 1;
|
make test || travis_terminate 1;
|
||||||
coveralls --exclude vendor --exclude src --exclude build --exclude tools --exclude libaegisub/windows > /dev/null;
|
coveralls --exclude vendor --exclude src --exclude build --exclude tools --exclude libaegisub/windows > /dev/null;
|
||||||
|
|
|
@ -339,9 +339,9 @@ AS_IF([test x$with_openal != xno], [
|
||||||
#endif
|
#endif
|
||||||
int main(void) {
|
int main(void) {
|
||||||
ALCdevice *device = alcOpenDevice(0);
|
ALCdevice *device = alcOpenDevice(0);
|
||||||
if (!device) return 1;
|
|
||||||
ALCcontext *context = alcCreateContext(device, 0);
|
ALCcontext *context = alcCreateContext(device, 0);
|
||||||
if (!context) return 1;
|
alcDestroyContext(context);
|
||||||
|
alcCloseDevice(device);
|
||||||
return 0;
|
return 0;
|
||||||
} ])
|
} ])
|
||||||
])
|
])
|
||||||
|
|
Loading…
Reference in a new issue