mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 23:18:52 +00:00
configure: fix autogen.sh warnings
configure.ac:410: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
This commit is contained in:
parent
a199ad9001
commit
b13f63c224
1 changed files with 3 additions and 3 deletions
|
@ -416,18 +416,18 @@ AG_GST_CHECK_FEATURE(DIRECTSOUND, [DirectSound plug-in], directsoundsink, [
|
||||||
LDFLAGS="$LDFLAGS $DIRECTSOUND_LDFLAGS"
|
LDFLAGS="$LDFLAGS $DIRECTSOUND_LDFLAGS"
|
||||||
LIBS="$LIBS -ldsound -ldxerr9 -luser32"
|
LIBS="$LIBS -ldsound -ldxerr9 -luser32"
|
||||||
AC_MSG_CHECKING(for DirectSound LDFLAGS)
|
AC_MSG_CHECKING(for DirectSound LDFLAGS)
|
||||||
AC_LINK_IFELSE([
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <dxerr9.h>
|
#include <dxerr9.h>
|
||||||
#include <dsound.h>
|
#include <dsound.h>
|
||||||
|
]], [[
|
||||||
int main ()
|
int main ()
|
||||||
{
|
{
|
||||||
DXGetErrorString9 (0);
|
DXGetErrorString9 (0);
|
||||||
DirectSoundCreate(NULL, NULL, NULL);
|
DirectSoundCreate(NULL, NULL, NULL);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}]])
|
||||||
],
|
],
|
||||||
[HAVE_DIRECTSOUND="yes"],
|
[HAVE_DIRECTSOUND="yes"],
|
||||||
[HAVE_DIRECTSOUND="no"])
|
[HAVE_DIRECTSOUND="no"])
|
||||||
|
|
Loading…
Reference in a new issue