[ https://issues.apache.org/jira/browse/GEODE-2508?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15878945#comment-15878945 ]
ASF GitHub Bot commented on GEODE-2508: --------------------------------------- Github user echobravopapa commented on a diff in the pull request: https://github.com/apache/geode-native/pull/24#discussion_r102539038 --- Diff: src/cppcache/src/CppCacheLibrary.cpp --- @@ -127,15 +127,18 @@ std::string CppCacheLibrary::getProductLibDir() { for (int i = 0; i < PATH_MAX && path[i] != 0; i++) { path[i] = ::tolower(path[i]); } - dllNamePtr = strstr(path, "apache-geode.dll"); + std::string cppName = PRODUCT_LIB_NAME; + cppName += ".dll"; + std::string dotNetName = PRODUCT_DLL_NAME; + dotNetName += ".dll"; + dllNamePtr = strstr(path, cppName.c_str()); --- End diff -- fair nit 👍 will change it > Generize lib naming > ------------------- > > Key: GEODE-2508 > URL: https://issues.apache.org/jira/browse/GEODE-2508 > Project: Geode > Issue Type: Improvement > Components: native client > Reporter: Ernest Burghardt > > Make naming configurable -- This message was sent by Atlassian JIRA (v6.3.15#6346)