In article 200311262214.18656.kevin@plop.org, Kevin Koltzau wrote:
I decided to give KDE 3.2-beta1 a try (just for reference I'm using the Gentoo ebuild), and found a problem with compiling winearts
under KDE 3.1 "artsc-config --cflags" gives me -I/usr/kde/3.1/include/artsc
but under KDE 3.2-beta1 I get -I/usr/kde/3.2/include/artsc -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
which causes a problem because this value is passed to makedep during compilation, which fails with "Unknown option '-pthread'"
Quick and dirty patch:
--- tools/makedep.c 2003-11-27 20:06:41.597740232 +0100 +++ tools/makedep.new 2003-11-01 00:05:38.000000000 +0100 @@ -500,6 +500,8 @@ case 'I': if (opt[2]) add_include_path( opt + 2 ); break; + case 'p': + break; case 'C': if (opt[2]) SrcDir = opt + 2; else SrcDir = NULL;