You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix the CMake `option()` name from `PYZMQ_LIBZMQ_NO_BUNDLE` to
`PYZMQ_NO_BUNDLE`. The latter is actually used below as the environment
variable and as the actual condition, as well as in the documentation.
Given that there are projects already using it, just fix the name passed
to `option()` to match.
Copy file name to clipboardExpand all lines: CMakeLists.txt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ option(ZMQ_DRAFT_API "whether to build the libzmq draft API" OFF)
21
21
option(PYZMQ_LIBZMQ_RPATH"Add $ZMQ_PREFIX/lib to $RPATH (true by default). Set to false if libzmq will be bundled or relocated and RPATH is handled separately"ON)
22
22
23
23
# anything new should start with PYZMQ_
24
-
option(PYZMQ_LIBZMQ_NO_BUNDLE"Prohibit building bundled libzmq. Useful for repackaging, to allow default search for libzmq and requiring it to succeed."OFF)
24
+
option(PYZMQ_NO_BUNDLE"Prohibit building bundled libzmq. Useful for repackaging, to allow default search for libzmq and requiring it to succeed."OFF)
25
25
set(PYZMQ_LIBZMQ_VERSION"4.3.5"CACHESTRING"libzmq version when bundling")
26
26
set(PYZMQ_LIBSODIUM_VERSION"1.0.20"CACHESTRING"libsodium version when bundling")
27
27
set(PYZMQ_LIBZMQ_URL""CACHESTRING"full URL to download bundled libzmq")
0 commit comments