steghide: fix gcc11 build

This commit is contained in:
Jerome Duval
2023-03-24 13:46:26 +01:00
parent b0cd111808
commit 431e7a0421
2 changed files with 40 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
From 0cfb3d091cc4cd236042c5c4b784f2f240e6a3b1 Mon Sep 17 00:00:00 2001 From 87cb97a99e1432c6e63f436a3c6eedbcff8ce2ba Mon Sep 17 00:00:00 2001
From: nys <33534144+nysnatuss@users.noreply.github.com> From: nys <33534144+nysnatuss@users.noreply.github.com>
Date: Fri, 29 Dec 2017 21:48:53 +0000 Date: Fri, 29 Dec 2017 21:48:53 +0000
Subject: fix steghide code Subject: fix steghide code
@@ -92,5 +92,42 @@ index 27b3d73..1c4023b
free (name) ; free (name) ;
return retval ; return retval ;
-- --
2.15.0 2.37.3
From bc7fef66be7fdc063cb62925609912e994780e0d Mon Sep 17 00:00:00 2001
From: Jerome Duval <jerome.duval@gmail.com>
Date: Fri, 24 Mar 2023 13:43:26 +0100
Subject: gcc11 fix
diff --git a/src/Arguments.h b/src/Arguments.h
index 018326c..1f907a7 100644
--- a/src/Arguments.h
+++ b/src/Arguments.h
@@ -100,7 +100,7 @@ class Arguments {
static const VERBOSITY Default_Verbosity = NORMAL ;
static const unsigned long Default_Radius = 0 ; // there is no default radius for all file formats
static const unsigned int Max_Algorithm = 3 ;
- static const float Default_Goal = 100.0 ;
+ static constexpr float Default_Goal = 100.0 ;
static const DEBUGCOMMAND Default_DebugCommand = NONE ;
static const bool Default_Check = false ;
static const unsigned int Default_DebugLevel = 0 ;
diff --git a/src/ProgressOutput.h b/src/ProgressOutput.h
index 3a235a3..394939f 100644
--- a/src/ProgressOutput.h
+++ b/src/ProgressOutput.h
@@ -64,7 +64,7 @@ class ProgressOutput {
**/
void done (float rate, float avgweight = NoAvgWeight) const ;
- static const float NoAvgWeight = -1.0 ;
+ static constexpr float NoAvgWeight = -1.0 ;
protected:
std::string vcompose (const char *msgfmt, va_list ap) const ;
--
2.37.3

View File

@@ -6,7 +6,7 @@ first-order statistical tests."
HOMEPAGE="http://steghide.sourceforge.net/" HOMEPAGE="http://steghide.sourceforge.net/"
COPYRIGHT="2001-2003 Stefan Hetzl" COPYRIGHT="2001-2003 Stefan Hetzl"
LICENSE="GNU GPL v2" LICENSE="GNU GPL v2"
REVISION="3" REVISION="4"
SOURCE_URI="https://downloads.sourceforge.net/steghide/steghide-$portVersion.tar.bz2" SOURCE_URI="https://downloads.sourceforge.net/steghide/steghide-$portVersion.tar.bz2"
CHECKSUM_SHA256="a2c7f879a3e22860879889106cc49e486000653f81448264affa0fd616a47da1" CHECKSUM_SHA256="a2c7f879a3e22860879889106cc49e486000653f81448264affa0fd616a47da1"
PATCHES="steghide-$portVersion.patchset" PATCHES="steghide-$portVersion.patchset"