diff options
author | Luiz Angelo Daros de Luca <luizluca@gmail.com> | 2021-02-22 15:18:53 -0300 |
---|---|---|
committer | Luiz Angelo Daros de Luca <luizluca@gmail.com> | 2021-02-22 23:28:44 -0300 |
commit | 2014f1fd0b5a746ed6e6b959739977f59c2bbc13 (patch) | |
tree | daa01b0f675be09a62d564c79f6d0ad43fd7ed9d /utils/hplip/patches/060-fix-glibc.patch | |
parent | 9543f72c7755e87686c5ac1e46565d8268d1d0ff (diff) |
hplip: bump to 3.21.2
Patches refreshed:
* 010-libusb_fix.patch
* 020-remove_cups_dep_on_scan.patch
* 060-fix-uclibc.patch renamed to 060-fix-glibc.patch
Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
Diffstat (limited to 'utils/hplip/patches/060-fix-glibc.patch')
-rw-r--r-- | utils/hplip/patches/060-fix-glibc.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/utils/hplip/patches/060-fix-glibc.patch b/utils/hplip/patches/060-fix-glibc.patch new file mode 100644 index 000000000..6a35c743a --- /dev/null +++ b/utils/hplip/patches/060-fix-glibc.patch @@ -0,0 +1,15 @@ +Fix missing definition of uint64_t while compiling +under uclibc or glibc + +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 */
+
|