-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjam-1.823-fix-print-format.patch
More file actions
138 lines (118 loc) · 4.28 KB
/
Copy pathjam-1.823-fix-print-format.patch
File metadata and controls
138 lines (118 loc) · 4.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
From cdec82098651c4ae1194e5ec9809f7f1968aa25f Mon Sep 17 00:00:00 2001
From: Koichi Murase <myoga.murase@gmail.com>
Date: Mon, 4 Aug 2025 19:11:20 +0900
Subject: [PATCH] fix print format for the start time (jam-1.823)
---
configure | 20 ++++++++++----------
configure.ac | 2 +-
src/gfortran.f | 8 ++++----
3 files changed, 15 insertions(+), 15 deletions(-)
diff --git a/configure b/configure
index b3bbbd2..255ed42 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for jam 1.822.
+# Generated by GNU Autoconf 2.69 for jam 1.823.
#
#
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -587,8 +587,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='jam'
PACKAGE_TARNAME='jam'
-PACKAGE_VERSION='1.822'
-PACKAGE_STRING='jam 1.822'
+PACKAGE_VERSION='1.823'
+PACKAGE_STRING='jam 1.823'
PACKAGE_BUGREPORT=''
PACKAGE_URL=''
@@ -1335,7 +1335,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures jam 1.822 to adapt to many kinds of systems.
+\`configure' configures jam 1.823 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1405,7 +1405,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of jam 1.822:";;
+ short | recursive ) echo "Configuration of jam 1.823:";;
esac
cat <<\_ACEOF
@@ -1521,7 +1521,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
-jam configure 1.822
+jam configure 1.823
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2004,7 +2004,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by jam $as_me 1.822, which was
+It was created by jam $as_me 1.823, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
@@ -2868,7 +2868,7 @@ fi
# Define the identity of the package.
PACKAGE='jam'
- VERSION='1.822'
+ VERSION='1.823'
cat >>confdefs.h <<_ACEOF
@@ -19579,7 +19579,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
-This file was extended by jam $as_me 1.822, which was
+This file was extended by jam $as_me 1.823, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -19636,7 +19636,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
-jam config.status 1.822
+jam config.status 1.823
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
diff --git a/configure.ac b/configure.ac
index 93f2e7b..8b3263c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
#AC_INIT(src/grv98.f)
#AM_INIT_AUTOMAKE(pdflib,1.10)
-AC_INIT(jam,1.822)
+AC_INIT(jam,1.823)
AC_PREFIX_DEFAULT($HOME)
AM_INIT_AUTOMAKE(dist-bzip2)
AC_PREFIX_DEFAULT($HOME)
diff --git a/src/gfortran.f b/src/gfortran.f
index dbdca6a..df069b1 100644
--- a/src/gfortran.f
+++ b/src/gfortran.f
@@ -41,8 +41,8 @@ c write(iunit,'(48(''*'')')')
700 format(48('*'))
write(iunit,800)value(1),value(2),value(3),value(5),value(6),
$ value(7),gzone
-800 format(' Starting time = ',i4'/',i2,'/',i2,' ',
- $ i2':',i2,':',i2,'s ',A5)
+800 format(' Starting time = ',i4,'/',i2,'/',i2,' ',
+ $ i2,':',i2,':',i2,'s ',A5)
stime=secnds(0.0)
@@ -62,8 +62,8 @@ C...Compute Elapse and CUP time
call date_and_time(today,gtime,gzone,value)
write(iunit,801)value(1),value(2),value(3),value(5),value(6),
$ value(7),gzone
-801 format(' ending time = ',i4'/',i2,'/',i2,' ',
- $ i2':',i2,':',i2,'s ',A5)
+801 format(' ending time = ',i4,'/',i2,'/',i2,' ',
+ $ i2,':',i2,':',i2,'s ',A5)
stime=secnds(stime)
--
2.50.1