1
0
Fork 0
arangodb/m4/configure.information

61 lines
1.8 KiB
Plaintext

dnl -*- mode: Autoconf; -*-
dnl ----------------------------------------------------------------------------
dnl information
dnl ----------------------------------------------------------------------------
if test "x$BASIC_INFO" != "x"; then
AC_MSG_NOTICE([--------------------------------------------------------------------------------])
echo $BASIC_INFO | tr "|" "\n" | sort | while read a; do
if test "x$a" != "x"; then
AC_MSG_NOTICE([$[]a])
fi
done
fi
if test "x$LIB_INFO" != "x"; then
AC_MSG_NOTICE([--------------------------------------------------------------------------------])
echo $LIB_INFO | tr "|" "\n" | while read a; do
if test "x$a" != "x"; then
AC_MSG_NOTICE([$[]a])
fi
done
fi
if test "x$TOOL_INFO" != "x"; then
AC_MSG_NOTICE([--------------------------------------------------------------------------------])
echo $TOOL_INFO | tr "|" "\n" | sort | while read a; do
if test "x$a" != "x"; then
AC_MSG_NOTICE([$[]a])
fi
done
fi
AC_MSG_NOTICE([--------------------------------------------------------------------------------])
AC_MSG_NOTICE([REPOSITORY VERSION: ${TRI_REPOSITORY_VERSION}])
AC_MSG_NOTICE([BITS: ${TRI_BITS}])
AC_MSG_NOTICE([CPPFLAGS: ${CPPFLAGS}])
AC_MSG_NOTICE([CFLAGS: ${CFLAGS}])
AC_MSG_NOTICE([CXXFLAGS: ${CXXFLAGS}])
AC_MSG_NOTICE([LDFLAGS: ${LDFLAGS}])
AC_MSG_NOTICE([LIBS: ${LIBS}])
CC_VERSION=`${CC} --version 2>&1`
AC_MSG_NOTICE([CC: ${CC}])
AC_MSG_NOTICE([CC VERSION: ${CC_VERSION}])
CXX_VERSION=`${CXX} --version 2>&1`
AC_MSG_NOTICE([CXX: ${CXX}])
AC_MSG_NOTICE([CXX VERSION: ${CXX_VERSION}])
echo $FLAG_INFO | tr "|" "\n" | while read a; do
if test "x$a" != "x"; then
AC_MSG_NOTICE([$[]a])
fi
done
AC_MSG_NOTICE([--------------------------------------------------------------------------------])