namsic opened a new pull request, #1958: URL: https://github.com/apache/zookeeper/pull/1958
```sh #./configure --prefix=/install/path make install ``` # AS-IS ``` /install/path/lib ├── libzookeeper_mt.a ├── libzookeeper_mt.la ├── libzookeeper_mt.so -> libzookeeper_mt.so.2.0.0 ├── libzookeeper_mt.so.2 -> libzookeeper_mt.so.2.0.0 ├── libzookeeper_mt.so.2.0.0 ├── libzookeeper_st.a ├── libzookeeper_st.la ├── libzookeeper_st.so -> libzookeeper_st.so.2.0.0 ├── libzookeeper_st.so.2 -> libzookeeper_st.so.2.0.0 └── libzookeeper_st.so.2.0.0 ``` # TO-BE ``` /install/path/lib ├── libzookeeper_mt-3.8.0.so.2 -> libzookeeper_mt-3.8.0.so.2.0.0 ├── libzookeeper_mt-3.8.0.so.2.0.0 ├── libzookeeper_mt.a ├── libzookeeper_mt.la ├── libzookeeper_mt.so -> libzookeeper_mt-3.8.0.so.2.0.0 ├── libzookeeper_st-3.8.0.so.2 -> libzookeeper_st-3.8.0.so.2.0.0 ├── libzookeeper_st-3.8.0.so.2.0.0 ├── libzookeeper_st.a ├── libzookeeper_st.la └── libzookeeper_st.so -> libzookeeper_st-3.8.0.so.2.0.0 ``` # JIRA I have already sent a mail to `d...@zookeeper.apache.org` but have not received a reply. I also sent an email to `us...@infra.apache.org` and got the reply below. So I don't have any jira number. > You can just make the pull request. The zookeeper community can respond with anything further that they require from there. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@zookeeper.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org