Просмотр исходного кода

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

rdb 16 лет назад
Родитель
Сommit
d4cebac397
1 измененных файлов с 0 добавлено и 19 удалено
  1. 0 19
      makepanda/makepanda.py

+ 0 - 19
makepanda/makepanda.py

@@ -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.