Message111095
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? |
|
| Date |
User |
Action |
Args |
| 2010-07-21 18:21:37 | belopolsky | set | recipients:
+ belopolsky, tim.peters, georg.brandl, rhettinger, mark.dickinson, pitrou, tim.golden, brian.curtin, rnk |
| 2010-07-21 18:21:37 | belopolsky | set | messageid: <[email protected]> |
| 2010-07-21 18:21:35 | belopolsky | link | issue9079 messages |
| 2010-07-21 18:21:35 | belopolsky | create | |
|