1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 17:07:46 +02:00

Merge pull request #100 from jin-eld/fix-noav

Fix toxic build when toxav is not available
This commit is contained in:
David Mackay 2014-03-16 19:36:47 +00:00
commit b5cbd8e410
2 changed files with 5 additions and 0 deletions

View File

@ -440,10 +440,12 @@ if test "x$BUILD_AV" = "xyes"; then
],
[
AC_MSG_NOTICE([No A/V library; disabling A/V support])
BUILD_AV="no"
])
],
[
AC_MSG_NOTICE([No openal library; disabling A/V support])
BUILD_AV="no"
])
fi

View File

@ -33,7 +33,10 @@
#include "chat.h"
#include "friendlist.h"
#include "misc_tools.h"
#ifdef _SUPPORT_AUDIO
#include "audio_call.h"
#endif
extern char *DATA_FILE;
extern ToxWindow *prompt;