diff options
author | rumko <rumko@pkgsrc.org> | 2015-01-10 10:14:20 +0000 |
---|---|---|
committer | rumko <rumko@pkgsrc.org> | 2015-01-10 10:14:20 +0000 |
commit | 6c03941a6e6f45aa0861fcc05474f6f991a51a90 (patch) | |
tree | bd5cd75eb1c35ac81868ca3715c9ed506e99fad9 /audio | |
parent | 5d8fe52a57de0c1d15c3970e48b0514665d7e1d4 (diff) | |
download | pkgsrc-6c03941a6e6f45aa0861fcc05474f6f991a51a90.tar.gz |
audio/alsa-lib: on fbsd, we need sys/timespec.h for struct timespec
Ok@ wiz
Diffstat (limited to 'audio')
-rw-r--r-- | audio/alsa-lib/distinfo | 4 | ||||
-rw-r--r-- | audio/alsa-lib/patches/patch-ad | 17 |
2 files changed, 12 insertions, 9 deletions
diff --git a/audio/alsa-lib/distinfo b/audio/alsa-lib/distinfo index 09d4450989b..f5b98b72444 100644 --- a/audio/alsa-lib/distinfo +++ b/audio/alsa-lib/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.16 2014/06/26 20:23:14 asau Exp $ +$NetBSD: distinfo,v 1.17 2015/01/10 10:14:20 rumko Exp $ SHA1 (alsa-lib-1.0.27.2.tar.bz2) = 9cd50f4b5f07d5e7213dd1277b8673e677804cf8 RMD160 (alsa-lib-1.0.27.2.tar.bz2) = 6794e626affe9b6b6ec5fb64ff31384526b160c2 @@ -6,7 +6,7 @@ Size (alsa-lib-1.0.27.2.tar.bz2) = 906844 bytes SHA1 (patch-aa) = 5a8e9571ac6fb1f1f6cbd18d3859468a7b64076f SHA1 (patch-ab) = 4853bdbdd559c4fa6a9d00dca3e880022d7fc6ba SHA1 (patch-ac) = 47f5cad6c436b08161acd726090ec20a9cb50fc8 -SHA1 (patch-ad) = f0ee874e74966e6196996ecfe0637bef47fe1581 +SHA1 (patch-ad) = 10beb6cca7cf7c554a13337e8cded23e02bca2c8 SHA1 (patch-ae) = f1eced4561ded4e685f5e690393c7b93e4c42837 SHA1 (patch-af) = b5d0a48da183c0725367b08abb24bf1fed85cb30 SHA1 (patch-ag) = bea09d714bf75735f5be6d370f7242c34b73cb95 diff --git a/audio/alsa-lib/patches/patch-ad b/audio/alsa-lib/patches/patch-ad index df060f773ff..1b0b89a5c94 100644 --- a/audio/alsa-lib/patches/patch-ad +++ b/audio/alsa-lib/patches/patch-ad @@ -1,19 +1,22 @@ -$NetBSD: patch-ad,v 1.4 2014/03/25 23:06:07 asau Exp $ +$NetBSD: patch-ad,v 1.5 2015/01/10 10:14:20 rumko Exp $ ---- include/global.h.orig 2008-10-29 08:42:10.000000000 -0400 +--- include/global.h.orig 2013-07-08 12:31:36.000000000 +0000 +++ include/global.h -@@ -31,6 +31,10 @@ +@@ -30,6 +30,13 @@ + /* for timeval and timespec */ #include <time.h> - ++#if defined(__FreeBSD__) ++#include <sys/timespec.h> ++#endif ++ +#ifdef __sun +#include <alloca.h> +#endif -+ + #ifdef __cplusplus extern "C" { - #endif -@@ -133,7 +137,7 @@ int snd_shm_area_destroy(struct snd_shm_ +@@ -133,7 +140,7 @@ int snd_shm_area_destroy(struct snd_shm_ int snd_user_file(const char *file, char **result); |