aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergio Durigan Junior <sergiodj@redhat.com>2011-10-17 14:47:01 +0000
committerTom Tromey <tromey@gcc.gnu.org>2011-10-17 14:47:01 +0000
commitd11aaed74f34054935829ceb91c5798dfc91104d (patch)
treeb30176036462bd7385f093ea1b8dbc58621ebe14
parent711a3d82e524cae4fa2acce8f2e363f0f23a6032 (diff)
downloadgcc-d11aaed74f34054935829ceb91c5798dfc91104d.zip
gcc-d11aaed74f34054935829ceb91c5798dfc91104d.tar.gz
gcc-d11aaed74f34054935829ceb91c5798dfc91104d.tar.bz2
configure.ac: Display `yes' if the SystemTap header has been found.
2011-10-17 Sergio Durigan Junior <sergiodj@redhat.com> * configure.ac: Display `yes' if the SystemTap header has been found. * configure: Regenerate. From-SVN: r180095
-rw-r--r--gcc/ChangeLog6
-rwxr-xr-xgcc/configure1
-rw-r--r--gcc/configure.ac1
3 files changed, 8 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 3c8b7b5..6db875f 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2011-10-17 Sergio Durigan Junior <sergiodj@redhat.com>
+
+ * configure.ac: Display `yes' if the SystemTap header has been
+ found.
+ * configure: Regenerate.
+
2011-10-08 Andi Kleen <ak@linux.intel.com>
PR other/50636
diff --git a/gcc/configure b/gcc/configure
index 4a54adf..7bd1d5db 100755
--- a/gcc/configure
+++ b/gcc/configure
@@ -26483,6 +26483,7 @@ fi
$as_echo_n "checking sys/sdt.h in the target C library... " >&6; }
have_sys_sdt_h=no
if test -f $target_header_dir/sys/sdt.h; then
+ have_sys_sdt_h=yes
$as_echo "#define HAVE_SYS_SDT_H 1" >>confdefs.h
diff --git a/gcc/configure.ac b/gcc/configure.ac
index 357902e..353746f 100644
--- a/gcc/configure.ac
+++ b/gcc/configure.ac
@@ -4578,6 +4578,7 @@ GCC_TARGET_TEMPLATE([HAVE_SYS_SDT_H])
AC_MSG_CHECKING(sys/sdt.h in the target C library)
have_sys_sdt_h=no
if test -f $target_header_dir/sys/sdt.h; then
+ have_sys_sdt_h=yes
AC_DEFINE(HAVE_SYS_SDT_H, 1,
[Define if your target C library provides sys/sdt.h])
fi