1 $NetBSD: patch-ab,v 1.6 2007/03/18 13:25:56 markd Exp $
3 --- src/projects/k3bencodingconverter.cpp.orig 2007-03-17 08:04:05.000000000 +1300
4 +++ src/projects/k3bencodingconverter.cpp
5 @@ -62,7 +62,7 @@ bool K3bEncodingConverter::encodedLocall
8 QCString utf8Encoded( s.length()*2 );
9 -#if defined(Q_OS_FREEBSD) || defined(Q_OS_NETBSD)
10 +#if (defined(Q_OS_FREEBSD) || defined(Q_OS_NETBSD)) && !defined(__DragonFly__)
11 const char* in = s.data();
14 @@ -111,7 +111,7 @@ bool K3bEncodingConverter::convert( cons
15 iconv_t ic = ::iconv_open( to.local8Bit(), from.local8Bit() );
17 result.resize( s.length() * 2 );
18 -#if defined(Q_OS_FREEBSD) || defined(Q_OS_NETBSD)
19 +#if (defined(Q_OS_FREEBSD) || defined(Q_OS_NETBSD)) && !defined(__DragonFly__)
20 const char* in = s.data();