mirror of
https://github.com/Cisco-Talos/clamav.git
synced 2025-11-07 11:31:00 +00:00
by skipping checks that require it. (bb #1157) if configure is not able to find check, you can use --with-libcheck-prefix, instead of CHECK_CFLAGS and CHECK_LIBS. remove accidental AC_DEFINE GETHOSTBYNAME_R_6 from last commit. git-svn: trunk@4172
7 lines
221 B
C
7 lines
221 B
C
#include <stdio.h>
|
|
int main(int argc, char **argv)
|
|
{
|
|
puts("\n*** Unit tests disabled in this build\n*** Use ./configure --enable-check to enable them\n");
|
|
/* tell automake the test was skipped */
|
|
return 77;
|
|
}
|