mirror of
https://github.com/python/cpython.git
synced 2025-07-29 14:15:07 +00:00
Patch #1418: Make the AC_REPLACE_FUNCS object files actually work.
This commit is contained in:
parent
f354894e7b
commit
63bf149a26
3 changed files with 6 additions and 2 deletions
|
@ -169,6 +169,8 @@ THREADOBJ= @THREADOBJ@
|
||||||
DLINCLDIR= @DLINCLDIR@
|
DLINCLDIR= @DLINCLDIR@
|
||||||
DYNLOADFILE= @DYNLOADFILE@
|
DYNLOADFILE= @DYNLOADFILE@
|
||||||
MACHDEP_OBJS= @MACHDEP_OBJS@
|
MACHDEP_OBJS= @MACHDEP_OBJS@
|
||||||
|
LIBOBJDIR= Python/
|
||||||
|
LIBOBJS= @LIBOBJS@
|
||||||
UNICODE_OBJS= @UNICODE_OBJS@
|
UNICODE_OBJS= @UNICODE_OBJS@
|
||||||
|
|
||||||
PYTHON= python$(EXE)
|
PYTHON= python$(EXE)
|
||||||
|
@ -275,6 +277,7 @@ PYTHON_OBJS= \
|
||||||
Python/getopt.o \
|
Python/getopt.o \
|
||||||
Python/pystrtod.o \
|
Python/pystrtod.o \
|
||||||
Python/$(DYNLOADFILE) \
|
Python/$(DYNLOADFILE) \
|
||||||
|
$(LIBOBJS) \
|
||||||
$(MACHDEP_OBJS) \
|
$(MACHDEP_OBJS) \
|
||||||
$(THREADOBJ)
|
$(THREADOBJ)
|
||||||
|
|
||||||
|
|
|
@ -1047,6 +1047,8 @@ Tools/Demos
|
||||||
Build
|
Build
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
- Patch #1418: Make the AC_REPLACE_FUNCS object files actually work.
|
||||||
|
|
||||||
- Add a FAST_LOOPS build option that speeds-up looping by trading away
|
- Add a FAST_LOOPS build option that speeds-up looping by trading away
|
||||||
periodic threadstate and signal checking in tight loops. By default,
|
periodic threadstate and signal checking in tight loops. By default,
|
||||||
this option is turned-off. It should only be enabled in debugged,
|
this option is turned-off. It should only be enabled in debugged,
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/* hypot() replacement */
|
/* hypot() replacement */
|
||||||
|
|
||||||
#include "pyconfig.h"
|
#include "Python.h"
|
||||||
#include "pyport.h"
|
|
||||||
|
|
||||||
double hypot(double x, double y)
|
double hypot(double x, double y)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue