configure: fix use of AC_LANG_PROGRAM

No need to include the int main () { } bits, the body is enough.
This commit is contained in:
Tim-Philipp Müller 2012-03-09 15:53:32 +00:00
parent b13f63c224
commit e23264d570

View file

@ -421,13 +421,9 @@ AG_GST_CHECK_FEATURE(DIRECTSOUND, [DirectSound plug-in], directsoundsink, [
#include <dxerr9.h> #include <dxerr9.h>
#include <dsound.h> #include <dsound.h>
]], [[ ]], [[
int main ()
{
DXGetErrorString9 (0); DXGetErrorString9 (0);
DirectSoundCreate(NULL, NULL, NULL); DirectSoundCreate(NULL, NULL, NULL);
]])
return 0;
}]])
], ],
[HAVE_DIRECTSOUND="yes"], [HAVE_DIRECTSOUND="yes"],
[HAVE_DIRECTSOUND="no"]) [HAVE_DIRECTSOUND="no"])