From 8aaeecd84b619587dc3885dd4fea4b7310c82fd4 Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Sat, 3 Feb 2024 16:46:53 -0500 Subject: [PATCH] Add different libusb include path for FreeBSD --- include/ptouch.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/ptouch.h b/include/ptouch.h index c38a20a..5c007c7 100644 --- a/include/ptouch.h +++ b/include/ptouch.h @@ -18,7 +18,11 @@ */ #include +#ifdef __FreeBSD__ +#include +#else #include +#endif struct _pt_tape_info { uint8_t mm; /* Tape width in mm */