Message 111095 - Python tracker

Message111095

Author belopolsky
Recipients belopolsky, brian.curtin, georg.brandl, mark.dickinson, pitrou, rhettinger, rnk, tim.golden, tim.peters
Date 2010-07-21.18:21:35
SpamBayes Score 0.1702699
Marked as misclassified No
Message-id <1279736497.52.0.897056483231.issue9079@psf.upfronthosting.co.za>
In-reply-to
Content
Interesting.  As far as I can tell, struct timeval should not be used unless HAVE_GETTIMEOFDAY is defined:

+#ifdef HAVE_GETTIMEOFDAY
+typedef struct timeval _PyTime_timeval;
+#else
+typedef struct {
+    time_t       tv_sec;   /* seconds since Jan. 1, 1970 */
+    long         tv_usec;  /* and microseconds */
+} _PyTime_timeval;
+#endif

Brian, where do you get undefined symbol error?
History
Date User Action Args
2010-07-21 18:21:37belopolskysetrecipients: + belopolsky, tim.peters, georg.brandl, rhettinger, mark.dickinson, pitrou, tim.golden, brian.curtin, rnk
2010-07-21 18:21:37belopolskysetmessageid: <1279736497.52.0.897056483231.issue9079@psf.upfronthosting.co.za>
2010-07-21 18:21:35belopolskylinkissue9079 messages
2010-07-21 18:21:35belopolskycreate