mirror of
https://github.com/void-linux/void-packages.git
synced 2025-04-16 22:27:02 +02:00
conky: fix soundcard detection.
This commit is contained in:
parent
f65f1386c9
commit
3c70f492d2
2 changed files with 41 additions and 1 deletions
40
srcpkgs/conky/patches/issue464.patch
Normal file
40
srcpkgs/conky/patches/issue464.patch
Normal file
|
@ -0,0 +1,40 @@
|
|||
From 6b386589c0822bdaf5ed38d5f388cf902e0e749e Mon Sep 17 00:00:00 2001
|
||||
From: cmanv <erendili@yahoo.ca>
|
||||
Date: Tue, 27 Feb 2018 11:34:19 -0500
|
||||
Subject: [PATCH] Fix to soundcard.h issue (#464)
|
||||
|
||||
* Fix to issue #463
|
||||
|
||||
Add platform check for the soundcard header
|
||||
|
||||
* Update ConkyPlatformChecks.cmake
|
||||
|
||||
diff --git cmake/ConkyPlatformChecks.cmake b/cmake/ConkyPlatformChecks.cmake
|
||||
--- cmake/ConkyPlatformChecks.cmake
|
||||
+++ cmake/ConkyPlatformChecks.cmake
|
||||
@@ -30,8 +30,6 @@ check_include_files(sys/statfs.h HAVE_SYS_STATFS_H)
|
||||
check_include_files(sys/param.h HAVE_SYS_PARAM_H)
|
||||
check_include_files(sys/inotify.h HAVE_SYS_INOTIFY_H)
|
||||
check_include_files(dirent.h HAVE_DIRENT_H)
|
||||
-check_include_files("soundcard.h;sys/soundcard.h;linux/soundcard.h" HAVE_SOME_SOUNDCARD_H)
|
||||
-check_include_files("linux/soundcard.h" HAVE_LINUX_SOUNDCARD_H)
|
||||
|
||||
# Check for some functions
|
||||
check_function_exists(strndup HAVE_STRNDUP)
|
||||
@@ -88,6 +86,16 @@ if(NOT OS_LINUX AND NOT OS_FREEBSD AND NOT OS_OPENBSD AND NOT OS_DRAGONFLY
|
||||
endif(NOT OS_LINUX AND NOT OS_FREEBSD AND NOT OS_OPENBSD AND NOT OS_DRAGONFLY
|
||||
AND NOT OS_SOLARIS AND NOT OS_HAIKU)
|
||||
|
||||
+# Check for soundcard header
|
||||
+if(OS_LINUX)
|
||||
+ check_include_files("linux/soundcard.h" HAVE_SOME_SOUNDCARD_H)
|
||||
+ check_include_files("linux/soundcard.h" HAVE_LINUX_SOUNDCARD_H)
|
||||
+elseif(OS_OPENBSD)
|
||||
+ check_include_files("soundcard.h" HAVE_SOME_SOUNDCARD_H)
|
||||
+else(OS_LINUX)
|
||||
+ check_include_files("sys/soundcard.h" HAVE_SOME_SOUNDCARD_H)
|
||||
+endif(OS_LINUX)
|
||||
+
|
||||
if(BUILD_I18N AND OS_DRAGONFLY)
|
||||
set(conky_libs ${conky_libs} -lintl)
|
||||
endif(BUILD_I18N AND OS_DRAGONFLY)
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'conky'
|
||||
pkgname=conky
|
||||
version=1.10.8
|
||||
revision=1
|
||||
revision=2
|
||||
build_style=cmake
|
||||
configure_args="
|
||||
-DCMAKE_BUILD_TYPE=Release -DMAINTAINER_MODE=ON -DDOC_PATH=share/${pkgname}
|
||||
|
|
Loading…
Add table
Reference in a new issue