diff options
author | green <green@FreeBSD.org> | 2004-02-22 22:51:59 +0000 |
---|---|---|
committer | green <green@FreeBSD.org> | 2004-02-22 22:51:59 +0000 |
commit | 9b108edd2f2e439635cf9749faca6daace01fe1a (patch) | |
tree | aa37166cdc01a63f7d6accacba5f0e3e8ffdb38c /audio/id3lib | |
parent | 9bed50fe1f294649d5b841f2fd0c9c11825c07d9 (diff) | |
download | FreeBSD-ports-9b108edd2f2e439635cf9749faca6daace01fe1a.zip FreeBSD-ports-9b108edd2f2e439635cf9749faca6daace01fe1a.tar.gz |
Correct a C syntax error in the <id3/globals.h> header that causes, e.g.,
xmms-imms to fail to build. Mail to ${MAINTAINER} bounces.
Diffstat (limited to 'audio/id3lib')
-rw-r--r-- | audio/id3lib/Makefile | 1 | ||||
-rw-r--r-- | audio/id3lib/files/patch-globals.h | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/audio/id3lib/Makefile b/audio/id3lib/Makefile index e4cdacb..8ea5f1f 100644 --- a/audio/id3lib/Makefile +++ b/audio/id3lib/Makefile @@ -10,6 +10,7 @@ PORTVERSION= 3.8.3 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} +PORTREVISION= 1 MAINTAINER= roman@xpert.com COMMENT= Library for manipulating ID3v1/v1.1 and ID3v2 tags diff --git a/audio/id3lib/files/patch-globals.h b/audio/id3lib/files/patch-globals.h new file mode 100644 index 0000000..b3c07d5 --- /dev/null +++ b/audio/id3lib/files/patch-globals.h @@ -0,0 +1,11 @@ +--- include/id3/globals.h.orig Sun Feb 22 17:38:28 2004 ++++ include/id3/globals.h Sun Feb 22 17:38:22 2004 +@@ -480,7 +480,7 @@ + MP3FREQUENCIES_24000HZ = 24000, + MP3FREQUENCIES_32000HZ = 32000, + MP3FREQUENCIES_48000HZ = 48000, +- MP3FREQUENCIES_44100HZ = 44100, ++ MP3FREQUENCIES_44100HZ = 44100 + }; + + ID3_ENUM(Mp3_ChannelMode) |