diff options
author | Michele Calgaro <[email protected]> | 2025-02-02 12:03:48 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-02-02 12:05:49 +0900 |
commit | 0bf733ec1780acd7d7f0122559029e09001b840e (patch) | |
tree | fd6d09a2b4b2d7615d560a4b01c064b30f632664 /src/libs/sqlite2 | |
parent | 9ad3e885302f163bbfff3458270dfd015301af90 (diff) | |
download | digikam-0bf733ec1780acd7d7f0122559029e09001b840e.tar.gz digikam-0bf733ec1780acd7d7f0122559029e09001b840e.zip |
Fix FTBFS with gcc 15. This resolves issue #44
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/libs/sqlite2')
-rw-r--r-- | src/libs/sqlite2/shell.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/libs/sqlite2/shell.c b/src/libs/sqlite2/shell.c index 2d99603a..dd3d9456 100644 --- a/src/libs/sqlite2/shell.c +++ b/src/libs/sqlite2/shell.c @@ -25,6 +25,9 @@ # include <pwd.h> # include <unistd.h> # include <sys/types.h> +#else +/* Make sure isatty() has a prototype */ +extern int isatty(int); #endif #if defined(HAVE_READLINE) && HAVE_READLINE==1 @@ -38,10 +41,6 @@ # define stifle_history(X) #endif -/* Make sure isatty() has a prototype. -*/ -extern int isatty(); - /* ** The following is the open SQLite database. We make a pointer ** to this database a static variable so that it can be accessed |