diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2022-10-11 04:26:34 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2022-10-11 04:56:03 -0400 |
commit | 9dc96ba4b5fe632eb7239f1f8b7a58ff3f2d4078 (patch) | |
tree | 14af05fb8626941aa5b35f7c9cd3eee1ddbcf954 /x11-misc/dclock | |
parent | www-apache/pwauth: pass -std=gnu89 (diff) | |
download | gentoo-9dc96ba4b5fe632eb7239f1f8b7a58ff3f2d4078.tar.gz gentoo-9dc96ba4b5fe632eb7239f1f8b7a58ff3f2d4078.tar.bz2 gentoo-9dc96ba4b5fe632eb7239f1f8b7a58ff3f2d4078.zip |
x11-misc/dclock: pass -std=gnu89
Does not build with `clang -std=c2x`, early workaround for
when this will become a default.
(not actively hunting for these, merely revisiting packages
previously looked at for clang16 even if not an issue "yet").
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'x11-misc/dclock')
-rw-r--r-- | x11-misc/dclock/dclock-2.2.2_p12.ebuild | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/x11-misc/dclock/dclock-2.2.2_p12.ebuild b/x11-misc/dclock/dclock-2.2.2_p12.ebuild index 40e1bc5b5574..6ff7ea856b37 100644 --- a/x11-misc/dclock/dclock-2.2.2_p12.ebuild +++ b/x11-misc/dclock/dclock-2.2.2_p12.ebuild @@ -45,6 +45,8 @@ src_prepare() { } src_configure() { + append-cflags -std=gnu89 # old codebase, incompatible with c2x + if use xft; then append-cppflags \ -DXFT_SUPPORT \ |