diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-03-26 14:21:10 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-03-26 14:21:10 +0000 |
commit | 386f722f1312fb6297fc7a3cd9b85446b55c0330 (patch) | |
tree | 363886aba011e4646a4b909bf09206b947ec7264 /m4/opengl.m4 | |
parent | 6036eb14f8ee8573055a0a12692bb83b32a15ba9 (diff) | |
download | xine-lib-386f722f1312fb6297fc7a3cd9b85446b55c0330.tar.gz xine-lib-386f722f1312fb6297fc7a3cd9b85446b55c0330.tar.bz2 |
Use AS_HELP_STRING instead of the deprecated AC_HELP_STRING.
CVS patchset: 8751
CVS date: 2007/03/26 14:21:10
Diffstat (limited to 'm4/opengl.m4')
-rw-r--r-- | m4/opengl.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/opengl.m4 b/m4/opengl.m4 index 82534be91..5e79c1e8a 100644 --- a/m4/opengl.m4 +++ b/m4/opengl.m4 @@ -6,11 +6,11 @@ dnl AC_DEFUN([AM_PATH_OPENGL], [ - AC_ARG_ENABLE(opengl, AC_HELP_STRING([--disable-opengl], [do not build OpenGL plugin]), + AC_ARG_ENABLE(opengl, AS_HELP_STRING([--disable-opengl], [do not build OpenGL plugin]), [enableopengl=$enableval], [enableopengl="yes"] ) - AC_ARG_ENABLE(glu, AC_HELP_STRING([--disable-glu], [build OpenGL plugin without GLU (no verbose errors)]), + AC_ARG_ENABLE(glu, AS_HELP_STRING([--disable-glu], [build OpenGL plugin without GLU (no verbose errors)]), [enableglu=$enableval], [enableglu="yes"] ) |