summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2024-11-26 02:54:56 +0000
committerSam James <sam@gentoo.org>2024-11-26 02:55:25 +0000
commit10a63c37c1de76f654b504d9d8650270a030da4a (patch)
treebc494c03f9618b7c421d1f4633fb583d6c4adff3 /app-crypt/mcrypt
parentdev-vcs/git: add 2.47.1 (diff)
downloadgentoo-10a63c37c1de76f654b504d9d8650270a030da4a.tar.gz
gentoo-10a63c37c1de76f654b504d9d8650270a030da4a.tar.bz2
gentoo-10a63c37c1de76f654b504d9d8650270a030da4a.zip
app-crypt/mcrypt: build w/ -std=gnu17
We already apply a bunch of patches, not worth adding another for this. Closes: https://bugs.gentoo.org/943960 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-crypt/mcrypt')
-rw-r--r--app-crypt/mcrypt/mcrypt-2.6.8-r3.ebuild5
1 files changed, 5 insertions, 0 deletions
diff --git a/app-crypt/mcrypt/mcrypt-2.6.8-r3.ebuild b/app-crypt/mcrypt/mcrypt-2.6.8-r3.ebuild
index c22efa90f5b7..499e2efbd242 100644
--- a/app-crypt/mcrypt/mcrypt-2.6.8-r3.ebuild
+++ b/app-crypt/mcrypt/mcrypt-2.6.8-r3.ebuild
@@ -3,6 +3,8 @@
EAPI=7
+inherit flag-o-matic
+
DESCRIPTION="Replacement of the old unix crypt(1)"
HOMEPAGE="https://mcrypt.sourceforge.net/"
SRC_URI="https://downloads.sourceforge.net/mcrypt/${P}.tar.gz"
@@ -27,5 +29,8 @@ PATCHES=(
)
src_configure() {
+ # bug #943960
+ append-cflags -std=gnu17
+
econf $(use_enable nls)
}