mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
app-crypt/md6sum: Set CFLAGS+=-fcommon
This code is particularly evil in that it expressly omits a declaration of the compression_hook function and apparently fully intended to rely on the -fcommon mechanism to toggle debugging functions. See md6.h for the rationale. Package-Manager: Portage-2.3.99, Repoman-2.3.22 Closes: https://bugs.gentoo.org/706780 Signed-off-by: Jeroen Roovers <jer@gentoo.org>
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
inherit flag-o-matic
|
||||
|
||||
DESCRIPTION="A C implementation of MD6"
|
||||
HOMEPAGE="https://groups.csail.mit.edu/cis/md6"
|
||||
@@ -16,3 +17,8 @@ PATCHES=(
|
||||
"${FILESDIR}/${P}-cflags.patch"
|
||||
"${FILESDIR}/${P}-format-security.patch"
|
||||
)
|
||||
|
||||
src_configure() {
|
||||
append-cflags -fcommon # bug #706780
|
||||
default
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user