projects
/
gentoo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
758b251
)
media-radio/cwdaemon: Fix missing headers for gcc>=5 (bug #569970)
author
Thomas Beierlein
<tomjbe@gentoo.org>
Tue, 29 Dec 2015 06:23:41 +0000
(07:23 +0100)
committer
Thomas Beierlein
<tomjbe@gentoo.org>
Tue, 29 Dec 2015 06:23:41 +0000
(07:23 +0100)
Thanks for reporting Toralf.
Package-Manager: portage-2.2.26
media-radio/cwdaemon/cwdaemon-0.10.2.ebuild
patch
|
blob
|
history
diff --git
a/media-radio/cwdaemon/cwdaemon-0.10.2.ebuild
b/media-radio/cwdaemon/cwdaemon-0.10.2.ebuild
index bb0475bff629840b9092e775cd7d9d648f561f83..c27eb1ba3290f80946f1de3cfe1d41ddfaeda469 100644
(file)
--- a/
media-radio/cwdaemon/cwdaemon-0.10.2.ebuild
+++ b/
media-radio/cwdaemon/cwdaemon-0.10.2.ebuild
@@
-4,6
+4,8
@@
EAPI=5
+inherit flag-o-matic
+
DESCRIPTION="A morse daemon for the parallel or serial port"
HOMEPAGE="http://cwdaemon.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
@@
-16,3
+18,9
@@
IUSE=""
RDEPEND=">=media-radio/unixcw-3.3.1"
DEPEND="$RDEPEND
virtual/pkgconfig"
+
+src_configure() {
+ # provides header info for getaddrinfo() with C99 (bug 569970)
+ append-cppflags -D_GNU_SOURCE
+ econf
+}