Index: configure.in =================================================================== diff -u -r21336c95f6123ebf608e5ab45b9674cffba35303 -r9333bfa110291a29fa898b0ce554e8848db5d031 --- configure.in (.../configure.in) (revision 21336c95f6123ebf608e5ab45b9674cffba35303) +++ configure.in (.../configure.in) (revision 9333bfa110291a29fa898b0ce554e8848db5d031) @@ -52,6 +52,10 @@ AC_HELP_STRING([--enable-assertions], [build nsf with assertion support (default: enabled)]), [enable_assertions=$enableval], [enable_assertions=yes]) +AC_ARG_ENABLE(assemble, + AC_HELP_STRING([--enable-assemble=yes|label|call], + [build nsf with assemble support (default: disabled)]), + [enable_assemble=$enableval], [enable_assemble=no]) subdirs="" @@ -168,6 +172,16 @@ AC_DEFINE(NSF_MEM_TRACE, 1, [Are we building with memcount tracing support?]) fi +if test "$enable_assemble" = yes; then + AC_DEFINE(NSF_ASSEMBLE, 1, [Are we building with assembly support?]) +fi +if test "$enable_assemble" = call; then + AC_DEFINE(NSF_ASSEMBLE_CT, 1, [Are we building with assembly call threading support?]) +fi +if test "$enable_assemble" = call; then + AC_DEFINE(NSF_ASSEMBLE_LT, 1, [Are we building with assembly label threading support?]) +fi + DTRACE_OBJ= if test "$with_dtrace" = yes; then AC_DEFINE(NSF_DTRACE, 1, [Are we building with DTrace support?])