upload tizen2.0 source
[external/check.git] / check.m4
1 dnl AM_PATH_CHECK([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
2 dnl Test for check, and define CHECK_CFLAGS and CHECK_LIBS
3 dnl
4
5 AC_DEFUN([AM_PATH_CHECK],
6 [
7   AC_MSG_WARN([A@&t@M_PATH_CHECK() is deprecated])
8   AC_MSG_WARN([[use P@&t@KG_CHECK_MODULES([CHECK], [check >= 0.9.4]) instead]])
9   AC_ARG_WITH([check],
10   [  --with-check=PATH       prefix where check is installed [default=auto]])
11  
12   min_check_version=ifelse([$1], ,0.8.2,$1)
13
14   AC_MSG_CHECKING(for check - version >= $min_check_version)
15
16   if test x$with_check = xno; then
17     AC_MSG_RESULT(disabled)
18     ifelse([$3], , AC_MSG_ERROR([disabling check is not supported]), [$3])
19   else
20     if test "x$with_check" != x; then
21       CHECK_CFLAGS="-I$with_check/include"
22       CHECK_LIBS="-L$with_check/lib -lcheck"
23     else
24       CHECK_CFLAGS=""
25       CHECK_LIBS="-lcheck"
26     fi
27
28     ac_save_CFLAGS="$CFLAGS"
29     ac_save_LIBS="$LIBS"
30
31     CFLAGS="$CFLAGS $CHECK_CFLAGS"
32     LIBS="$CHECK_LIBS $LIBS"
33
34     rm -f conf.check-test
35     AC_COMPILE_IFELSE([AC_LANG_SOURCE([AC_INCLUDES_DEFAULT([])
36 #include <check.h>
37
38 int main ()
39 {
40   int major, minor, micro;
41   char *tmp_version;
42
43   system ("touch conf.check-test");
44
45   /* HP/UX 9 (%@#!) writes to sscanf strings */
46   tmp_version = strdup("$min_check_version");
47   if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
48      printf("%s, bad version string\n", "$min_check_version");
49      return 1;
50    }
51     
52   if ((CHECK_MAJOR_VERSION != check_major_version) ||
53       (CHECK_MINOR_VERSION != check_minor_version) ||
54       (CHECK_MICRO_VERSION != check_micro_version))
55     {
56       printf("\n*** The check header file (version %d.%d.%d) does not match\n",
57              CHECK_MAJOR_VERSION, CHECK_MINOR_VERSION, CHECK_MICRO_VERSION);
58       printf("*** the check library (version %d.%d.%d).\n",
59              check_major_version, check_minor_version, check_micro_version);
60       return 1;
61     }
62
63   if ((check_major_version > major) ||
64       ((check_major_version == major) && (check_minor_version > minor)) ||
65       ((check_major_version == major) && (check_minor_version == minor) && (check_micro_version >= micro)))
66     {
67       return 0;
68     }
69   else
70     {
71       printf("\n*** An old version of check (%d.%d.%d) was found.\n",
72              check_major_version, check_minor_version, check_micro_version);
73       printf("*** You need a version of check being at least %d.%d.%d.\n", major, minor, micro);
74       printf("***\n"); 
75       printf("*** If you have already installed a sufficiently new version, this error\n");
76       printf("*** probably means that the wrong copy of the check library and header\n");
77       printf("*** file is being found. Rerun configure with the --with-check=PATH option\n");
78       printf("*** to specify the prefix where the correct version was installed.\n");
79     }
80
81   return 1;
82 }
83 ])],, no_check=yes, [echo $ac_n "cross compiling; assumed OK... $ac_c"])
84
85     CFLAGS="$ac_save_CFLAGS"
86     LIBS="$ac_save_LIBS"
87
88     if test "x$no_check" = x ; then
89       AC_MSG_RESULT(yes)
90       ifelse([$2], , :, [$2])
91     else
92       AC_MSG_RESULT(no)
93       if test -f conf.check-test ; then
94         :
95       else
96         echo "*** Could not run check test program, checking why..."
97         CFLAGS="$CFLAGS $CHECK_CFLAGS"
98         LIBS="$CHECK_LIBS $LIBS"
99         AC_TRY_LINK([
100 #include <stdio.h>
101 #include <stdlib.h>
102
103 #include <check.h>
104 ], ,  [ echo "*** The test program compiled, but did not run. This usually means"
105         echo "*** that the run-time linker is not finding check. You'll need to set your"
106         echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
107         echo "*** to the installed location  Also, make sure you have run ldconfig if that"
108         echo "*** is required on your system"
109         echo "***"
110         echo "*** If you have an old version installed, it is best to remove it, although"
111         echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"],
112       [ echo "*** The test program failed to compile or link. See the file config.log for"
113         echo "*** the exact error that occured." ])
114       
115         CFLAGS="$ac_save_CFLAGS"
116         LIBS="$ac_save_LIBS"
117       fi
118
119       CHECK_CFLAGS=""
120       CHECK_LIBS=""
121
122       rm -f conf.check-test
123       ifelse([$3], , AC_MSG_ERROR([check not found]), [$3])
124     fi
125
126     AC_SUBST(CHECK_CFLAGS)
127     AC_SUBST(CHECK_LIBS)
128
129     rm -f conf.check-test
130
131   fi
132 ])