* configure.ac (libhid): Turn from AC_TRY_RUN into
AC_TRY_COMPILE, so it also works for cross-compilation setups. git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1267 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
88ea96e5e5
commit
74e1b66a67
|
@ -1,3 +1,9 @@
|
||||||
|
2014-01-17 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
|
* configure.ac (libhid): Turn from AC_TRY_RUN into
|
||||||
|
AC_TRY_COMPILE, so it also works for cross-compilation
|
||||||
|
setups.
|
||||||
|
|
||||||
2014-01-16 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
2014-01-16 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
* dfu.c (dfu_init): Move the descriptor checks up into the
|
* dfu.c (dfu_init): Move the descriptor checks up into the
|
||||||
|
|
|
@ -215,11 +215,10 @@ LIBS="${LIBS} ${LIBHID}"
|
||||||
|
|
||||||
AH_TEMPLATE([HAVE_LIBHID],
|
AH_TEMPLATE([HAVE_LIBHID],
|
||||||
[Define if HID support is enabled via the Win32 DDK])
|
[Define if HID support is enabled via the Win32 DDK])
|
||||||
AC_TRY_RUN([#include <windows.h>
|
AC_TRY_LINK([#include <windows.h>
|
||||||
#include <setupapi.h>
|
#include <setupapi.h>
|
||||||
$HIDINCLUDE
|
$HIDINCLUDE],
|
||||||
|
[int
|
||||||
int
|
|
||||||
main(void)
|
main(void)
|
||||||
{
|
{
|
||||||
GUID hidGuid;
|
GUID hidGuid;
|
||||||
|
@ -227,7 +226,7 @@ main(void)
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
], [have_libhid=yes], [have_libhid=no], [have_libhid=no])
|
], [have_libhid=yes], [have_libhid=no])
|
||||||
AC_MSG_RESULT([$have_libhid])
|
AC_MSG_RESULT([$have_libhid])
|
||||||
if test x$have_libhid = xyes; then
|
if test x$have_libhid = xyes; then
|
||||||
AC_DEFINE([HAVE_LIBHID])
|
AC_DEFINE([HAVE_LIBHID])
|
||||||
|
|
Loading…
Reference in New Issue