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
ce2e28a7
Commit
ce2e28a7
authored
16 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
*** empty log message ***
parent
b06fb91e
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
configure
+23
-11
23 additions, 11 deletions
configure
with
23 additions
and
11 deletions
configure
+
23
−
11
View file @
ce2e28a7
...
...
@@ -1282,6 +1282,7 @@ Optional Features:
--enable-osmesa use OSMesa for offscreen rendering (default=no)
--enable-cgns enable CGNS output (default=no)
--enable-occ enable OpenCascade support (default=no)
--enable-hdf5 enable HDF5 support (default=no)
--enable-med enable MED support (default=yes)
--enable-fm enable support for FourierModel (default=yes)
--enable-universal enable support for universal binaries on Mac
...
...
@@ -1934,6 +1935,11 @@ if test "${enable_occ+set}" = set; then
enableval
=
$enable_occ
;
fi
# Check whether --enable-hdf5 was given.
if
test
"
${
enable_hdf5
+set
}
"
=
set
;
then
enableval
=
$enable_hdf5
;
fi
# Check whether --enable-med was given.
if
test
"
${
enable_med
+set
}
"
=
set
;
then
enableval
=
$enable_med
;
...
...
@@ -1973,6 +1979,7 @@ if test "x$enable_minimal" = "xyes"; then
enable_chaco
=
no
;
enable_med
=
no
;
enable_cgns
=
no
;
enable_hdf5
=
no
;
enable_zlib
=
no
;
if
test
"x
$enable_post
"
!=
"xyes"
;
then
enable_post
=
no
;
...
...
@@ -5650,8 +5657,13 @@ echo "$as_me: WARNING: Could not find FFTW3: disabling FourierModel." >&2;}
fi
fi
if
test
"x
${
ZLIB
}
"
=
"xyes"
;
then
if
test
"x
$enable_med
"
!=
"xno"
;
then
if
test
"x
${
HDF5_PREFIX
}
"
!=
"x"
-a
"x
$enable_hdf5
"
!=
"xno"
;
then
enable_hdf5
=
yes
fi
if
test
"x
${
ZLIB
}
"
=
"xyes"
-a
"x
$enable_med
"
!=
"xno"
;
then
enable_hdf5
=
yes
fi
if
test
"x
$enable_hdf5
"
=
"xyes"
;
then
if
test
"x
${
HDF5_PREFIX
}
"
!=
"x"
;
then
LDFLAGS
=
"-L
${
HDF5_PREFIX
}
/lib
${
LDFLAGS
}
"
fi
...
...
@@ -5716,14 +5728,14 @@ else
HDF5
=
"no"
fi
if
test
"x
${
HDF5
}
"
=
"xyes"
;
then
LIBS
=
"-lhdf5
${
LIBS
}
"
# Necessary for CGNS with HDF5
fi
fi
if
test
"x
${
CGNS_PREFIX
}
"
!=
"x"
;
then
if
test
"x
$enable_cgns
"
!=
"xno"
;
then
if
test
"x
${
CGNS_PREFIX
}
"
!=
"x"
-a
"x
$enable_cgns
"
!=
"xno"
;
then
enable_cgns
=
"yes"
fi
fi
if
test
"x
$enable_cgns
"
=
"xyes"
;
then
if
test
"x
${
CGNS_PREFIX
}
"
!=
"x"
;
then
LDFLAGS
=
"-L
${
CGNS_PREFIX
}
/lib
${
LDFLAGS
}
"
...
...
@@ -5734,7 +5746,7 @@ if test "${ac_cv_lib_cgns_main+set}" = set; then
echo
$ECHO_N
"(cached)
$ECHO_C
"
>
&6
else
ac_check_lib_save_LIBS
=
$LIBS
LIBS
=
"-lcgns
-lhdf5
$LIBS
"
LIBS
=
"-lcgns
$LIBS
"
cat
>
conftest.
$ac_ext
<<
_ACEOF
/* confdefs.h. */
_ACEOF
...
...
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