blob: 9ffd35741e775d1b81596f7d426d59aab5158546 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
http://bugs.gentoo.org/31557
http://bugs.winehq.org/show_bug.cgi?id=2005
fixed upstream between the Wine-20040121 and Wine-20040213 release
note: the way upstream fixed this was by first removing -pthread from
the output of `$ARTSCCONFIG --cflags` in configure.ac, and then later
by only grabbing recognized options from the output (like -I*)
--- tools/makedep.c
+++ tools/makedep.c
@@ -504,6 +504,8 @@
if (opt[2]) SrcDir = opt + 2;
else SrcDir = NULL;
break;
+ case 'p':
+ break;
case 'f':
if (opt[2]) OutputFileName = opt + 2;
break;
|