Wine on Puppy linux

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
klever
Newbie
Newbie
Posts: 2
Joined: Sun Aug 31, 2008 4:17 am

Wine on Puppy linux

Post by klever »

I have problems compiling/installing Wine 1.0 or 1.1.3 on Puppy linux 4.
Unable to compile menu.o, unexpected end of line.

Can someone please give me a hint how to install Wine on Puppy linux?
qwertymn
Level 4
Level 4
Posts: 236
Joined: Thu Mar 27, 2008 3:42 am

Post by qwertymn »

try:

ulimit -s unlimited
klever
Newbie
Newbie
Posts: 2
Joined: Sun Aug 31, 2008 4:17 am

Post by klever »

Thanks for your reply. It did not solve my problem.

The error message i get is:
6248: Warning: end of file not at end of a line; newline inserted

I added an empty line in menu.c but it still comes with error 6248 and a new error:
8183: Error unknown pseudo-op: '.strin'

Any more tips?
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Post by vitamin »

klever wrote:Thanks for your reply. It did not solve my problem.

The error message i get is:
6248: Warning: end of file not at end of a line; newline inserted

I added an empty line in menu.c but it still comes with error 6248 and a new error:
8183: Error unknown pseudo-op: '.strin'

Any more tips?

Code: Select all

ulimit -u unlimited
make clean
configure --verbose
Fix all warnings ( see http://wiki.winehq.org/Recommended_Packages )
Then:

Code: Select all

make depend all
Locked