Displaying 1 result from an estimated 1 matches for "have_hiddev".
2006 Dec 04
1
Re: [nut-commits] svn commit r609 - trunk
...sure why; the HIDDEV macro is defined
> conditionally, and I definitely don't have hiddev on OS X. I will revisit this
> when I am more awake.
This just means that the following two lines:
AM_CONDITIONAL(HAVE_LIBUSB, test "${nut_have_libusb}" = "yes")
AM_CONDITIONAL(HAVE_HIDDEV, test -n "${linux_hiddev}")
are not allowed to appear inside "if ... fi". This makes sense, as
automake-conditionals have to be defined regardless. You have to move
these lines to after the section you "conditioned out".
-- Peter