# svn status M bsd.port.mk Index: bsd.port.mk =================================================================== --- bsd.port.mk (revision 313775) +++ bsd.port.mk (working copy) @@ -6214,10 +6214,15 @@ .if !empty(ALL_OPTIONS) || !empty(OPTIONS_SINGLE) || !empty(OPTIONS_MULTI) || !empty(OPTIONS_RADIO) || !empty(OPTIONS_GROUP) @${ECHO_MSG} "===> The following configuration options are available for ${PKGNAME}": .for opt in ${ALL_OPTIONS} +. if !empty(PORT_OPTIONS:M${opt}) + @${ECHO_MSG} -n " (*) " +. else + @${ECHO_MSG} -n " " +. endif . if empty(PORT_OPTIONS:M${opt}) - @${ECHO_MSG} -n " ${opt}=off" + @${ECHO_MSG} -n "${opt}=off" . else - @${ECHO_MSG} -n " ${opt}=on" + @${ECHO_MSG} -n "${opt}=on" . endif . if !empty(${opt}_DESC) @${ECHO_MSG} -n ": "${${opt}_DESC:Q} @@ -6228,10 +6233,15 @@ .for multi in ${OPTIONS_MULTI} @${ECHO_MSG} "====> Options available for the multi ${multi}: you have to choose at least one of them" . for opt in ${OPTIONS_MULTI_${multi}} +. if !empty(PORT_OPTIONS:M${opt}) + @${ECHO_MSG} -n " (*) " +. else + @${ECHO_MSG} -n " " +. endif . if empty(PORT_OPTIONS:M${opt}) - @${ECHO_MSG} -n " ${opt}=off" + @${ECHO_MSG} -n "${opt}=off" . else - @${ECHO_MSG} -n " ${opt}=on" + @${ECHO_MSG} -n "${opt}=on" . endif . if !empty(${opt}_DESC) @${ECHO_MSG} -n ": "${${opt}_DESC:Q} @@ -6244,10 +6254,15 @@ .for single in ${OPTIONS_SINGLE} @${ECHO_MSG} "====> Options available for the single ${single}: you have to select exactly one of them" . for opt in ${OPTIONS_SINGLE_${single}} +. if !empty(PORT_OPTIONS:M${opt}) + @${ECHO_MSG} -n " (*) " +. else + @${ECHO_MSG} -n " " +. endif . if empty(PORT_OPTIONS:M${opt}) - @${ECHO_MSG} -n " ${opt}=off" + @${ECHO_MSG} -n "${opt}=off" . else - @${ECHO_MSG} -n " ${opt}=on" + @${ECHO_MSG} -n "${opt}=on" . endif . if !empty(${opt}_DESC) @${ECHO_MSG} -n ": "${${opt}_DESC:Q} @@ -6259,10 +6274,15 @@ .for radio in ${OPTIONS_RADIO} @${ECHO_MSG} "====> Options available for the radio ${radio}: you can only select none or one of them" . for opt in ${OPTIONS_RADIO_${radio}} +. if !empty(PORT_OPTIONS:M${opt}) + @${ECHO_MSG} -n " (*) " +. else + @${ECHO_MSG} -n " " +. endif . if empty(PORT_OPTIONS:M${opt}) - @${ECHO_MSG} -n " ${opt}=off" + @${ECHO_MSG} -n "${opt}=off" . else - @${ECHO_MSG} -n " ${opt}=on" + @${ECHO_MSG} -n "${opt}=on" . endif . if !empty(${opt}_DESC) @${ECHO_MSG} -n ": "${${opt}_DESC:Q} @@ -6274,10 +6294,15 @@ .for group in ${OPTIONS_GROUP} @${ECHO_MSG} "====> Options available for the group ${group}" . for opt in ${OPTIONS_GROUP_${group}} +. if !empty(PORT_OPTIONS:M${opt}) + @${ECHO_MSG} -n " (*) " +. else + @${ECHO_MSG} -n " " +. endif . if empty(PORT_OPTIONS:M${opt}) - @${ECHO_MSG} -n " ${opt}=off" + @${ECHO_MSG} -n "${opt}=off" . else - @${ECHO_MSG} -n " ${opt}=on" + @${ECHO_MSG} -n "${opt}=on" . endif . if !empty(${opt}_DESC) @${ECHO_MSG} -n ": "${${opt}_DESC:Q} @@ -6291,6 +6316,7 @@ .undef radio .undef group .undef opt + @${ECHO_MSG} "===> * = The selected value matches the default" @${ECHO_MSG} "===> Use 'make config' to modify these settings" .endif .endif # showconfig