hjälp med winex

Spel i Slackware? Javisst...

Moderatorer: Nille, nomicon, Minime

osii
Hacker
Inlägg: 19
Blev medlem: 05 jan 2004 04:01

hjälp med winex

Inlägg av osii »

Hej jag har laddar hem winex och det gick fint att ./configuera men po make fick jag ett compileringd fel

Kod: Markera allt

./ppl.l:1488: error: `pp_ignore' undeclared (first use in this function)
./ppl.l: At top level:
lex.ppl.c:15101: warning: `yyunput' defined but not used
make[2]: *** [lex.ppl.o] Error 1
make[2]: Leaving directory `/home/osii/winex/tools/wrc'
make[1]: *** [wrc] Error 2
make[1]: Leaving directory `/home/osii/winex/tools'
make: *** [tools] Error 2
osii@hell:~/winex$
kan någon hjälpa mig? :cry:
osii
Hacker
Inlägg: 19
Blev medlem: 05 jan 2004 04:01

jaha

Inlägg av osii »

Tack för hjälpen...
ja ville bara vet om det finns dem som har haft det jobbigt att compilera winex, men tack ändå slackers
GPL OWNz
Hacker
Inlägg: 36
Blev medlem: 16 feb 2004 22:41
ORT: datorer, linux, spel, filmer, livet?!!

Inlägg av GPL OWNz »

vet inte hur du har laddat hem winex men jag kör via cvs och det fungerar prima ... har ett skript som gör "det jobbiga" åt en

Kod: Markera allt

#!/bin/bash

export LauncherVer="3.30"

# Configuration
#########################################################

# Vars
export CompileRootDir="$HOME/temp/cvswinex"
export ErrorLogFile=""
export ConfigurePrefix="/usr/lib/cvswinex"
export ConfigureOptions="--enable-opengl --with-x"
export AlwaysRecompile="1"
export ScriptName="cvswinex"
export ConfigDirName=".cvswinex"

export GetWineXLicense="http://www.transgaming.com/license.php?source=1"

export StripBinaries="0" # change to 1 to strip binaries. Disables debugging tho
export PackSource="1"

export CVSPasswordGuess="cvs"
export CVSCheckOutDir="winex"
export OldCVSCheckOutDir="wine"
export CVSoptions="-d :pserver:cvs@cvs.transgaming.org:/cvsroot -z 3 co"
#export DisableCVSrootCheck="1" # use if CVSoptions CVSroot has a space in it
export WineExecName="wine"

export ShowTips="1"

#User install
#export UserOnlyInstall="1"

# Helperscript stuff ... do not edit
#########################################################

if test "$1" = "proxy"
then
	echo "Enter proxy (eg: proxy.pandora.be:8080):"
	read http_proxy
	echo "$http_proxy" > $HOME/.GetWineXproxy && echo "info stored ..."
	exit
fi
http_proxy=`cat $HOME/.GetWineXproxy 2>/dev/null`
test -n "$http_proxy" && export http_proxy

Upgrade="0"
if test "$1" = "upgrade"
then
	echo "Upgrading Helper script ..."
	Upgrade="1"
	shift
fi

export GetWineXName=`basename $0`

function CheckOK ()
{
	if test "$Upgrade" = "1"
	then
		if ! rm -f "$GetWineXFile"
		then
			echo -e "Could not remove $GetWineXFile\nAborting..."
			exit
		fi
	elif test -e "$GetWineXFile"
	then
		Test=`tail -n 2 "$GetWineXFile"|grep "#end"`
		if test -z "$Test"
		then
			echo "Helperscript incomplete, getting new"
			if ! rm -f "$GetWineXFile"
			then
				echo -e "Could not remove $GetWineXFile\nAborting..."
				exit
			fi
		fi
	fi
}

GetWineXFile=`which GetWineX 2>/dev/null` ;CheckOK
if test -e "$GetWineXFile"
then
	GetWineX $@
	exit
fi
GetWineXFile="$HOME/bin/GetWineX" ;CheckOK
if test -e $HOME/bin/GetWineX
then
	$HOME/bin/GetWineX $@
	exit
fi
GetWineXFile="./GetWineX" ;CheckOK
if test -e ./GetWineX
then
    ./GetWineX $@
else
	mkdir $HOME/bin/ >/dev/null 2>&1
	cd $HOME/bin/
	echo -e "\n\nGetting helper script ... please wait\n"
	if wget http://ting.homeunix.org/GetWineX
	then
		chmod +x GetWineX
		./GetWineX $@
	else
		echo -e "\n\nCouldn't download .. Try again, and/or contact ElmerFudd"
		echo "For manual download:"
		echo "  Goto http://ting.homeunix.org/cvs_wine/changelog.html"
		echo "  Download GetWineX, using the link around the top"
		echo -e "  Put it in <home>/bin/ and chmod +x\n"
		echo -e "FEATURE:"
		echo -e "  If you are behind a proxy, try this:"
		echo -e "  $GetWineXName proxy"
		echo -e "  after proxy info is entered, just run again as normal.\n"
		rm -f GetWineX
	fi
fi
osii
Hacker
Inlägg: 19
Blev medlem: 05 jan 2004 04:01

tack

Inlägg av osii »

tack,