diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2002-05-27 20:08:14 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2002-05-27 20:08:14 +0000 |
commit | 8aa4f5c7a2fc05380d231b6a38e7bec4cf51b82b (patch) | |
tree | 9e9bee0e3b435590271c9265944afe37416efcf4 /m4/gst-alsa.m4 | |
parent | f5a8b5bf36d14829e484ad106e1d459d64619f70 (diff) | |
download | gstreamer-plugins-bad-8aa4f5c7a2fc05380d231b6a38e7bec4cf51b82b.tar.gz |
no need for feature, it's in common various AC_HELP_STRING changes
Original commit message from CVS:
no need for feature, it's in common
various AC_HELP_STRING changes
Diffstat (limited to 'm4/gst-alsa.m4')
-rw-r--r-- | m4/gst-alsa.m4 | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/m4/gst-alsa.m4 b/m4/gst-alsa.m4 index 0ca35ef34..e1b0177a8 100644 --- a/m4/gst-alsa.m4 +++ b/m4/gst-alsa.m4 @@ -23,18 +23,20 @@ dnl dnl Get the cflags and libraries for alsa dnl AC_ARG_WITH(alsa-prefix, -[ --with-alsa-prefix=PFX Prefix where Alsa library is installed(optional)], -[alsa_prefix="$withval"], [alsa_prefix=""]) + AC_HELP_STRING([--with-alsa-prefix=PFX], + [prefix where Alsa library is installed(optional)]), + [alsa_prefix="$withval"], [alsa_prefix=""]) AC_ARG_WITH(alsa-inc-prefix, -[ --with-alsa-inc-prefix=PFX Prefix where include libraries are (optional)], -[alsa_inc_prefix="$withval"], [alsa_inc_prefix=""]) + AC_HELP_STRING([--with-alsa-inc-prefix=PFX], + [prefix where include libraries are (optional)]), + [alsa_inc_prefix="$withval"], [alsa_inc_prefix=""]) dnl FIXME: this is not yet implemented -AC_ARG_ENABLE(alsatest, -[ --disable-alsatest Do not try to compile and run a test Alsa program], -[enable_alsatest=no], -[enable_alsatest=yes]) +dnl AC_ARG_ENABLE(alsatest, +dnl AC_HELP_STRING([--disable-alsatest], +dnl [do not try to compile and run a test Alsa program], +dnl [enable_alsatest=no], [enable_alsatest=yes]) dnl Add any special include directories AC_MSG_CHECKING(for ALSA CFLAGS) |