-
Notifications
You must be signed in to change notification settings - Fork 24k
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
Add the option to build Redis with modules #13524
Conversation
modules/redisearch/Makefile
Outdated
|
||
include ../common.mk | ||
|
||
get_source: $(BOOST_DIR)/.downloaded |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Leftover boost code.
5ee951e
to
ac2cbbd
Compare
modules/Makefile
Outdated
@@ -0,0 +1,72 @@ | |||
|
|||
SUBDIRS = rejson redistimeseries redisbloom redisearch |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wrong folder name for ReJSON
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suggest replacing the name of the directory to rejson instead of changing it here to redisjson
f7a3a89
to
3ae03e8
Compare
A new BUILD_WITH_MODULES flag was added to the Makefile to control building the module directory. The new module directory includes a general Makefile that iterates over each module, fetch a specific version, and build it.
3ae03e8
to
87e8d56
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approving on behalf @adamiBs
A new BUILD_WITH_MODULES flag was added to the Makefile to control
building the module directory.
The new module directory includes a general Makefile that iterates
over each module, fetch a specific version, and build it.