Changes for posix threads
This commit is contained in:
parent
e6ef03260c
commit
c5832ffdba
16
ChangeLog
16
ChangeLog
|
@ -1,3 +1,19 @@
|
||||||
|
Mon May 9 10:37:48 1994 Guido van Rossum (guido@voorn.cwi.nl)
|
||||||
|
|
||||||
|
* acconfig.h: added _POSIX_THREADS define
|
||||||
|
|
||||||
|
* configure.in: test for -lpthreads; add directory argument to
|
||||||
|
--with-thread to LIBS as -L option
|
||||||
|
|
||||||
|
* Objects/stringobject.c (formatstring): don't DECREF result of
|
||||||
|
strobject() before using it
|
||||||
|
|
||||||
|
* Doc/libtypes.tex: fix typo in table of list methods; clarify
|
||||||
|
truncation behavior of floating point formatting
|
||||||
|
|
||||||
|
* Doc/ref3.tex: clarify defaults for __repr__, __cmp__ and
|
||||||
|
__str__; correct (some) descriptions of class constructors
|
||||||
|
|
||||||
Fri May 6 11:25:26 1994 Guido van Rossum (guido@voorn.cwi.nl)
|
Fri May 6 11:25:26 1994 Guido van Rossum (guido@voorn.cwi.nl)
|
||||||
|
|
||||||
* various files: micro changes needed to compile on Mac;
|
* various files: micro changes needed to compile on Mac;
|
||||||
|
|
|
@ -23,6 +23,9 @@
|
||||||
(e.g. void fprintf(FILE *, char *, ...);) *and* <stdarg.h> */
|
(e.g. void fprintf(FILE *, char *, ...);) *and* <stdarg.h> */
|
||||||
#undef HAVE_STDARG_PROTOTYPES
|
#undef HAVE_STDARG_PROTOTYPES
|
||||||
|
|
||||||
|
/* Define if you have POSIX threads */
|
||||||
|
#undef _POSIX_THREADS
|
||||||
|
|
||||||
/* Define to empty if the keyword does not work. */
|
/* Define to empty if the keyword does not work. */
|
||||||
#undef signed
|
#undef signed
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue