drac@unique /tmp/xfdesktop-4.4.1 $ ./configure --help | grep menu --disable-menueditor Do not build the menueditor (default=enabled) while in configure.ac.. -- cut -- AC_ARG_ENABLE([menu-editor], AC_HELP_STRING([--disable-menueditor], [Do not build the menueditor (default=enabled)]), [ac_cv_enable_menueditor=$enableval], [ac_cv_enable_menueditor=yes]) if test "x$ac_cv_enable_menueditor" = "xno"; then build_menueditor="no" else build_menueditor="yes" fi AM_CONDITIONAL([BUILD_MENUEDITOR], [test "x$build_menueditor" = "xyes"]) -- cut -- It's actually --disable-menu-editor with extra -
Created attachment 1184 Trivial Menu Editor Config Option Patch
Created attachment 1185 Menu Editor Config Option Patch (2nd try) Sorry, first patch was flawed. This one is better.
Committed, thanks.