diff --git a/configure b/configure index 48fb71ae8b4d6dd3506ddd5b768334897bf428da..5554bc8814d6759081462da42744f533cc7eb8c3 100755 --- a/configure +++ b/configure @@ -1297,13 +1297,11 @@ if test "${enable_gui+set}" = set; then enableval="$enable_gui" fi; - # Check whether --enable-parallel or --disable-parallel was given. if test "${enable_parallel+set}" = set; then enableval="$enable_parallel" fi; - # Check whether --enable-triangle or --disable-triangle was given. if test "${enable_triangle+set}" = set; then enableval="$enable_triangle" diff --git a/configure.in b/configure.in index 4ccaf62ad8bc5b41a0eb270cc703e642dc9ce40f..c6ef6fd3d87037a821b3bdaea27e0156ff5f333a 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -dnl "$Id: configure.in,v 1.14 2003-02-12 20:30:54 geuzaine Exp $" +dnl "$Id: configure.in,v 1.15 2003-02-12 20:37:24 geuzaine Exp $" dnl dnl Machine independent configuration script for Gmsh. dnl @@ -28,21 +28,24 @@ AC_INIT(Parser/Gmsh.y) dnl Parse --with command-line options AC_ARG_WITH(gsl-prefix, - [ --with-gsl-prefix=PFX prefix where GSL is installed], + AC_HELP_STRING([--with-gsl-prefix=PFX], + [prefix where GSL is installed]), [GSL_PREFIX=$withval],[GSL_PREFIX="$GSL_DIR"]) AC_ARG_WITH(fltk-prefix, - [ --with-fltk-prefix=PFX prefix where FLTK is installed], + AC_HELP_STRING([--with-fltk-prefix=PFX], + [prefix where FLTK is installed]), [FLTK_PREFIX=$withval],[FLTK_PREFIX="$FLTK_DIR"]) dnl Parse --enable command line options AC_ARG_ENABLE(gui, - [ --enable-gui build the graphical user interface (default=yes)]) - + AC_HELP_STRING([--enable-gui], + [build the graphical user interface (default=yes)])) AC_ARG_ENABLE(parallel, - [ --enable-parallel enable parallel version (default=no)]) - + AC_HELP_STRING([--enable-parallel], + [enable parallel version (default=no)])) AC_ARG_ENABLE(triangle, - [ --enable-triangle compile Triangle if available (default=yes)]) + AC_HELP_STRING([--enable-triangle], + [compile Triangle if available (default=yes)])) dnl Get the operating system and version number UNAME=`uname`