[issue6820] Redefinition of HAVE_STRFTIME can cause compiler errors.

2021-08-07 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.11 -Python 3.4, Python 3.5 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue6820] Redefinition of HAVE_STRFTIME can cause compiler errors.

2019-03-15 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6820] Redefinition of HAVE_STRFTIME can cause compiler errors.

2015-02-20 Thread Mark Lawrence
Mark Lawrence added the comment: Having had another look the patch is not acceptable as the majority of the changes are to whitespace only. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6820

[issue6820] Redefinition of HAVE_STRFTIME can cause compiler errors.

2014-07-15 Thread Mark Lawrence
Mark Lawrence added the comment: There is no way that I'm commenting on the patch as it's against pyconfig.h, what do our experts think of this? -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 2.6 ___ Python tracker

[issue6820] Redefinition of HAVE_STRFTIME can cause compiler errors.

2011-07-21 Thread rgpitts
rgpitts richard.pi...@cdl.co.uk added the comment: As Python 2.6 is now security only and 2.7 is last major release I've patched this against Python 3.2 because pyconfig.h hadn't changed much since 2.6. I've done as Amaury suggested and changed the HAVE_XXX symbols to define 1 like autoconf.

[issue6820] Redefinition of HAVE_STRFTIME can cause compiler errors.

2010-02-13 Thread Braden McDaniel
Braden McDaniel bra...@endoframe.com added the comment: In general, this does *not* play well with libraries that define the same symbols. It is not correct to install the AC_CONFIG_HEADERS. Any macros in an installed configuration header need to be namespaced per-project; e.g.,

[issue6820] Redefinition of HAVE_STRFTIME can cause compiler errors.

2009-09-03 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: Those HAVE_XXX symbols should be defined like autoconf does: #define HAVE_STRFTIME 1 This is what happens on Unix platforms, and AFAIK this plays well with other libraries which define the same symbols. -- nosy:

[issue6820] Redefinition of HAVE_STRFTIME can cause compiler errors.

2009-09-02 Thread rgpitts
New submission from rgpitts richard.pi...@cdl.co.uk: I'm working with the Python C API and omniOrb with Visual Studio 2008 on Windows XP. A OmniOrb header corba_sys_dep.h is defining HAVE_STRFTIME as 1 ... #define HAVE_STRFTIME 1 ... pyconfig.h is then defining this again. ... #define