mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
configure: add missing AC_LANG_PROGRAM call to DirectShow tests
https://bugzilla.gnome.org/show_bug.cgi?id=681952
This commit is contained in:
parent
ce221fdbdd
commit
0c5893c0fa
1 changed files with 2 additions and 2 deletions
|
@ -567,7 +567,7 @@ AG_GST_CHECK_FEATURE(DIRECTSHOW, [DirectShow plug-in], winks, [
|
||||||
LDFLAGS="$LDFLAGS $DIRECTX_LDFLAGS"
|
LDFLAGS="$LDFLAGS $DIRECTX_LDFLAGS"
|
||||||
LIBS="$LIBS -lole32 -luuid -lstrmiids"
|
LIBS="$LIBS -lole32 -luuid -lstrmiids"
|
||||||
AC_MSG_CHECKING(for DirectShow LDFLAGS)
|
AC_MSG_CHECKING(for DirectShow LDFLAGS)
|
||||||
AC_LINK_IFELSE([
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <strmif.h>
|
#include <strmif.h>
|
||||||
#include <uuids.h>
|
#include <uuids.h>
|
||||||
|
@ -580,7 +580,7 @@ int main () {
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
],
|
]])],
|
||||||
[HAVE_DIRECTSHOW="yes"],
|
[HAVE_DIRECTSHOW="yes"],
|
||||||
[HAVE_DIRECTSHOW="no"])
|
[HAVE_DIRECTSHOW="no"])
|
||||||
AC_MSG_RESULT($HAVE_DIRECTSHOW)
|
AC_MSG_RESULT($HAVE_DIRECTSHOW)
|
||||||
|
|
Loading…
Reference in a new issue