Skip to content

Commit 3a86905

Browse files
author
Colum Paget
committed
v1.2
1 parent 826a994 commit 3a86905

File tree

4 files changed

+23
-17
lines changed

4 files changed

+23
-17
lines changed

CHANGELOG

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
1.2 (2024-10-04)
2+
----------------
3+
* handle useconds roll-over when calculating times
4+
* handle strace 'pid' header at start of line
5+
6+
17
1.1 (2024-01-10)
28
----------------
39
* handle 'dmesg' style timestamps

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
OBJ=parse.o stats.o settings.o help.o
2-
FLAGS=-g -O2 -DPACKAGE_NAME=\"timediff\" -DPACKAGE_TARNAME=\"timediff\" -DPACKAGE_VERSION=\"1.1\" -DPACKAGE_STRING=\"timediff\ 1.1\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_LIBZ=1 -DHAVE_LIBUSEFUL_5_LIBUSEFUL_H=1 -DHAVE_LIBUSEFUL_5=1
2+
FLAGS=-g -O2 -DPACKAGE_NAME=\"timediff\" -DPACKAGE_TARNAME=\"timediff\" -DPACKAGE_VERSION=\"1.2\" -DPACKAGE_STRING=\"timediff\ 1.2\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_LIBZ=1 -DHAVE_LIBUSEFUL_5_LIBUSEFUL_H=1 -DHAVE_LIBUSEFUL_5=1
33
LIBS=-lUseful-5 -lz
44
STATIC_LIBS=
55
PREFIX=/usr/local

configure

+9-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.71 for timediff 1.1.
3+
# Generated by GNU Autoconf 2.71 for timediff 1.2.
44
#
55
# Report bugs to <[email protected]>.
66
#
@@ -611,8 +611,8 @@ MAKEFLAGS=
611611
# Identity of this package.
612612
PACKAGE_NAME='timediff'
613613
PACKAGE_TARNAME='timediff'
614-
PACKAGE_VERSION='1.1'
615-
PACKAGE_STRING='timediff 1.1'
614+
PACKAGE_VERSION='1.2'
615+
PACKAGE_STRING='timediff 1.2'
616616
PACKAGE_BUGREPORT='[email protected]'
617617
PACKAGE_URL=''
618618

@@ -1264,7 +1264,7 @@ if test "$ac_init_help" = "long"; then
12641264
# Omit some internal or obsolete options to make the list less imposing.
12651265
# This message is too long to be a string in the A/UX 3.1 sh.
12661266
cat <<_ACEOF
1267-
\`configure' configures timediff 1.1 to adapt to many kinds of systems.
1267+
\`configure' configures timediff 1.2 to adapt to many kinds of systems.
12681268
12691269
Usage: $0 [OPTION]... [VAR=VALUE]...
12701270
@@ -1326,7 +1326,7 @@ fi
13261326

13271327
if test -n "$ac_init_help"; then
13281328
case $ac_init_help in
1329-
short | recursive ) echo "Configuration of timediff 1.1:";;
1329+
short | recursive ) echo "Configuration of timediff 1.2:";;
13301330
esac
13311331
cat <<\_ACEOF
13321332
@@ -1417,7 +1417,7 @@ fi
14171417
test -n "$ac_init_help" && exit $ac_status
14181418
if $ac_init_version; then
14191419
cat <<\_ACEOF
1420-
timediff configure 1.1
1420+
timediff configure 1.2
14211421
generated by GNU Autoconf 2.71
14221422
14231423
Copyright (C) 2021 Free Software Foundation, Inc.
@@ -1573,7 +1573,7 @@ cat >config.log <<_ACEOF
15731573
This file contains any messages produced by compilers while
15741574
running configure, to aid debugging if configure makes a mistake.
15751575
1576-
It was created by timediff $as_me 1.1, which was
1576+
It was created by timediff $as_me 1.2, which was
15771577
generated by GNU Autoconf 2.71. Invocation command line was
15781578
15791579
$ $0$ac_configure_args_raw
@@ -3363,9 +3363,6 @@ printf "%s\n" "$ac_cv_path_GREP" >&6; }
33633363
GREP="$ac_cv_path_GREP"
33643364
33653365
3366-
# Autoupdate added the next two lines to ensure that your configure
3367-
# script's behavior did not change. They are probably safe to remove.
3368-
33693366
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
33703367
printf %s "checking for egrep... " >&6; }
33713368
if test ${ac_cv_path_EGREP+y}
@@ -4578,7 +4575,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
45784575
# report actual input values of CONFIG_FILES etc. instead of their
45794576
# values after options handling.
45804577
ac_log="
4581-
This file was extended by timediff $as_me 1.1, which was
4578+
This file was extended by timediff $as_me 1.2, which was
45824579
generated by GNU Autoconf 2.71. Invocation command line was
45834580
45844581
CONFIG_FILES = $CONFIG_FILES
@@ -4633,7 +4630,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
46334630
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
46344631
ac_cs_config='$ac_cs_config_escaped'
46354632
ac_cs_version="\\
4636-
timediff config.status 1.1
4633+
timediff config.status 1.2
46374634
configured by $0, generated by GNU Autoconf 2.71,
46384635
with options \\"\$ac_cs_config\\"
46394636

configure.ac

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
AC_INIT([timediff], [1.1], [[email protected]])
1+
AC_INIT([timediff],[1.2],[[email protected]])
22

33
AC_PROG_CC
4-
AC_LANG_C
4+
AC_LANG([C])
55
AC_PROG_MAKE_SET
6-
AC_HEADER_STDC
6+
AC_CHECK_INCLUDES_DEFAULT
7+
AC_PROG_EGREP
8+
79
AC_SYS_LARGEFILE
810

911

@@ -51,5 +53,6 @@ else
5153
fi
5254

5355
dnl read Makefile.in and write Makefile
54-
AC_OUTPUT(Makefile)
56+
AC_CONFIG_FILES([Makefile])
57+
AC_OUTPUT
5558

0 commit comments

Comments
 (0)