summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPete Batard <pbatard@gmail.com>2010-10-28 12:08:30 +0100
committerPete Batard <pbatard@gmail.com>2010-10-28 12:08:30 +0100
commite29d63d1c45a94236799b075049d04900432ab53 (patch)
tree313b1e2ba12c519b2e7f4425cc400b79fab6e5c8
parente4b000300044fcb76a8f9e812b888ee49d0c80a2 (diff)
downloadlibusb-pbh314.tar.gz
added missing user32.lib dependency for DDK samplespbh314
-rw-r--r--configure.ac2
-rw-r--r--examples/lsusb_sources1
-rw-r--r--examples/xusb_sources1
-rw-r--r--libusb/libusb_version.h2
4 files changed, 4 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 251eb39..2b64179 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
m4_define(LIBUSB_MAJOR, [1])
m4_define(LIBUSB_MINOR, [0])
m4_define(LIBUSB_MICRO, [8])
-m4_define(LIBUSB_NANO, [9313])
+m4_define(LIBUSB_NANO, [9314])
AC_INIT([libusb], LIBUSB_MAJOR.LIBUSB_MINOR.LIBUSB_MICRO, [libusb-devel@lists.sourceforge.net], [libusb], [http://www.libusb.org/])
diff --git a/examples/lsusb_sources b/examples/lsusb_sources
index ed7fe74..4ee2cbe 100644
--- a/examples/lsusb_sources
+++ b/examples/lsusb_sources
@@ -16,4 +16,5 @@ USE_MSVCRT=1
UMTYPE=console
INCLUDES=..\..\msvc;..\..;$(DDK_INC_PATH)
UMLIBS=..\..\libusb\os\obj$(BUILD_ALT_DIR)\*\libusb-1.0.lib
+TARGETLIBS=$(SDK_LIB_PATH)\user32.lib
SOURCES=..\lsusb.c
diff --git a/examples/xusb_sources b/examples/xusb_sources
index ea1b8f4..c6d935a 100644
--- a/examples/xusb_sources
+++ b/examples/xusb_sources
@@ -17,4 +17,5 @@ USE_MSVCRT=1
UMTYPE=console
INCLUDES=..\..\msvc;..\..;$(DDK_INC_PATH)
UMLIBS=..\..\libusb\os\obj$(BUILD_ALT_DIR)\*\libusb-1.0.lib
+TARGETLIBS=$(SDK_LIB_PATH)\user32.lib
SOURCES=..\xusb.c
diff --git a/libusb/libusb_version.h b/libusb/libusb_version.h
index 50744b2..a0d7018 100644
--- a/libusb/libusb_version.h
+++ b/libusb/libusb_version.h
@@ -24,6 +24,6 @@
#define LIBUSB_VERSION_MAJOR 1
#define LIBUSB_VERSION_MINOR 0
#define LIBUSB_VERSION_MICRO 8
-#define LIBUSB_VERSION_NANO 9313
+#define LIBUSB_VERSION_NANO 9314
#endif