[Release] wrt_0.8.179
authorTaejeong Lee <taejeong.lee@samsung.com>
Wed, 10 Apr 2013 12:02:14 +0000 (21:02 +0900)
committerTaejeong Lee <taejeong.lee@samsung.com>
Wed, 10 Apr 2013 12:02:14 +0000 (21:02 +0900)
Change-Id: Ibf8c6c86124769637a6fbb0b0c8ef1c70ce187d8

packaging/wrt.spec
src/api_new/core_module.cpp
src/view/webkit/bundles/CMakeLists.txt [changed mode: 0644->0755]
src/wrt-launchpad-daemon/launchpad_src/launchpad.c

index c872f1a..16e257b 100644 (file)
@@ -1,7 +1,7 @@
-#git:framework/web/wrt wrt_0.8.178
+#git:framework/web/wrt wrt_0.8.179
 Name:       wrt
 Summary:    web runtime
-Version:    0.8.178
+Version:    0.8.179
 Release:    1
 Group:      Development/Libraries
 License:    Apache License, Version 2.0
index 73a8c75..ac00e79 100644 (file)
@@ -71,20 +71,8 @@ bool checkPaths()
 
     bool if_ok = true;
     if_ok &= (isDir(cutOffFileName(GetWrtDatabaseFilePath())));
-    if (!if_ok) {
-        LogError("Path <" << GetWrtDatabaseFilePath() << "> does not exist.");
-    }
-
     if_ok &= (isDir(GetDevicePluginPath()));
-    if (!if_ok) {
-        LogError("Path <" << GetDevicePluginPath() << "> does not exist.");
-    }
-
     if_ok &= (isDir(GetUserInstalledWidgetPath()));
-    if (!if_ok) {
-        LogError("Path <" << GetUserInstalledWidgetPath() <<
-                 "> does not exist.");
-    }
     return if_ok;
 }
 } // namespace anonymous
old mode 100644 (file)
new mode 100755 (executable)
index aaf8e49..94d105a
@@ -28,6 +28,7 @@ PKG_CHECK_MODULES(BUNDLES_DEP
     ewebkit2
     vconf
     osp-appfw
+    libprivilege-control
     REQUIRED
 )
 
index 1dcab54..ba9fbf2 100644 (file)
@@ -738,6 +738,11 @@ int main(int argc, char **argv)
     pfds[POOL_SERVER].events  = POLLIN;
     pfds[POOL_SERVER].revents = 0;
 
+
+    // This is temporary code to delay creating dummy process.
+    // It will make that a dummy_process is created on first webapp launching.
+    last_dummy_exec_time = time(NULL);
+
     while (1)
     {
         if (dummy_process_pid == DUMMY_NONE)