Plugin so files renamed to provide DALi 2 16/232716/2
authorHeeyong Song <heeyong.song@samsung.com>
Thu, 7 May 2020 08:27:45 +0000 (17:27 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Thu, 7 May 2020 09:11:18 +0000 (09:11 +0000)
Change-Id: Ic2946a671ff7ff8391fcefb75f80f57020e1d1e8

dali/internal/haptics/common/feedback-plugin-proxy.cpp
dali/internal/imaging/common/image-loader-plugin-proxy.cpp
dali/internal/input/common/key-impl.cpp
dali/internal/system/common/color-controller-impl.cpp
dali/internal/vector-animation/common/vector-animation-renderer-plugin-proxy.cpp
dali/internal/video/common/video-player-impl.cpp
dali/internal/web-engine/common/web-engine-impl.cpp

index f8d7ce7..6829d21 100644 (file)
@@ -31,11 +31,7 @@ namespace Internal
 namespace Adaptor
 {
 
-#if _GLIBCXX_USE_CXX11_ABI
-const char * const FeedbackPluginProxy::DEFAULT_OBJECT_NAME( "libdali-feedback-plugin.so" );
-#else
-const char * const FeedbackPluginProxy::DEFAULT_OBJECT_NAME( "libdali-feedback-plugin-cxx03.so" );
-#endif
+const char * const FeedbackPluginProxy::DEFAULT_OBJECT_NAME( "libdali2-feedback-plugin.so" );
 
 FeedbackPluginProxy::FeedbackPluginProxy( const std::string& sharedObjectName )
 : mInitializeAttempted( false ),
index 1c61731..126754a 100755 (executable)
@@ -35,7 +35,7 @@ namespace ImageLoaderPluginProxy
 {
 
 
-static const char * DEFAULT_OBJECT_NAME( "libdali-image-loader-plugin.so" );
+static const char * DEFAULT_OBJECT_NAME( "libdali2-image-loader-plugin.so" );
 
 static bool mInitializeAttempted = false;
 static void* mLibHandle = NULL;
index 30c6893..fe81d22 100644 (file)
@@ -45,11 +45,7 @@ Debug::Filter* gKeyExtensionLogFilter = Debug::Filter::New(Debug::NoLogging, fal
 #endif
 
 // Path for loading extension keys
-#if _GLIBCXX_USE_CXX11_ABI
-const char* KEY_EXTENSION_PLUGIN_SO( "libdali-key-extension.so" );
-#else
-const char* KEY_EXTENSION_PLUGIN_SO( "libdali-key-extension-cxx03.so" );
-#endif
+const char* KEY_EXTENSION_PLUGIN_SO( "libdali2-key-extension.so" );
 
 class KeyMap
 {
@@ -213,7 +209,7 @@ class KeyMap
 
     if( mHandle == NULL )
     {
-      DALI_LOG_INFO( gKeyExtensionLogFilter, Debug::General, "Failed to get handle from libdali-key-extension.so\n" );
+      DALI_LOG_INFO( gKeyExtensionLogFilter, Debug::General, "Failed to get handle from libdali2-key-extension.so\n" );
       return;
     }
 
index c7630b2..242696d 100644 (file)
@@ -35,7 +35,7 @@ namespace Adaptor
 
 namespace // unnamed namespace
 {
-const char* COLOR_CONTROLLER_PLUGIN_SO( "libdali-color-controller-plugin.so" );
+const char* COLOR_CONTROLLER_PLUGIN_SO( "libdali2-color-controller-plugin.so" );
 }
 
 Dali::ColorController ColorController::Get()
index 2a272c4..b2e2eac 100644 (file)
@@ -35,7 +35,7 @@ namespace
 {
 
 // The default plugin name
-const char* DEFAULT_OBJECT_NAME( "libdali-vector-animation-renderer-plugin.so" );
+const char* DEFAULT_OBJECT_NAME( "libdali2-vector-animation-renderer-plugin.so" );
 
 }
 
index a431ecb..64ed46a 100755 (executable)
@@ -39,11 +39,7 @@ namespace Adaptor
 namespace // unnamed namespace
 {
 
-#if _GLIBCXX_USE_CXX11_ABI
-const char* VIDEO_PLUGIN_SO( "libdali-video-player-plugin.so" );
-#else
-const char* VIDEO_PLUGIN_SO( "libdali-video-player-plugin-cxx03.so" );
-#endif
+const char* VIDEO_PLUGIN_SO( "libdali2-video-player-plugin.so" );
 
 Dali::BaseHandle Create()
 {
index a8c40b5..e467bb4 100644 (file)
@@ -41,9 +41,9 @@ namespace Adaptor
 namespace // unnamed namespace
 {
 
-constexpr char const * const kPluginFullNamePrefix = "libdali-web-engine-";
+constexpr char const * const kPluginFullNamePrefix = "libdali2-web-engine-";
 constexpr char const * const kPluginFullNamePostfix = "-plugin.so";
-constexpr char const * const kPluginFullNameDefault = "libdali-web-engine-plugin.so";
+constexpr char const * const kPluginFullNameDefault = "libdali2-web-engine-plugin.so";
 
 // Note: Dali WebView policy does not allow to use multiple web engines in an application.
 // So once pluginName is set to non-empty string, it will not change.