Skip to content
Snippets Groups Projects
Commit 4062a3d1 authored by Jonathan Schöbel's avatar Jonathan Schöbel
Browse files

configure: log checking for check

It might be useful, to see, whether configure decided to run the tests.
parent 7e53e866
No related branches found
No related tags found
No related merge requests found
......@@ -31,14 +31,24 @@ AC_ARG_ENABLE([tests],
case ${enable_tests} in
yes)
PKG_CHECK_MODULES([CHECK], [check >= 0.9.4])
AC_MSG_CHECKING([whether to run tests])
AC_MSG_RESULT([yes])
;;
no)
AC_MSG_CHECKING([whether to run tests])
AC_MSG_RESULT([no])
;;
auto)
PKG_CHECK_MODULES([CHECK], [check >= 0.9.4],
[enable_tests=yes],
[
AC_MSG_CHECKING([whether to run tests])
enable_tests=yes
AC_MSG_RESULT([yes])
],
[
AC_MSG_CHECKING([whether to run tests])
enable_tests=no
AC_MSG_RESULT([yes])
AC_MSG_WARN([tests are disabled, due to missing check])
])
;;
......
......@@ -28,10 +28,10 @@ long_line_behaviour=1
long_line_column=72
[files]
current_page=55
current_page=2
FILE_NAME_0=139;None;0;EUTF-8;1;1;0;%2Fhome%2Fjonathan%2FDokumente%2Fprojekte%2Fprgm%2Finternet%2Fweb%2FSeFHT%2FREADME;0;8
FILE_NAME_1=134;None;0;EUTF-8;1;1;0;%2Fhome%2Fjonathan%2FDokumente%2Fprojekte%2Fprgm%2Finternet%2Fweb%2FSeFHT%2F.gitignore;0;8
FILE_NAME_2=1737;Sh;0;EUTF-8;1;1;0;%2Fhome%2Fjonathan%2FDokumente%2Fprojekte%2Fprgm%2Finternet%2Fweb%2FSeFHT%2Fconfigure.ac;0;8
FILE_NAME_2=1185;Sh;0;EUTF-8;1;1;0;%2Fhome%2Fjonathan%2FDokumente%2Fprojekte%2Fprgm%2Finternet%2Fweb%2FSeFHT%2Fconfigure.ac;0;8
FILE_NAME_3=73;Make;0;EUTF-8;1;1;0;%2Fhome%2Fjonathan%2FDokumente%2Fprojekte%2Fprgm%2Finternet%2Fweb%2FSeFHT%2Fsrc%2FMakefile.am;0;8
FILE_NAME_4=19;C;0;EUTF-8;1;1;0;%2Fhome%2Fjonathan%2FDokumente%2Fprojekte%2Fprgm%2Finternet%2Fweb%2FSeFHT%2Fsrc%2Fmain.c;0;8
FILE_NAME_5=1867;Make;0;EUTF-8;1;1;0;%2Fhome%2Fjonathan%2FDokumente%2Fprojekte%2Fprgm%2Finternet%2Fweb%2FSeFHT%2Fsrc%2Flib%2FMakefile.am;0;8
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment