Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
uniset2
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
UniSet project repositories
uniset2
Commits
b34ace55
Commit
b34ace55
authored
Dec 29, 2014
by
Pavel Vainerman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Подправил ошибочку в configure.ac
parent
06f86247
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
configure.ac
configure.ac
+2
-2
No files found.
configure.ac
View file @
b34ace55
...
@@ -203,6 +203,7 @@ COV_LIBS=
...
@@ -203,6 +203,7 @@ COV_LIBS=
COV_CFLAGS=
COV_CFLAGS=
AC_MSG_CHECKING([tests support])
AC_MSG_CHECKING([tests support])
buildtests=true
buildtests=true
buildgcov=true
AC_ARG_ENABLE(tests, AC_HELP_STRING([--disable-tests], [disable tests build]),
AC_ARG_ENABLE(tests, AC_HELP_STRING([--disable-tests], [disable tests build]),
[ if test $enableval = yes; then buildtests=true; else buildtests=false; fi],[ buildtests=true; ])
[ if test $enableval = yes; then buildtests=true; else buildtests=false; fi],[ buildtests=true; ])
...
@@ -224,7 +225,6 @@ if test ${buildtests} = true; then
...
@@ -224,7 +225,6 @@ if test ${buildtests} = true; then
#check gcov
#check gcov
AC_MSG_CHECKING([test coverage])
AC_MSG_CHECKING([test coverage])
buildgcov=true
AC_ARG_ENABLE(coverage, AC_HELP_STRING([--disable-coverage], [disable gcov support]),
AC_ARG_ENABLE(coverage, AC_HELP_STRING([--disable-coverage], [disable gcov support]),
[ if test $enableval = yes; then buildgcov=true; else buildgcov=false; fi],[ buildgcov=true; ])
[ if test $enableval = yes; then buildgcov=true; else buildgcov=false; fi],[ buildgcov=true; ])
if test ${buildgcov} = true; then
if test ${buildgcov} = true; then
...
@@ -241,11 +241,11 @@ if test ${buildtests} = true; then
...
@@ -241,11 +241,11 @@ if test ${buildtests} = true; then
AC_MSG_RESULT([no])
AC_MSG_RESULT([no])
fi
fi
AM_CONDITIONAL(HAVE_COVERAGE, test ${buildgcov} = true)
else
else
AC_MSG_RESULT([no])
AC_MSG_RESULT([no])
fi
fi
AM_CONDITIONAL(HAVE_COVERAGE, test ${buildgcov} = true)
AM_CONDITIONAL(HAVE_TESTS, test ${buildtests} = true)
AM_CONDITIONAL(HAVE_TESTS, test ${buildtests} = true)
# export
# export
...
...
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