[issue25853] Compile error with pytime.h - struct timespec declared inside parameter list

2021-09-12 Thread Irit Katriel
Irit Katriel added the comment: Closing as there isn't enough information here for us to do anything about it and there has been no response from the OP to follow-up questions. -- nosy: +iritkatriel resolution: -> works for me stage: -> resolved status: open -> closed

[issue25853] Compile error with pytime.h - struct timespec declared inside parameter list

2015-12-14 Thread Martin Panter
Martin Panter added the comment: What platform, C library, etc do you have? According to Posix, struct timespec is normally defined in , but can also be gotten via various other include files, many of which are included before "pytime.h". In particular, includes "pyport.h", which has

[issue25853] Compile error with pytime.h - struct timespec declared inside parameter list

2015-12-12 Thread jamespharvey20
New submission from jamespharvey20: When including pytime.h: n file included from /usr/include/python3.5m/Python.h:65:0, from src/package.c:25: /usr/include/python3.5m/pytime.h:136:56: error: ‘struct timespec’ declared inside parameter list [-Werror] PyAPI_FUNC(int)

[issue25853] Compile error with pytime.h - struct timespec declared inside parameter list

2015-12-12 Thread jamespharvey20
jamespharvey20 added the comment: This is using https://www.python.org/ftp/python/3.5.1/Python-3.5.1.tar.xz GCC v5.3.0 Using Werror obviously -- ___ Python tracker