diff options
author | sunggun.jung <sunggun.jung@samsung.com> | 2012-11-19 17:06:03 +0900 |
---|---|---|
committer | sunggun.jung <sunggun.jung@samsung.com> | 2012-11-19 17:06:03 +0900 |
commit | f367bc6ffcf338ba017f5fc0320ae5fdbe7e782a (patch) | |
tree | 36a3b15dd744496a23bad4bfc8c793926f6e7068 /src | |
parent | f89652dd93c67b59542a06161402d30cddaf3f10 (diff) | |
download | installer-f367bc6ffcf338ba017f5fc0320ae5fdbe7e782a.tar.gz installer-f367bc6ffcf338ba017f5fc0320ae5fdbe7e782a.tar.bz2 installer-f367bc6ffcf338ba017f5fc0320ae5fdbe7e782a.zip |
Build dependency modified
Change-Id: Ie00cc12e553ed29d2d5401539c26ba6d92e720fa
Diffstat (limited to 'src')
-rwxr-xr-x | src/Util/InstallerUtil.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Util/InstallerUtil.cpp b/src/Util/InstallerUtil.cpp index 6b47f51..61d0eb7 100755 --- a/src/Util/InstallerUtil.cpp +++ b/src/Util/InstallerUtil.cpp @@ -33,7 +33,7 @@ #include "InstallerDefs.h" #include "InstallerUtil.h" -#include <drm-oem-intel.h> +//#include <drm-oem-intel.h> using namespace Osp::Base; using namespace Osp::Base::Collection; @@ -342,7 +342,7 @@ InstallerUtil::IsDrmFile(const Osp::Base::String& path) pFilePath = _StringConverter::CopyToCharArrayN(path); TryCatch(pFilePath, r = GetLastResult(), "[osp-installer] pFilePath is null"); - isDrm = drm_oem_intel_isDrmFile(pFilePath); +// isDrm = drm_oem_intel_isDrmFile(pFilePath); if(isDrm == 1) { AppLogTag(OSP_INSTALLER, "IsDrmFile() called, packagePath=%ls is drm file", path.GetPointer()); @@ -369,7 +369,7 @@ InstallerUtil::DecryptPackage(const Osp::Base::String& packagePath) pFilePath = _StringConverter::CopyToCharArrayN(packagePath); TryCatch(pFilePath, r = GetLastResult(), "[osp-installer] pFilePath is null"); - result = drm_oem_intel_decrypt_package(pFilePath, pFilePath); +// result = drm_oem_intel_decrypt_package(pFilePath, pFilePath); if(result == 1) { AppLogTag(OSP_INSTALLER, "DecryptPackage() called, packagePath=%ls, decrpyt success", packagePath.GetPointer()); |