aboutsummaryrefslogtreecommitdiff
path: root/gprof/ChangeLog
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2021-04-05 15:27:02 +0930
committerAlan Modra <amodra@gmail.com>2021-04-05 15:27:02 +0930
commit5d4d26d14ca3dcf4c2d0745df720a2a5bd1bd6a5 (patch)
tree6555379b0c6943164d1497c9a9ef11c058b0a586 /gprof/ChangeLog
parent306b445a6d4cc9dbb46ecdf22d9585fe9fc98115 (diff)
downloadgdb-5d4d26d14ca3dcf4c2d0745df720a2a5bd1bd6a5.zip
gdb-5d4d26d14ca3dcf4c2d0745df720a2a5bd1bd6a5.tar.gz
gdb-5d4d26d14ca3dcf4c2d0745df720a2a5bd1bd6a5.tar.bz2
C99 gprof configury
Given C99 we don't need to check for setlocale. The patch also adds setitimer checks so that they can be removed from bfd where they aren't needed. According to the automake manual AC_ISC_POSIX is obsolete, so that is removed. HAVE_SETMODE isn't checked anywhere, so it is pointless to have a configure test for setmode. * configure.ac: Check for sys/time.h and setitimer. Don't invoke AC_ISC_POSIX. Don't check for setmode. * gprof.c: Don't test HAVE_SETLOCALE. * gprof.h: Include sys/time.h. * configure: Regenerate. * gconfig.in: Regenerate.
Diffstat (limited to 'gprof/ChangeLog')
-rw-r--r--gprof/ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/gprof/ChangeLog b/gprof/ChangeLog
index 0e42655..c116901 100644
--- a/gprof/ChangeLog
+++ b/gprof/ChangeLog
@@ -1,3 +1,12 @@
+2021-04-05 Alan Modra <amodra@gmail.com>
+
+ * configure.ac: Check for sys/time.h and setitimer. Don't invoke
+ AC_ISC_POSIX. Don't check for setmode.
+ * gprof.c: Don't test HAVE_SETLOCALE.
+ * gprof.h: Include sys/time.h.
+ * configure: Regenerate.
+ * gconfig.in: Regenerate.
+
2021-03-31 Alan Modra <amodra@gmail.com>
* basic_blocks.c: Replace bfd_boolean with bool, FALSE with false,