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
[Build with libmultiprocess codegen tool. Useful to specify different libmultiprocess host system library and build system codegen tool prefixes when cross-compiling (default is host system libmultiprocess prefix)])],
242
+
[with_mpgen=$withval],
243
+
[with_mpgen=auto])
244
+
245
+
AC_ARG_ENABLE([multiprocess],
246
+
[AS_HELP_STRING([--enable-multiprocess],
247
+
[build multiprocess bitcoin-node, bitcoin-wallet, and bitcoin-gui executables in addition to monolithic bitcoind and bitcoin-qt executables. Requires libmultiprocess library. Experimental (default is no)])],
248
+
[enable_multiprocess=$enableval],
249
+
[enable_multiprocess=no])
250
+
233
251
AC_ARG_ENABLE(man,
234
252
[AS_HELP_STRING([--disable-man],
235
253
[do not install man pages (default is to install)])],,
AC_MSG_ERROR([--with-libmultiprocess=$with_libmultiprocess value is not yes, auto, or no])
1402
+
fi
1403
+
AC_SUBST(LIBMULTIPROCESS_CFLAGS)
1404
+
AC_SUBST(LIBMULTIPROCESS_LIBS)
1405
+
1406
+
dnl Enable multiprocess check
1407
+
1408
+
if test "x$enable_multiprocess" = xyes; then
1409
+
if test "x$libmultiprocess_found" != xyes; then
1410
+
AC_MSG_ERROR([--enable-multiprocess=yes option specified but libmultiprocess library was not found. May need to install libmultiprocess library, or specify install path with PKG_CONFIG_PATH environment variable. Running 'pkg-config --debug libmultiprocess' may be helpful for debugging.])
0 commit comments