summaryrefslogtreecommitdiff
path: root/audio/taglib
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2006-09-23 13:26:24 +0000
committerwiz <wiz@pkgsrc.org>2006-09-23 13:26:24 +0000
commit03fcf967f4a18cb8294927a8f2ecb5c2269ff867 (patch)
tree5603d3b0c0eacacc5db18e242750f79a43fbc87c /audio/taglib
parenteada24027146e28f96404346ab7e558f5d7ab81d (diff)
downloadpkgsrc-03fcf967f4a18cb8294927a8f2ecb5c2269ff867.tar.gz
Two functions had missing arguments. Patch from stoned@
Fixes problems in amarok (and probably other dependencies). Bump PKGREVISION.
Diffstat (limited to 'audio/taglib')
-rw-r--r--audio/taglib/Makefile4
-rw-r--r--audio/taglib/files/id3lib_strings.h6
2 files changed, 5 insertions, 5 deletions
diff --git a/audio/taglib/Makefile b/audio/taglib/Makefile
index f2fe84c1982..b256453f511 100644
--- a/audio/taglib/Makefile
+++ b/audio/taglib/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.12 2006/05/04 16:37:29 tv Exp $
+# $NetBSD: Makefile,v 1.13 2006/09/23 13:26:24 wiz Exp $
#
DISTNAME= taglib-1.4
-PKGREVISION= 1
+PKGREVISION= 2
CATEGORIES= audio
MASTER_SITES= http://ktown.kde.org/~wheeler/files/src/
diff --git a/audio/taglib/files/id3lib_strings.h b/audio/taglib/files/id3lib_strings.h
index 7eb4f64e670..b16eb256132 100644
--- a/audio/taglib/files/id3lib_strings.h
+++ b/audio/taglib/files/id3lib_strings.h
@@ -1,5 +1,5 @@
// -*- C++ -*-
-// $Id: id3lib_strings.h,v 1.3 2006/01/11 16:41:45 joerg Exp $
+// $Id: id3lib_strings.h,v 1.4 2006/09/23 13:26:24 wiz Exp $
// id3lib: a software library for creating and manipulating id3v1/v2 tags
// Copyright 1999, 2000 Scott Thomas Haug
@@ -100,10 +100,10 @@ namespace std
static char_type
to_char_type(const int_type& __c)
- { return char_type(); }
+ { return char_type(__c); }
static int_type
- to_int_type(const char_type& __c) { return int_type(); }
+ to_int_type(const char_type& __c) { return int_type(__c); }
static bool
eq_int_type(const int_type& __c1, const int_type& __c2)