diff options
Diffstat (limited to 'utils/hplip/patches/060-fix-uclibc.patch')
-rw-r--r-- | utils/hplip/patches/060-fix-uclibc.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/utils/hplip/patches/060-fix-uclibc.patch b/utils/hplip/patches/060-fix-uclibc.patch new file mode 100644 index 000000000..d941d83af --- /dev/null +++ b/utils/hplip/patches/060-fix-uclibc.patch @@ -0,0 +1,15 @@ +Fix missing definition of uint64_t while compiling +under uclibc + +https://bugs.launchpad.net/hplip/+bug/1826965 + +--- a/scan/sane/OrbliteScan/LinuxCommon.h ++++ b/scan/sane/OrbliteScan/LinuxCommon.h +@@ -2,6 +2,7 @@ + #define H_LinuxCommon
+
+ #include <sys/types.h>
++#include <stdint.h>
+
+ /* Common typedefs for Linux */
+
|