aboutsummaryrefslogtreecommitdiffstats
path: root/audio/ctronome/files
diff options
context:
space:
mode:
authorrm <rm@FreeBSD.org>2012-10-01 03:15:57 +0800
committerrm <rm@FreeBSD.org>2012-10-01 03:15:57 +0800
commitc583cd3fa53e8448fb0f2700ef5e9bea82aefaa8 (patch)
tree8a15507cca4e27654c176cdaa0985adb471519ea /audio/ctronome/files
parenta3cce0d1d88591ebbf87c3af81d54f3d3c8bf496 (diff)
downloadfreebsd-ports-gnome-c583cd3fa53e8448fb0f2700ef5e9bea82aefaa8.tar.gz
freebsd-ports-gnome-c583cd3fa53e8448fb0f2700ef5e9bea82aefaa8.tar.zst
freebsd-ports-gnome-c583cd3fa53e8448fb0f2700ef5e9bea82aefaa8.zip
- update to 0.5.4
- remove patch, applied upstream - add license (GPLv2) - remove indefinite article in COMMENT - move pkg-plist content into Makefile changelog: - fixed amd64 platform bug that caused ctronome to produce no sound on amd64 platform due to incorrect width of integers used in bitwise operations, thanks to Dmitry Kazarov - http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/170207
Diffstat (limited to 'audio/ctronome/files')
-rw-r--r--audio/ctronome/files/patch-ctronome.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/audio/ctronome/files/patch-ctronome.h b/audio/ctronome/files/patch-ctronome.h
deleted file mode 100644
index b895721818c0..000000000000
--- a/audio/ctronome/files/patch-ctronome.h
+++ /dev/null
@@ -1,22 +0,0 @@
---- ctronome.h.orig 2012-07-22 15:14:52.000000000 +0400
-+++ ctronome.h 2012-07-22 15:15:31.000000000 +0400
-@@ -1,4 +1,6 @@
- #include <sys/soundcard.h>
-+#include <stdint.h>
-+
- #define MYNAME "ctronome"
- #define VERSION "0.5.3"
- #define CREDITS "homepage: http://ctronome.kign.org/\n"
-@@ -28,9 +30,9 @@
- for defaults/limits and required WAV format see README\n"
-
- /* my lazy type definitions */
--typedef unsigned long int DWORD;
--typedef unsigned short int WORD;
--typedef unsigned char BYTE;
-+typedef uint32_t DWORD;
-+typedef uint16_t WORD;
-+typedef uint8_t BYTE;
- typedef DWORD dword;
- typedef WORD word;
- typedef BYTE byte;