austin987 wrote: > On Wed, Apr 8, 2009 at 11:20 AM, jmmarca <wineforum-user@xxxxxxxxxx> wrote: > > > > > qwertymn wrote: > > > > > it's a problem with the patch that GetAdapterAddresses returns return ERROR_CALL_NOT_IMPLEMENTED; > > > > > > Try change that into ERROR_NO_DATA; > > > > > > I already posted a comment about that in bugzilla. Greetings > > > > > > > > > > > Loss to me ignorance but where do I change what you said? > > > > In that patch, you have: > > /****************************************************************** > + * GetAdaptersAddresses (IPHLPAPI.@) > + * > + * Get addresses associated with adapters. > + * > + * PARAMS > + * Family [In] address family of the addresses > + * Flags [In] which types of addresses > + * Reserved [In] should be null > + * AdapterAddresses [In/Out] ptr to a buffer to receive addresses > + * SizePointer [In/Out] ptr to a variable with the size of the buffer > pointed to > + * > + * RETURNS > + * Success: NO_ERROR > + * Failure: error code from winerror.h > + * > + * FIXME > + * Stub, returns ERROR_CALL_NOT_IMPLEMENTED > + */ > +ULONG WINAPI GetAdaptersAddresses( ULONG Family, ULONG Flags, PVOID Reserved, > + PIP_ADAPTER_ADDRESSES AdapterAddresses, PULONG SizePointer) > +{ > + FIXME("stub\n"); > + return ERROR_CALL_NOT_IMPLEMENTED; > +} > +/****************************************************************** > > > Near the end, change "ERROR_CALL_NOT_IMPLEMENTED" to "ERROR_NO_DATA", > then run make. > > -- > -Austin 1- Change what you said .. and then tried to run the patch usuario@alex-ti:~/wine-git$ patch -p1 < ip.dif patching file dlls/iphlpapi/iphlpapi.spec patching file dlls/iphlpapi/iphlpapi_main.c Hunk #1 succeeded at 584 with fuzz 2 (offset -64 lines). patching file include/iphlpapi.h patching file include/iptypes.h 2 - But when I run. ./configure && make depend && make appears that: make[2]: ** [iphlpapi_main.o] Erro 1 make[2]: Saindo do diretório `/home/usuario/wine-git/dlls/iphlpapi' make[1]: ** [iphlpapi] Erro 2 make[1]: Saindo do diretório `/home/usuario/wine-git/dlls' make: ** [dlls] Erro 2