diff options
-rw-r--r-- | app-crypt/mcrypt/mcrypt-2.6.8-r3.ebuild | 5 |
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) } |