[issue11717] conflicting definition of ssize_t in pyconfig.h

2021-03-01 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue11717] conflicting definition of ssize_t in pyconfig.h

2021-03-01 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset c994ffe69553cbb34f1cea6a4494d6e7657f41b0 by Jozef Grajciar in branch 'master': bpo-11717: fix ssize_t redefinition error when targeting 32bit Windows app (GH-24479) https://github.com/python/cpython/commit/c994ffe69553cbb34f1cea6a4494d6e

[issue11717] conflicting definition of ssize_t in pyconfig.h

2021-02-07 Thread Jozef Grajciar
Change by Jozef Grajciar : -- nosy: +JoeyGrajciar nosy_count: 7.0 -> 8.0 pull_requests: +23271 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24479 ___ Python tracker ___

[issue11717] conflicting definition of ssize_t in pyconfig.h

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

[issue11717] conflicting definition of ssize_t in pyconfig.h

2015-02-18 Thread Steve Dower
Steve Dower added the comment: Patch needs updating, and I'd expect pyport.h to start by checking if HAVE_PY_SSIZE_T is defined. Otherwise, we may try to re-typedef Py_ssize_t. -- ___ Python tracker __

[issue11717] conflicting definition of ssize_t in pyconfig.h

2015-02-15 Thread Mark Lawrence
Mark Lawrence added the comment: Can we have a formal patch review please? -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue11717] conflicting definition of ssize_t in pyconfig.h

2014-06-15 Thread Mark Lawrence
Mark Lawrence added the comment: Is the patch acceptable? -- nosy: +BreamoreBoy, steve.dower, tim.golden, zach.ware versions: +Python 3.4, Python 3.5 ___ Python tracker ___ _

[issue11717] conflicting definition of ssize_t in pyconfig.h

2011-04-01 Thread Mark Hammond
Mark Hammond added the comment: As Tim Roberts says on the python-win32 list: > Actually, on closer examination, it may be a bit difficult to sell this. The > Microsoft compilers do not define this symbol at all. The SDK defines > SSIZE_T (as a long). Nothing defines ssize_t. http://code

[issue11717] conflicting definition of ssize_t in pyconfig.h

2011-03-30 Thread Wolfgang Rohdewald
Changes by Wolfgang Rohdewald : -- nosy: +mhammond ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue11717] conflicting definition of ssize_t in pyconfig.h

2011-03-30 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: Should Python.h systematically avoid defining symbols without a Py prefix? See attached patch, which defines Py_ssize_t in pyconfig.h. The same can be said for other symbols defined there: pid_t, copysign, hypot. -- keywords: +patch nosy: +amaury

[issue11717] conflicting definition of ssize_t in pyconfig.h

2011-03-29 Thread Wolfgang Rohdewald
Wolfgang Rohdewald added the comment: types.h is from kdewin/include/msvc/sys git clone git://anongit.kde.org/kdewin types.h uses SSIZE_T but that is nowhere defined in KDE, so it must be the original one from msvc -- ___ Python tracker

[issue11717] conflicting definition of ssize_t in pyconfig.h

2011-03-29 Thread Martin v . Löwis
Martin v. Löwis added the comment: Where does R:\include\msvc\sys/types.h come from? -- nosy: +loewis ___ Python tracker ___ ___ Pyth

[issue11717] conflicting definition of ssize_t in pyconfig.h

2011-03-29 Thread Wolfgang Rohdewald
New submission from Wolfgang Rohdewald : compiling pykde on windows with msvc2010 on a 32bit Windows 7: sipdnssdpart0.cpp R:\include\msvc\sys/types.h(52) : error C2371: 'ssize_t' : redefinition; different basic types c:\python27\include\pyconfig.h(201) : see declaration of 'ssize_t' I