Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 32d8ba4

Browse files
committed
* Makefile.in (Makefile): add dependency on config.status
* configure.in: support --with-gcc[=value], --without-gcc * configure.in, acconfig.h, config.h.in: check for clock_t
1 parent 6dc31a1 commit 32d8ba4

3 files changed

Lines changed: 24 additions & 0 deletions

File tree

ChangeLog

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
1+
Fri Jul 1 12:47:05 1994 Guido van Rossum ([email protected])
2+
3+
* Makefile.in (Makefile): add dependency on config.status
4+
5+
* configure.in: support --with-gcc[=value], --without-gcc
6+
7+
* configure.in, acconfig.h, config.h.in: check for clock_t
8+
9+
* Modules/{arraymodule,mpzmodule}.c: Include sys/types.h, for size_t
10+
11+
* Lib/test/test_types.py (6.5.1 Strings): test for nasty string
12+
formatting bug
13+
14+
* Objects/stringobject.c (formatstring): fix nasty bug in resizing
15+
116
Wed Jun 29 10:01:17 1994 Guido van Rossum ([email protected])
217

18+
* Doc/ref3.tex (section{The standard type hierarchy}
19+
\label{types}): fix typo
20+
321
* Lib/packmail.py: applied patch from Lance to remove '.' and '..'
422

523
Tue Jun 28 00:57:35 1994 Guido van Rossum ([email protected])

acconfig.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
(as it does on SCI ODT 3.0) */
1010
#undef BAD_STATIC_FORWARD
1111

12+
/* Define to `long' if <time.h> doesn't define. */
13+
#undef clock_t
14+
1215
/* Define if getpgrp() must be called as getpgrp(0)
1316
and (consequently) setpgrp() as setpgrp(0, 0). */
1417
#undef GETPGRP_HAVE_ARG

config.h.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@
8787
(as it does on SCI ODT 3.0) */
8888
#undef BAD_STATIC_FORWARD
8989

90+
/* Define to `long' if <time.h> doesn't define. */
91+
#undef clock_t
92+
9093
/* Define if getpgrp() must be called as getpgrp(0)
9194
and (consequently) setpgrp() as setpgrp(0, 0). */
9295
#undef GETPGRP_HAVE_ARG

0 commit comments

Comments
 (0)