Add package architecture constant for x86-64

This commit is contained in:
Ingo Weinhold 2013-07-13 21:17:02 +02:00
parent 4ce282c7cc
commit 03d70b4e58
2 changed files with 2 additions and 0 deletions

View File

@ -14,6 +14,7 @@ enum BPackageArchitecture {
B_PACKAGE_ARCHITECTURE_X86 = 1,
B_PACKAGE_ARCHITECTURE_X86_GCC2 = 2,
B_PACKAGE_ARCHITECTURE_SOURCE = 3,
B_PACKAGE_ARCHITECTURE_X86_64 = 4,
//
B_PACKAGE_ARCHITECTURE_ENUM_COUNT,
};

View File

@ -65,6 +65,7 @@ BPackageInfo::kArchitectureNames[B_PACKAGE_ARCHITECTURE_ENUM_COUNT] = {
"x86",
"x86_gcc2",
"source",
"x86_64",
};