Wine 1.1.1 bz2 Slackware compiling source problem

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
amidamaru
Newbie
Newbie
Posts: 3
Joined: Mon Jul 14, 2008 5:08 am

Wine 1.1.1 bz2 Slackware compiling source problem

Post by amidamaru »

Hi,

I'm new here but I will try to stay and contribute as much as can.

I have forced to use a Slackware Linux distro because of some constrains.

In order to access some of my old Windows applications I use wine like most of this forum users.

I have downloaded today the bz2 wine 1.1.1 source and I have tried to compile it on my Slackware 11.0.

./configure command was finished without any problems but the make depends and make commands output me this error:

"
make[1]: Entering directory `/home/wine-1.1.1/tools'
make[1]: `makedep' is up to date.
make[1]: Leaving directory `/home/wine-1.1.1/tools'
make[1]: Entering directory `/home/wine-1.1.1/libs'
make[2]: Entering directory `/home/wine-1.1.1/libs/port'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/wine-1.1.1/libs/port'
make[2]: Entering directory `/home/wine-1.1.1/libs/wine'
(GIT_DIR=../../.git git describe HEAD 2>/dev/null || echo "wine-1.1.1") | sed -n -e '$s/\(.*\)/const char wine_build[] = "\1";/p' >version-stamp || (rm -f version-stamp && exit 1)
make[2]: Leaving directory `/home/wine-1.1.1/libs/wine'
make[2]: Entering directory `/home/wine-1.1.1/libs/wpp'
bison -p ppy_ -o ppy.tab.c -d ppy.y
make[2]: *** [ppy.tab.h] Broken pipe
make[2]: Leaving directory `/home/wine-1.1.1/libs/wpp'
make[1]: *** [wpp] Error 2
make[1]: Leaving directory `/home/wine-1.1.1/libs'
make: *** [libs] Error 2
"

In this moment I use a wine version 0.9.45...what should I do ?

Thank you.
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Re: Wine 1.1.1 bz2 Slackware compiling source problem

Post by vitamin »

amidamaru wrote:Hi,

I'm new here but I will try to stay and contribute as much as can.

I have forced to use a Slackware Linux distro because of some constrains.

In order to access some of my old Windows applications I use wine like most of this forum users.

I have downloaded today the bz2 wine 1.1.1 source and I have tried to compile it on my Slackware 11.0.

./configure command was finished without any problems but the make depends and make commands output me this error:

"
make[1]: Entering directory `/home/wine-1.1.1/tools'
make[1]: `makedep' is up to date.
make[1]: Leaving directory `/home/wine-1.1.1/tools'
make[1]: Entering directory `/home/wine-1.1.1/libs'
make[2]: Entering directory `/home/wine-1.1.1/libs/port'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/wine-1.1.1/libs/port'
make[2]: Entering directory `/home/wine-1.1.1/libs/wine'
(GIT_DIR=../../.git git describe HEAD 2>/dev/null || echo "wine-1.1.1") | sed -n -e '$s/\(.*\)/const char wine_build[] = "\1";/p' >version-stamp || (rm -f version-stamp && exit 1)
make[2]: Leaving directory `/home/wine-1.1.1/libs/wine'
make[2]: Entering directory `/home/wine-1.1.1/libs/wpp'
bison -p ppy_ -o ppy.tab.c -d ppy.y
make[2]: *** [ppy.tab.h] Broken pipe
make[2]: Leaving directory `/home/wine-1.1.1/libs/wpp'
make[1]: *** [wpp] Error 2
make[1]: Leaving directory `/home/wine-1.1.1/libs'
make: *** [libs] Error 2
"

In this moment I use a wine version 0.9.45...what should I do ?

Thank you.
I'm guessing you need newer version of bison. Also try 'ulimit -s unlimited'.
amidamaru
Newbie
Newbie
Posts: 3
Joined: Mon Jul 14, 2008 5:08 am

Post by amidamaru »

Well, thank you but...the bison version installed locally is the latest..2.3 and executing the specified command do not improve the behavior :(....
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Post by vitamin »

amidamaru wrote:Well, thank you but...the bison version installed locally is the latest..2.3 and executing the specified command do not improve the behavior :(....
What's your 'flex --version'?
Also did you installed "m4" package?
amidamaru
Newbie
Newbie
Posts: 3
Joined: Mon Jul 14, 2008 5:08 am

Post by amidamaru »

Hi Sir,

1. the flex version output on my Linux system is: 2.5.33

2. the m4 version output on the same machine is 1.4.11.
Locked