diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2025-05-20 07:54:59 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2025-05-20 07:54:59 +0200 |
commit | 7a3814ff46a11da098906af8621571b1a323226e (patch) | |
tree | 0800b66f01f658f36465b7bccee597a844007f40 /debian/patches/0205-ftbfs_with_GCC-15.patch | |
parent | 651f9b36ffde7f47f11ac448937885561f5aa700 (diff) | |
parent | 6ffd301de6360ec09873597f8f672ac7df240c0a (diff) |
Merge branch 'release/debian/1.3.1-4'HEADdebian/1.3.1-4master
Diffstat (limited to 'debian/patches/0205-ftbfs_with_GCC-15.patch')
-rw-r--r-- | debian/patches/0205-ftbfs_with_GCC-15.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/debian/patches/0205-ftbfs_with_GCC-15.patch b/debian/patches/0205-ftbfs_with_GCC-15.patch new file mode 100644 index 0000000..54a7421 --- /dev/null +++ b/debian/patches/0205-ftbfs_with_GCC-15.patch @@ -0,0 +1,22 @@ +Description: Fix ftbfs with GCC-15 +Author: <name and email of author, optional> +Origin: https://gitlab.com/sane-project/backends/-/commit/f5736eb50c3be88428f7d629b20c5c514df85b82 +Bug: https://gitlab.com/sane-project/backends/-/issues/796 +Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1097841 +Last-Update: 2025-03-22 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +Index: trunk/backend/sm3600.h +=================================================================== +--- trunk.orig/backend/sm3600.h ++++ trunk/backend/sm3600.h +@@ -77,7 +77,8 @@ Start: 2.4.2001 + + /* ====================================================================== */ + +-typedef enum { false, true } TBool; ++#include <stdbool.h> ++typedef bool TBool; + + typedef SANE_Status TState; + |