diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2003-12-07 14:14:21 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2003-12-07 14:14:21 +0000 |
commit | 79487704b891acba2cde2e58f90694d2f6196c38 (patch) | |
tree | 8030215737c9a04aaff044435118d4005a7c27d5 /audio/mpiosh/files/patch-mpiosh-mpiosh.c | |
parent | o) Respect automatic pkg-plist extension for PORTDOCS files. (diff) |
Add mpiosh, a userland library and command-line tool
for Digitalway MPIO MP3 players.
PR: ports/56258
Submitted by: Sergey Akifyev <asa@gascom.ru>
Notes
Notes:
svn path=/head/; revision=95259
Diffstat (limited to '')
-rw-r--r-- | audio/mpiosh/files/patch-mpiosh-mpiosh.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/audio/mpiosh/files/patch-mpiosh-mpiosh.c b/audio/mpiosh/files/patch-mpiosh-mpiosh.c new file mode 100644 index 000000000000..5dfeadbc5ee7 --- /dev/null +++ b/audio/mpiosh/files/patch-mpiosh-mpiosh.c @@ -0,0 +1,21 @@ +--- mpiosh/mpiosh.c.orig Thu Nov 14 02:05:28 2002 ++++ mpiosh/mpiosh.c Thu Jun 19 19:59:10 2003 +@@ -39,6 +39,8 @@ + #include "readline.h" + #include "mpiosh.h" + ++#define SA_NOMASK 0 ++ + /* mpiosh core functions */ + void + mpiosh_init(void) +@@ -113,7 +115,9 @@ + + while ((line = readline(mpiosh.prompt))) { + if ((*line == '\0') || mpiosh_cancel) { ++#if 0 + rl_clear_pending_input (); ++#endif + mpiosh_cancel = 0; + mpiosh_cancel_ack = 0; + continue; |