Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Why3
why3
Commits
2007fc45
Commit
2007fc45
authored
Sep 21, 2012
by
Guillaume Melquiond
Browse files
Protect commas in M4 arguments.
parent
add2d390
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure.in
View file @
2007fc45
...
...
@@ -295,7 +295,7 @@ AC_CHECK_PROG(RUBBER,rubber,rubber,no)
if test "$enable_doc" = yes ; then
if test "$RUBBER" = no ; then
enable_doc=no
AC_MSG_WARN(cannot find rubber, documentation building disabled.)
AC_MSG_WARN(
[
cannot find rubber, documentation building disabled.
]
)
fi
fi
...
...
@@ -310,7 +310,7 @@ if test "$enable_ide" = yes ; then
LABLGTK2LIB="+lablgtk2"
AC_CHECK_FILE($OCAMLLIB/lablgtk2/lablgtk.cma,,enable_ide=no)
if test "$enable_ide" = no; then
AC_MSG_WARN(Lib lablgtk2 not found, IDE disabled.)
AC_MSG_WARN(
[
Lib lablgtk2 not found, IDE disabled.
]
)
reason_ide=" (lablgtk2 not found)"
fi
fi
...
...
@@ -326,7 +326,7 @@ if test "$enable_ide" = yes ; then
else
AC_CHECK_FILE($OCAMLLIB/lablgtk2/lablgtksourceview2.cma,,enable_ide=no)
if test "$enable_ide" = no; then
AC_MSG_WARN(Lib lablgtksourceview2 not found, IDE disabled.)
AC_MSG_WARN(
[
Lib lablgtksourceview2 not found, IDE disabled.
]
)
reason_ide=" (lablgtksourceview2 not found)"
fi
fi
...
...
@@ -360,7 +360,7 @@ if test "$enable_bench" = yes ; then
SQLITE3LIB="+sqlite3"
AC_CHECK_FILE($OCAMLLIB/sqlite3/sqlite3.cma,,enable_bench=no)
if test "$enable_bench" = no; then
AC_MSG_WARN(Lib sqlite3 not found, why3bench disabled.)
AC_MSG_WARN(
[
Lib sqlite3 not found, why3bench disabled.
]
)
fi
fi
fi
...
...
@@ -513,7 +513,7 @@ if test "$enable_hypothesis_selection" = yes; then
OCAMLGRAPHLIB="+ocamlgraph"
AC_CHECK_FILE($OCAMLLIB/ocamlgraph/,,enable_hypothesis_selection=no)
if test "$enable_hypothesis_selection" = no; then
AC_MSG_WARN(Lib ocamlgraph not found, hypothesis selection disabled.)
AC_MSG_WARN(
[
Lib ocamlgraph not found, hypothesis selection disabled.
]
)
fi
fi
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment