From 057e7200d1c300f3c914dbc84eca327c10bf7751 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Thu, 24 Jun 2004 01:38:47 +0000 Subject: Add compilation of timemodule.c with datetimemodule.c to get __PyTime_DoubleToTimet(). --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cc163ea..8309008 100644 --- a/setup.py +++ b/setup.py @@ -315,7 +315,7 @@ class PyBuildExt(build_ext): # time operations and variables exts.append( Extension('time', ['timemodule.c'], libraries=math_libs) ) - exts.append( Extension('datetime', ['datetimemodule.c'], + exts.append( Extension('datetime', ['datetimemodule.c', 'timemodule.c'], libraries=math_libs) ) # random number generator implemented in C exts.append( Extension("_random", ["_randommodule.c"]) ) -- cgit v0.12