diff options
author | garga <garga@FreeBSD.org> | 2005-08-30 01:31:14 +0800 |
---|---|---|
committer | garga <garga@FreeBSD.org> | 2005-08-30 01:31:14 +0800 |
commit | b4b3535cd009f4d537cfb6b1de87f11884e55abf (patch) | |
tree | c477badf9bed04fee9fb9797ce1fc28b78063241 /audio/mp-player/files | |
parent | 94a7ecd57c8b0edfecc4d0247af92f56a36f9b45 (diff) | |
download | freebsd-ports-gnome-b4b3535cd009f4d537cfb6b1de87f11884e55abf.tar.gz freebsd-ports-gnome-b4b3535cd009f4d537cfb6b1de87f11884e55abf.tar.zst freebsd-ports-gnome-b4b3535cd009f4d537cfb6b1de87f11884e55abf.zip |
Add mp-player 0.6, a curses based module tracker using libmikmod.
PR: ports/85304
Submitted by: Emanuel Haupt <ehaupt@critical.ch>
Diffstat (limited to 'audio/mp-player/files')
-rw-r--r-- | audio/mp-player/files/patch-mp.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/audio/mp-player/files/patch-mp.c b/audio/mp-player/files/patch-mp.c new file mode 100644 index 000000000000..d74b2eaeb994 --- /dev/null +++ b/audio/mp-player/files/patch-mp.c @@ -0,0 +1,19 @@ +--- mp.c.orig Fri Aug 26 09:59:36 2005 ++++ mp.c Fri Aug 26 09:59:57 2005 +@@ -27,7 +27,7 @@ + #include <sys/ioctl.h> + #include <sys/types.h> + #include <sys/stat.h> +-#include <linux/soundcard.h> ++#include <sys/soundcard.h> + + #include <curses.h> + #include <panel.h> +@@ -41,6 +41,7 @@ + ******************************************************************************/ + + #define VERSION "0.6" /* here it is */ ++#define NAME_MAX 255 + + + /*** Various. ***/ |