summaryrefslogtreecommitdiffstats
path: root/audio-libs/flac/CONFIGURE
diff options
context:
space:
mode:
Diffstat (limited to 'audio-libs/flac/CONFIGURE')
-rwxr-xr-xaudio-libs/flac/CONFIGURE22
1 files changed, 19 insertions, 3 deletions
diff --git a/audio-libs/flac/CONFIGURE b/audio-libs/flac/CONFIGURE
index 61f5081f9b..92878f6ac1 100755
--- a/audio-libs/flac/CONFIGURE
+++ b/audio-libs/flac/CONFIGURE
@@ -1,3 +1,19 @@
-config_query_option CONF_OPTS "Enable debugging?" n "--enable-debug" "--disable-debug"
-config_query_option CONF_OPTS "Enable SSE opcodes support?" n "--enable-sse" "--disable-sse"
-config_query_option CONF_OPTS "Enable 3DNow! opcodes support?" n "--enable-3dnow" "--disable-3dnow"
+config_query_option CONF_OPTS "Build static libraries?" y \
+ "--enable-static" \
+ "--disable-static" &&
+
+config_query_option CONF_OPTS "Enable debugging?" n \
+ "--enable-debug" \
+ "--disable-debug" &&
+
+config_query_option CONF_OPTS "Enable SSE (Intel) opcodes support?" n \
+ "--enable-sse" \
+ "--disable-sse" &&
+
+config_query_option CONF_OPTS "Enable 3DNow! (AMD) opcodes support?" n \
+ "--enable-3dnow" \
+ "--disable-3dnow"
+
+config_query_option CONF_OPTS "Enable AltiVec (PowerPC) opcodes support?" n \
+ "--enable-altivec" \
+ "--disable-altivec"