-
Notifications
You must be signed in to change notification settings - Fork 201
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Arch linux snappy #175
Arch linux snappy #175
Conversation
Signed-off-by: paparuch <[email protected]>
…pt-get/homebrew Signed-off-by: paparuch <[email protected]>
solid Concept ACK. Can you rebase on |
Signed-off-by: paparuch <[email protected]>
Signed-off-by: paparuch <[email protected]>
Can this be appropriately rebased |
@pr4u4t I'd really like to get this merged ASAP. I'm happy to help you get it appropriately rebased and squashed, or I can cherry-pick your commits to a new branch, and merge it separately if that would be easier. Given that |
I may find time today or tomorrow to make a rebase I was busy with a thing that you mentioned in #176. I'm not that mad to shell client-cli. Command results for restd needs to be convertible to json or xml, for that I needed to create utility class to store command result take a look here. I also see a possibility to use TypedData for storing configuration #173. Configuration file may be designed to be more structured like the one from nginx or lighttpd and parsed using flex, bison couple. It's possible because configuration options are not deAlthough this interface is not yet complete as I need to make map and vector shared to get rid of copying. |
@pr4u4t I actually went ahead and setup a branch with the cherry-picking, rebasing/squashing done in case I didn't hear back. If you want to take a look and reconfirm your sign-off, I'd happily open a new PR from that branch and get it merged ASAP: afc129d Note that there's really only one substantive change from what you submitted (squashing/commit-message/whitespace aside): the cmake |
I don't mind unless this changes gets commited. What is really interesting that both |
I've opened the new PR and will merge it as soon as it has >0 tested ACKs. Once it's merged, it will make sense for you to rebase your other PR(s) on top of it so they all have a shared base. As for which things it makes sense to merge after that, I'll take another review ASAP. |
#171 according to my last comment
check_library_exists(snappy snappy_compress "" HAVE_SNAPPY)
should be changed tofind_library(SNAPPY_LIBRARY snappy REQUIRED)
as this library is needed by LevelDB and if shared only exists on the system it must be added to target linking.