-config_query_option MIXSSE "Enable SSE/3DNow mixing support?" n \
- "--enable-dynsimd" "" &&
+# Old query & var name for dynsimd was misleading
+if [[ $MIXSSE ]]; then
+ local JACK_SIMD="$MIXSSE" &&
+ persistent_remove MIXSSE
+fi &&
+config_query_option JACK_SIMD \
+ "Enable dynamic SIMD selection?" n \
+ "--enable-dynsimd" \
+ "--disable-dynsimd" &&
+
+config_query_option JACK_SHM \
+ "Use POSIX shared memory API?" n \
+ "--enable-posix-shm" \
+ "--disable-posix-shm" &&
+
+config_query_option JACK_RESIZE \
+ "Enable buffer resizing feature?" n \
+ "--enable-resize" \
+ "--disable-resize" &&
config_query_option JACK_OPTIMIZE \
"Ask the compiler for its best optimizations?" n \
- "--enable-optimize" "" &&
+ "--enable-optimize" \
+ "--disable-optimize" &&