summaryrefslogtreecommitdiffstats
path: root/m4/gst-sdl.m4
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2002-05-27 20:08:14 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2002-05-27 20:08:14 +0000
commit605343fbd160881edfb250a06067e38d49ffd9e3 (patch)
tree924415176989af7a53d42fd58feb64827bbfcfcd /m4/gst-sdl.m4
parentbc465f160cb8c2e6e7ca1a3b01b2a1483d635803 (diff)
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-sdl.m4')
-rw-r--r--m4/gst-sdl.m420
1 files changed, 14 insertions, 6 deletions
diff --git a/m4/gst-sdl.m4 b/m4/gst-sdl.m4
index a62b33c2..5284fae0 100644
--- a/m4/gst-sdl.m4
+++ b/m4/gst-sdl.m4
@@ -14,12 +14,20 @@ AC_DEFUN(AM_PATH_SDL,
[dnl
dnl Get the cflags and libraries from the sdl-config script
dnl
-AC_ARG_WITH(sdl-prefix,[ --with-sdl-prefix=PFX Prefix where SDL is installed (optional)],
- sdl_prefix="$withval", sdl_prefix="")
-AC_ARG_WITH(sdl-exec-prefix,[ --with-sdl-exec-prefix=PFX Exec prefix where SDL is installed (optional)],
- sdl_exec_prefix="$withval", sdl_exec_prefix="")
-AC_ARG_ENABLE(sdltest, [ --disable-sdltest Do not try to compile and run a test SDL program],
- , enable_sdltest=yes)
+AC_ARG_WITH(sdl-prefix,
+ AC_HELP_STRING([--with-sdl-prefix=PFX],
+ [prefix where SDL is installed (optional)]),
+ sdl_prefix="$withval", sdl_prefix="")
+
+AC_ARG_WITH(sdl-exec-prefix,
+ AC_HELP_STRING([--with-sdl-exec-prefix=PFX],
+ [exec prefix where SDL is installed (optional)]),
+ sdl_exec_prefix="$withval", sdl_exec_prefix="")
+
+AC_ARG_ENABLE(sdltest,
+ AC_HELP_STRING([--disable-sdltest],
+ [do not try to compile and run a test SDL program]),
+ , enable_sdltest=yes)
if test x$sdl_exec_prefix != x ; then
sdl_args="$sdl_args --exec-prefix=$sdl_exec_prefix"