Fixup fromcvs/togit conversion
[minix-pkgsrc.git] / sysutils / k3b-kde3 / patches / patch-ab
blobd1964374bb90e2da4047014b08af10951307c528
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
6  {
7  #ifdef HAVE_ICONV_H
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();
12  #else
13    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();
21  #else
22    char* in = s.data();