diff options
author | unknown <joerg@debian.(none)> | 2007-04-20 12:25:50 +0200 |
---|---|---|
committer | unknown <joerg@debian.(none)> | 2007-04-20 12:25:50 +0200 |
commit | ad14c2475b523c39d06767896ae6d98178fcc579 (patch) | |
tree | df0671dc04129b4cbfeba24df027193b8cb48ad0 /configure.in | |
parent | 253da118d2e5926c4caa80866eebbbba26cd19f0 (diff) | |
parent | 26aba3fb2c2924f530d258593abecda5d3a90a22 (diff) | |
download | mariadb-git-ad14c2475b523c39d06767896ae6d98178fcc579.tar.gz |
Merge debian.(none):/M50/bug27739-5.0
into debian.(none):/M50/push-5.0
configure.in:
Auto merged
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 75a006ac07a..d5ff3afa57b 100644 --- a/configure.in +++ b/configure.in @@ -459,6 +459,22 @@ AC_SUBST(MAKEINDEX) # icheck, used for ABI check AC_PATH_PROG(ICHECK, icheck, no) +# "icheck" is also the name of a file system check program on Tru64. +# Verify the program found is really the interface checker. +if test "x$ICHECK" != "xno" +then + AC_MSG_CHECKING(if $ICHECK works as expected) + echo "int foo;" > conftest.h + $ICHECK --canonify -o conftest.ic conftest.h 2>/dev/null + if test -f "conftest.ic" + then + AC_MSG_RESULT(yes) + else + AC_MSG_RESULT(no) + ICHECK=no + fi + rm -f conftest.ic conftest.h +fi AC_SUBST(ICHECK) # Lock for PS |