Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Charles Southerland
frama-c
Commits
07f1261f
Commit
07f1261f
authored
10 years ago
by
Julien Signoles
Browse files
Options
Downloads
Patches
Plain Diff
[configure] compatibility with Neon, whatever the release number is
parent
9ed6bffd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/plugins/e-acsl/configure.ac
+17
-12
17 additions, 12 deletions
src/plugins/e-acsl/configure.ac
with
17 additions
and
12 deletions
src/plugins/e-acsl/configure.ac
+
17
−
12
View file @
07f1261f
...
@@ -52,23 +52,28 @@ check_plugin_dependencies
...
@@ -52,23 +52,28 @@ check_plugin_dependencies
#######################
#######################
AC_MSG_CHECKING(for Frama-C version)
AC_MSG_CHECKING(for Frama-C version)
AC_MSG_RESULT($FRAMAC_VERSION)
DEV_VERSION_NUMBER=`echo $FRAMAC_VERSION | sed -e 's/.*-\(.*\)/\1/' `
DEV_VERSION_NUMBER=`echo $FRAMAC_VERSION | sed -e 's/.*-\(.*\)/\1/' `
VERSION_NUMBER=`echo $DEV_VERSION_NUMBER | sed -e 's/\(.*\)+dev/\1/' `
VERSION_NUMBER=`echo $DEV_VERSION_NUMBER | sed -e 's/\(.*\)+dev/\1/' `
REQUIRED_NUMBER=20140301
REQUIRED_NUMBER=20140301
if test $VERSION_NUMBER -lt $REQUIRED_NUMBER; then
case $FRAMAC_VERSION in
AC_MSG_ERROR(Frama-C version must be at least Neon-$REQUIRED_NUMBER.)
Neon*)
else
# # at the time being, must use the Frama-C development version
# DEV=`echo $DEV_VERSION_NUMBER | sed -e 's/.*\(+dev\)/\1/' `
# # at the time being, must use the Frama-C development version
# if test "$DEV" != "+dev"; then
# DEV=`echo $DEV_VERSION_NUMBER | sed -e 's/.*\(+dev\)/\1/' `
# AC_MSG_ERROR(Frama-C version must be the current GIT version.);
# if test "$DEV" != "+dev"; then
# fi
# AC_MSG_ERROR(Frama-C version must be the current GIT version.);
;;
# else
*)
AC_MSG_RESULT($FRAMAC_VERSION)
if test $VERSION_NUMBER -lt $REQUIRED_NUMBER; then
# fi
AC_MSG_ERROR(Frama-C version must be at least Neon-$REQUIRED_NUMBER.)
fi
else
AC_MSG_WARN(Frama-C version is more recent than Neon: \
use it at your own risk)
fi;;
esac
# OCaml version
# OCaml version
###############
###############
...
...
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