]> sigrok.org Git - libsigrokdecode.git/commitdiff
Fix build when no libusb-LA is compiled.
authorUwe Hermann <redacted>
Wed, 2 Feb 2011 09:25:52 +0000 (10:25 +0100)
committerUwe Hermann <redacted>
Wed, 2 Feb 2011 09:25:52 +0000 (10:25 +0100)
Until now the build would break if the user doesn't enable at least one
of the libusb1.0-based LAs. I.e., you could not compile only OLS, or
only the demo driver.

decode.c

index a6366b1e190f55cbd43285937a08fa364ae9dc2e..9f8c03408113ed45216b206f853431340dd76b04 100644 (file)
--- a/decode.c
+++ b/decode.c
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
+#include "config.h"
 #include <sigrokdecode.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */
 #include <stdio.h>
 #include <string.h>
 #include <dirent.h>
-#include <config.h>
 
 /* Re-define some string functions for Python >= 3.0. */
 #if PY_VERSION_HEX >= 0x03000000