wine bug 27600

Vincas Miliūnas vincas.miliunas at gmail.com
Tue Jun 28 16:38:41 CDT 2011


On 06/29/2011 12:28 AM, wylda at volny.cz wrote:
>> Looks like there is some external interference,
>> try compiling in a clean
>> bash environment; some googling suggests that
>> LIBRARY_PATH variable
>> should be unset -
>> https://bbs.archlinux.org/viewtopic.php?id=30418
>> First be sure it can compile the original master
>> branch without issues.
>
> Still fails here :-/
>
> * succesfully compiled vanilla wine-1.3.23-50-g2497a91
> * make distclean
> * applied all nine patches
> * unset LIBRARY_PATH
> * ./tools/make_requests //3 files updated
> * ./configure
> * make -j 16
>
> Debian 32 squeeze, gcc v4.4.5, no CFLAGS override.
>
>
>
It fails on the #include "winternl.h" line and these are standard
includes, you can try to replace

[code]
#include <stdarg.h>
#include <stdio.h>
[/code]

code fragment with

[code]
#include "config.h"
#include "wine/port.h"

#include <assert.h>
#include <stdarg.h>
#include <stdio.h>
[/code]

maybe that will change something.

Others that have successfully built with the patch applied are WINE's
testbot and two persons from http://bugs.winehq.org/show_bug.cgi?id=20395




More information about the wine-devel mailing list