Skip to content

Commit

Permalink
Fix include of libusb.h in wrappers/cpp/libfreenect.hpp
Browse files Browse the repository at this point in the history
Otherwise fails to build on systems with libusb.h provided outside of versioned
directory, e.g. on kFreeBSD.  This "bug" was introduced after initial
changes of similar kind in e.g. 713c715 and 8219750

Signed-off-by: Yaroslav Halchenko <[email protected]>
  • Loading branch information
yarikoptic committed Nov 1, 2013
1 parent 5eed1f0 commit a8f7a4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wrappers/cpp/libfreenect.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include <sstream>
#include <map>
#include <pthread.h>
#include <libusb-1.0/libusb.h>
#include <libusb.h>

namespace Freenect {
class Noncopyable {
Expand Down

0 comments on commit a8f7a4d

Please sign in to comment.