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
HeteroFlow
THAPI
Commits
58c5b77d
Commit
58c5b77d
authored
Oct 19, 2020
by
Brice Videau
Browse files
Better configure output.
parent
e12dd504
Pipeline
#11653
canceled with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
58c5b77d
...
...
@@ -21,24 +21,24 @@ LT_INIT([disable-static])
AC_PROG_CXX
AC_PROG_CC
if test -z "$RUBY"; then
AC_CHECK_PROG(RUBY,[ruby],[ruby],[
:
])
test "$RUBY" == "
:
" && AC_MSG_ERROR([Required program 'ruby' not found.])
AC_CHECK_PROG(RUBY,[ruby],[ruby],[
no
])
test "$RUBY" == "
no
" && AC_MSG_ERROR([Required program 'ruby' not found.])
fi
if test -z "$ERB"; then
AC_CHECK_PROG(ERB,[erb],[erb],[
:
])
test "$ERB" == "
:
" && AC_MSG_ERROR([Required program 'erb' not found.])
AC_CHECK_PROG(ERB,[erb],[erb],[
no
])
test "$ERB" == "
no
" && AC_MSG_ERROR([Required program 'erb' not found.])
fi
if test -z "$LTTNG_GEN_TP"; then
AC_CHECK_PROG(LTTNG_GEN_TP,[lttng-gen-tp],[lttng-gen-tp],[
:
])
test "$LTTNG_GEN_TP" == "
:
" && AC_MSG_ERROR([Required program 'lttng-gen-tp' not found.])
AC_CHECK_PROG(LTTNG_GEN_TP,[lttng-gen-tp],[lttng-gen-tp],[
no
])
test "$LTTNG_GEN_TP" == "
no
" && AC_MSG_ERROR([Required program 'lttng-gen-tp' not found.])
fi
if test -z "$BABELTRACE2_PROG"; then
AC_CHECK_PROG(BABELTRACE2_PROG,[babeltrace2],[babeltrace2],[
:
])
test "$BABELTRACE2_PROG" == "
:
" && AC_MSG_ERROR([Required program 'babeltrace2' not found.])
AC_CHECK_PROG(BABELTRACE2_PROG,[babeltrace2],[babeltrace2],[
no
])
test "$BABELTRACE2_PROG" == "
no
" && AC_MSG_ERROR([Required program 'babeltrace2' not found.])
fi
if test -z "$PATCH"; then
AC_CHECK_PROG(PATCH,[patch],[patch],[
:
])
test "$PATCH" == "
:
" && AC_MSG_ERROR([Required program 'patch' not found.])
AC_CHECK_PROG(PATCH,[patch],[patch],[
no
])
test "$PATCH" == "
no
" && AC_MSG_ERROR([Required program 'patch' not found.])
fi
# Checks for libraries.
...
...
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