Skip to content

Commit

Permalink
mate-extra/mate-sensors-applet: Removing unnecessary config checks
Browse files Browse the repository at this point in the history
Removing unnecessary HAVE_STDIO_H and HAVE_LOCALE_H config checks. The
HAVE_LOCALE_H also makes fails to build on musl system.

Upstream issue: mate-desktop/mate-sensors-applet#123
Closes: https://bugs.gentoo.org/777375
Signed-off-by: brahmajit das <[email protected]>
Closes: gentoo#26197
Signed-off-by: Sam James <[email protected]>
  • Loading branch information
listout authored and thesamesam committed Jul 15, 2022
1 parent 06df308 commit 1bd3fa1
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Removing unnecessary HAVE_STDIO_H and HAVE_LOCALE_H config checks. The
# HAVE_LOCALE_H also makes fails to build on musl system.
# Upstream issue: https://github.com/mate-desktop/mate-sensors-applet/issues/123
# Closes: https://bugs.gentoo.org/777375
--- a/plugins/i2c-proc/i2c-proc-plugin.c
+++ b/plugins/i2c-proc/i2c-proc-plugin.c
@@ -20,13 +20,8 @@
#include <config.h>
#endif /* HAVE_CONFIG_H */

-#ifdef HAVE_STDIO_H
#include <stdio.h>
-#endif /* HAVE_STDIO_H */
-
-#ifdef HAVE_LOCALE_H
#include <locale.h>
-#endif

#include <glib.h>
#include <glib/gi18n.h>
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ DEPEND="${COMMON_DEPEND}

PDEPEND="hddtemp? ( dbus? ( sys-fs/udisks:2 ) )"

PATCHES=(
"${FILESDIR}/${PN}-1.24.1-dont-check-for-headers.patch"
)

src_configure() {
local udisks

Expand Down

0 comments on commit 1bd3fa1

Please sign in to comment.