configure: fix use of AC_LANG_PROGRAM
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Fri, 9 Mar 2012 15:53:32 +0000 (15:53 +0000)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Fri, 9 Mar 2012 15:53:32 +0000 (15:53 +0000)
No need to include the int main () { } bits, the body is enough.

configure.ac

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