diff options
author | Holger Freyther <zecke@selfish.org> | 2006-11-15 00:10:21 +0000 |
---|---|---|
committer | Holger Freyther <zecke@selfish.org> | 2006-11-15 00:10:21 +0000 |
commit | 942f721377d2a42a1f130d774858333d58ee7767 (patch) | |
tree | 31dbd64beb43995cf90dc2513d3355ba170323c7 /contrib/site-conf/m4/builtin.m4 | |
parent | 99a536b0501b9e5dc4883c3ca8861ef852566218 (diff) |
Add empty and almost empty m4 files for packages we have test results from
Start with the builtin.m4 which will generate test results for the
default/builtin autoconf functions.
The same pattern needs to be applied to every file...
Diffstat (limited to 'contrib/site-conf/m4/builtin.m4')
-rw-r--r-- | contrib/site-conf/m4/builtin.m4 | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/contrib/site-conf/m4/builtin.m4 b/contrib/site-conf/m4/builtin.m4 new file mode 100644 index 0000000000..03152f9560 --- /dev/null +++ b/contrib/site-conf/m4/builtin.m4 @@ -0,0 +1,19 @@ +# Built in tests of autoconf + +# Check the builtins +AC_DEFUN([OE_CHECK_BUILTIN], +[ +AC_REQUIRE_CPP +AC_PROG_CC +AC_LANG_C + +AC_FUNC_FNMATCH +AC_FUNC_MALLOC +AC_FUNC_GETPGRP +AC_FUNC_LSTAT +AC_FUNC_MMAP +AC_FUNC_MEMCMP +AC_FUNC_REALLOC +AC_FUNC_SETPGRP +AC_FUNC_SETVBUF_REVERSED +]) |