diff options
author | Inada Naoki <methane@users.noreply.github.com> | 2019-02-20 01:00:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-20 01:00:09 (GMT) |
commit | 001fee14e0f2ba5f41fb733adc69d5965925a094 (patch) | |
tree | 1f43d3cd42920f5ef131b840c444332d4023de90 /Makefile.pre.in | |
parent | 46a97920feaf4094436b2cdb32d2bd2fab3b59a5 (diff) | |
download | cpython-001fee14e0f2ba5f41fb733adc69d5965925a094.zip cpython-001fee14e0f2ba5f41fb733adc69d5965925a094.tar.gz cpython-001fee14e0f2ba5f41fb733adc69d5965925a094.tar.bz2 |
bpo-12822: use monotonic clock for condvar if possible (GH-11723)
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index f821697..1c536f8 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -939,7 +939,8 @@ regen-opcode-targets: $(srcdir)/Python/opcode_targets.h.new $(UPDATE_FILE) $(srcdir)/Python/opcode_targets.h $(srcdir)/Python/opcode_targets.h.new -Python/ceval.o: $(srcdir)/Python/opcode_targets.h $(srcdir)/Python/ceval_gil.h +Python/ceval.o: $(srcdir)/Python/opcode_targets.h $(srcdir)/Python/ceval_gil.h \ + $(srcdir)/Python/condvar.h Python/frozen.o: $(srcdir)/Python/importlib.h $(srcdir)/Python/importlib_external.h \ $(srcdir)/Python/importlib_zipimport.h @@ -1838,7 +1839,7 @@ patchcheck: @DEF_MAKE_RULE@ # Dependencies -Python/thread.o: @THREADHEADERS@ +Python/thread.o: @THREADHEADERS@ $(srcdir)/Python/condvar.h # Declare targets that aren't real files .PHONY: all build_all sharedmods check-clean-src oldsharedmods test quicktest |