Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
f235f943
Commit
f235f943
authored
22 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
use AC_HELP macro
parent
56fc33f2
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
configure
+0
-2
0 additions, 2 deletions
configure
configure.in
+11
-8
11 additions, 8 deletions
configure.in
with
11 additions
and
10 deletions
configure
+
0
−
2
View file @
f235f943
...
@@ -1297,13 +1297,11 @@ if test "${enable_gui+set}" = set; then
...
@@ -1297,13 +1297,11 @@ if test "${enable_gui+set}" = set; then
enableval
=
"
$enable_gui
"
enableval
=
"
$enable_gui
"
fi
;
fi
;
# Check whether --enable-parallel or --disable-parallel was given.
# Check whether --enable-parallel or --disable-parallel was given.
if
test
"
${
enable_parallel
+set
}
"
=
set
;
then
if
test
"
${
enable_parallel
+set
}
"
=
set
;
then
enableval
=
"
$enable_parallel
"
enableval
=
"
$enable_parallel
"
fi
;
fi
;
# Check whether --enable-triangle or --disable-triangle was given.
# Check whether --enable-triangle or --disable-triangle was given.
if
test
"
${
enable_triangle
+set
}
"
=
set
;
then
if
test
"
${
enable_triangle
+set
}
"
=
set
;
then
enableval
=
"
$enable_triangle
"
enableval
=
"
$enable_triangle
"
...
...
This diff is collapsed.
Click to expand it.
configure.in
+
11
−
8
View file @
f235f943
dnl "$Id: configure.in,v 1.1
4
2003-02-12 20:3
0:5
4 geuzaine Exp $"
dnl "$Id: configure.in,v 1.1
5
2003-02-12 20:3
7:2
4 geuzaine Exp $"
dnl
dnl
dnl Machine independent configuration script for Gmsh.
dnl Machine independent configuration script for Gmsh.
dnl
dnl
...
@@ -28,21 +28,24 @@ AC_INIT(Parser/Gmsh.y)
...
@@ -28,21 +28,24 @@ AC_INIT(Parser/Gmsh.y)
dnl Parse --with command-line options
dnl Parse --with command-line options
AC_ARG_WITH(gsl-prefix,
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"])
[GSL_PREFIX=$withval],[GSL_PREFIX="$GSL_DIR"])
AC_ARG_WITH(fltk-prefix,
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"])
[FLTK_PREFIX=$withval],[FLTK_PREFIX="$FLTK_DIR"])
dnl Parse --enable command line options
dnl Parse --enable command line options
AC_ARG_ENABLE(gui,
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,
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,
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
dnl Get the operating system and version number
UNAME=`uname`
UNAME=`uname`
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment