diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2012-07-20 03:03:56 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2012-07-20 03:03:56 +0000 |
commit | a28a1142b4467171d6609f3ac9176c4d58c097a2 (patch) | |
tree | c7a3e61c5c5da998dd753fb51ff00dff21e0dd68 /audio/alsa-plugins/files/patch-arcam-av-arcam_av.c | |
parent | - Update to 3.11 (diff) |
- Update to 1.0.25
- Convert to new options framework
- alsa-plugins:
- Add option: ARIFF_OSS for FreeBSD-specific patch
- Revert ports/165247 per regression in ports/169767
- Unbreak arcam-av and usb_stream plugins
- While I'm here, pet portlint by removing ABI version number from LIB_DEPENDS
Changes: http://www.alsa-project.org/main/index.php/Changes_v1.0.24_v1.0.25
http://www.alsa-project.org/main/index.php/Changes_v1.0.23_v1.0.24
PR: ports/169841
Submitted by: Jan Beich <jbeich@tormail.org> (maintainer)
Notes
Notes:
svn path=/head/; revision=301209
Diffstat (limited to 'audio/alsa-plugins/files/patch-arcam-av-arcam_av.c')
-rw-r--r-- | audio/alsa-plugins/files/patch-arcam-av-arcam_av.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/audio/alsa-plugins/files/patch-arcam-av-arcam_av.c b/audio/alsa-plugins/files/patch-arcam-av-arcam_av.c new file mode 100644 index 000000000000..2826201f10a5 --- /dev/null +++ b/audio/alsa-plugins/files/patch-arcam-av-arcam_av.c @@ -0,0 +1,19 @@ +--- arcam-av/arcam_av.c.orig ++++ arcam-av/arcam_av.c +@@ -27,6 +27,7 @@ + #include <signal.h> + #include <stddef.h> + #include <stdio.h> ++#include <string.h> + #include <termios.h> + #include <unistd.h> + +@@ -37,6 +38,8 @@ + #include <sys/socket.h> + #include <sys/un.h> + ++#define AF_FILE AF_UNIX ++ + #define MIN(a, b) ((a) < (b) ? (a) : (b)) + #define MAX(a, b) ((a) > (b) ? (a) : (b)) + |