1
0
mirror of https://git.familie-radermacher.ch/linux/ptouch-print.git synced 2025-05-13 23:32:59 +00:00

Add different libusb include path for FreeBSD

This commit is contained in:
Ed Maste 2024-02-03 16:46:53 -05:00 committed by Dominic Radermacher
parent ad4e1541de
commit 8aaeecd84b

View File

@ -18,7 +18,11 @@
*/ */
#include <stdint.h> #include <stdint.h>
#ifdef __FreeBSD__
#include <libusb.h>
#else
#include <libusb-1.0/libusb.h> #include <libusb-1.0/libusb.h>
#endif
struct _pt_tape_info { struct _pt_tape_info {
uint8_t mm; /* Tape width in mm */ uint8_t mm; /* Tape width in mm */