[llvm-commits] CVS: llvm/autoconf/acinclude.m4
Brian Gaeke
gaeke at cs.uiuc.edu
Tue Jul 20 20:50:11 PDT 2004
Changes in directory llvm/autoconf:
acinclude.m4 updated: 1.8 -> 1.9
---
Log message:
Add AC_MSG_CHECKING and AC_MSG_RESULT statements which were missing
from two of our custom checks.
---
Diffs of the changes: (+4 -0)
Index: llvm/autoconf/acinclude.m4
diff -u llvm/autoconf/acinclude.m4:1.8 llvm/autoconf/acinclude.m4:1.9
--- llvm/autoconf/acinclude.m4:1.8 Tue Jul 20 22:30:27 2004
+++ llvm/autoconf/acinclude.m4 Tue Jul 20 22:50:01 2004
@@ -6210,6 +6210,7 @@
# http://www.gnu.org/software/ac-archive/htmldoc/ac_cxx_have_ext_slist.html
AC_DEFUN([AC_C_PRINTF_A],
[
+ AC_MSG_CHECKING([for printf %a format specifier])
AC_LANG_SAVE
AC_LANG_C
AC_RUN_IFELSE(
@@ -6229,6 +6230,7 @@
return (0);]]]),
ac_c_printf_a=yes,ac_c_printf_a=no)
AC_LANG_RESTORE
+ AC_MSG_RESULT($ac_c_printf_a)
if test "$ac_c_printf_a" = "yes"; then
AC_DEFINE([HAVE_PRINTF_A],[1],[Define to have the %a format string])
fi
@@ -6239,6 +6241,7 @@
#
AC_DEFUN([AC_LINK_USE_R],
[
+ AC_MSG_CHECKING([for compiler -Wl,-R<path> option])
AC_LANG_SAVE
AC_LANG_C
oldcflags="$CFLAGS"
@@ -6246,6 +6249,7 @@
AC_LINK_IFELSE([int main() { return 0; }],[ac_cv_link_use_r=yes],[ac_cv_link_use_r=no])
CFLAGS="$oldcflags"
AC_LANG_RESTORE
+ AC_MSG_RESULT($ac_cv_link_use_r)
if test "$ac_cv_link_use_r" = yes
then
AC_DEFINE([HAVE_LINK_R],[1],[Define if you can use -Wl,-R. to pass -R. to the linker, in order to add the current directory to the dynamic linker search path.])
More information about the llvm-commits
mailing list