Remove RUNTIME_PLATFORM stuff - this is now handled in dtool_platform.h

This commit is contained in:
rdb 2009-10-20 11:13:54 +00:00
parent 60499275aa
commit d4cebac397

View File

@ -37,7 +37,6 @@ THREADCOUNT=0
CFLAGS=""
RUNTIME=0
RUNTIME_VERSION="dev"
RUNTIME_PLATFORM="other"
DISTRIBUTOR=""
PkgListSet(MAYAVERSIONS + MAXVERSIONS + DXVERSIONS + [
@ -178,24 +177,6 @@ if (RUNTIME):
elif (DISTRIBUTOR == ""):
DISTRIBUTOR = "makepanda"
if (sys.platform.startswith("win")):
if (platform.architecture()[0] == "64bit"):
RUNTIME_PLATFORM = "win64"
else:
RUNTIME_PLATFORM = "win32"
elif (sys.platform.startswith("linux")):
if (platform.architecture()[0] == "64bit"):
RUNTIME_PLATFORM = "linux.amd64"
else:
RUNTIME_PLATFORM = "linux.i386"
elif (sys.platform == "darwin"):
RUNTIME_PLATFORM = "osx.fat"
elif (sys.platform.startswith("freebsd")):
if (platform.architecture()[0] == "64bit"):
RUNTIME_PLATFORM = "freebsd.amd64"
else:
RUNTIME_PLATFORM = "freebsd.i386"
########################################################################
##
## Load the dependency cache.