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
Some configure options / dependencies only become available
in case the user selected some other option before (e.g. Xpm image support
in nethack doesn't work without libX11 support).
This does not necessarily require a change in our codebase, but we need a unified way
to handle these cases and "(select only when also XYZ)" in the description is not adequate at all.
Is something like the following supported at the moment for DEPENDS/CONFIGURE and do we want this? @sofar mentioned that there should be no logic in CONFIGURE/DEPENDS...
if selected_dependency ABC; then
optional_dependency EFG "--enable-EFG" "--disable-EFG" "EFG support"
fi
The text was updated successfully, but these errors were encountered:
There is a different between , and : this different is mainly for formating the depends question. The implementation of , and : would probably be the same.
The logic of `optional_depends "base:incremental" (which way around?) would then automatically add
base as an accepted optional dependency on "y" for the module and the second question will not be asked.
Some configure options / dependencies only become available
in case the user selected some other option before (e.g. Xpm image support
in nethack doesn't work without libX11 support).
This does not necessarily require a change in our codebase, but we need a unified way
to handle these cases and "(select only when also XYZ)" in the description is not adequate at all.
Is something like the following supported at the moment for DEPENDS/CONFIGURE and do we want this?
@sofar mentioned that there should be no logic in CONFIGURE/DEPENDS...
The text was updated successfully, but these errors were encountered: