Re: unable to compile wine from latest git

2011-10-04 Thread Vijay Kiran Kamuju
On Tue, Oct 4, 2011 at 3:52 AM, Austin English  wrote:
> On Mon, Oct 3, 2011 at 12:24, Vijay Kiran Kamuju  wrote:
>> Hi,
>>
>> This is on fedora 15. I have just downloaded the fresh git, and
>> attempting the my first build on this system.
>
> Please bottom-post on wine mailing lists.
>
>> The source code is downloaded to a usb drive which is FAT32 formatted.
>
> Looking at $TOPDIR/Makefile:
> __builddeps__: dlls/libd3dcompiler.def
> dlls/libd3dcompiler.def: dlls/d3dcompiler_43/libd3dcompiler.def
>        $(RM) $@ && $(LN_S) d3dcompiler_43/libd3dcompiler.def $@
>
> LN_S is `ln -s`, which will fail on a fat32 file system.
>
> You need to build on a file system that supports symlinks (ext3/4,
> xfs, nfs, etc.).
>
> --
> -Austin
>
Well, if you see configure script.
There is an alternative for "ln -s", and it is "cp -p" which is is
used for MSYS and DJPP based builds.
I modified the configure and it worked
I will try to send that patch for review may be by evening.

-
Vijay




Re: unable to compile wine from latest git

2011-10-03 Thread Austin English
On Mon, Oct 3, 2011 at 12:24, Vijay Kiran Kamuju  wrote:
> Hi,
>
> This is on fedora 15. I have just downloaded the fresh git, and
> attempting the my first build on this system.

Please bottom-post on wine mailing lists.

> The source code is downloaded to a usb drive which is FAT32 formatted.

Looking at $TOPDIR/Makefile:
__builddeps__: dlls/libd3dcompiler.def
dlls/libd3dcompiler.def: dlls/d3dcompiler_43/libd3dcompiler.def
$(RM) $@ && $(LN_S) d3dcompiler_43/libd3dcompiler.def $@

LN_S is `ln -s`, which will fail on a fat32 file system.

You need to build on a file system that supports symlinks (ext3/4,
xfs, nfs, etc.).

-- 
-Austin




Re: unable to compile wine from latest git

2011-10-03 Thread Vijay Kiran Kamuju
Hi,

This is on fedora 15. I have just downloaded the fresh git, and
attempting the my first build on this system.
The source code is downloaded to a usb drive which is FAT32 formatted.
The hardware is a Compaq laptop with core duo processor and 2 G RAM.
Do you need any more details.

Thanks,
Vijay

On Mon, Oct 3, 2011 at 8:17 PM, Austin English  wrote:
> On Mon, Oct 3, 2011 at 05:03, Vijay Kiran Kamuju  wrote:
>> Hi,
>>
>> I just downloaded the git and tried compile it.
>>
>> I just issued `make` command after doing `./configure`
>>
>> But it gave the below errors:
>> make[1]: Leaving directory `/media/PENDRIVE/devel/repo/wine/tools/wrc'
>
> What type of file system is that on?
>
> --
> -Austin
>




Re: unable to compile wine from latest git

2011-10-03 Thread Austin English
On Mon, Oct 3, 2011 at 05:03, Vijay Kiran Kamuju  wrote:
> Hi,
>
> I just downloaded the git and tried compile it.
>
> I just issued `make` command after doing `./configure`
>
> But it gave the below errors:
> make[1]: Leaving directory `/media/PENDRIVE/devel/repo/wine/tools/wrc'

What type of file system is that on?

-- 
-Austin




Re: unable to compile wine from latest git

2011-10-03 Thread Vijay Kiran Kamuju
On Mon, Oct 3, 2011 at 2:15 PM, Bruno Jesus <00cp...@gmail.com> wrote:
> On Mon, Oct 3, 2011 at 09:03, Vijay Kiran Kamuju  wrote:
>> Hi,
>>
>> I just downloaded the git and tried compile it.
>>
>> I just issued `make` command after doing `./configure`
>> ...
>> Since the build of wine has changed a bit, i am unable to understand
>> how to fix this issue.
>
> Try make distclean && ./configure && make depend && make
>
It did not work, same error
> Try this too:
> git clean -fd
>
I did it and then I tried 'make' still the same error.
Now doing the distclean and recompling.
Still the same
can this be a file system issue. (i do not think it is)
I can see that there is libd3dcompiler.def file
> Taken from: 
> http://wine.1045685.n5.nabble.com/Latest-Git-Fails-tools-install-td1838892.html
>

Vijay




Re: unable to compile wine from latest git

2011-10-03 Thread Bruno Jesus
On Mon, Oct 3, 2011 at 09:03, Vijay Kiran Kamuju  wrote:
> Hi,
>
> I just downloaded the git and tried compile it.
>
> I just issued `make` command after doing `./configure`
> ...
> Since the build of wine has changed a bit, i am unable to understand
> how to fix this issue.

Try make distclean && ./configure && make depend && make

Try this too:
git clean -fd

Taken from: 
http://wine.1045685.n5.nabble.com/Latest-Git-Fails-tools-install-td1838892.html