mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 10:31:54 +01:00
Merge debian.(none):/M50/bug27739-5.0
into debian.(none):/M51/bug27739-5.1 configure.in: Auto merged
This commit is contained in:
commit
dfd0dbcf30
1 changed files with 16 additions and 0 deletions
16
configure.in
16
configure.in
|
@ -418,6 +418,22 @@ AC_SUBST(PERL5)
|
||||||
|
|
||||||
# icheck, used for ABI check
|
# icheck, used for ABI check
|
||||||
AC_PATH_PROG(ICHECK, icheck, no)
|
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)
|
AC_SUBST(ICHECK)
|
||||||
|
|
||||||
# Lock for PS
|
# Lock for PS
|
||||||
|
|
Loading…
Add table
Reference in a new issue