diff options
author | Tom Tromey <tromey@redhat.com> | 2009-01-05 20:48:51 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2009-01-05 20:48:51 +0000 |
commit | 5171e6b382aadd794cb3f634c5370be1ba2cb0b2 (patch) | |
tree | 5db67351b688dd53c11f7d49b9668903dd5a3a95 /gdb | |
parent | a367a1f22edd1f32b699ebf1ce31cc474bc07c8f (diff) | |
download | gdb-5171e6b382aadd794cb3f634c5370be1ba2cb0b2.zip gdb-5171e6b382aadd794cb3f634c5370be1ba2cb0b2.tar.gz gdb-5171e6b382aadd794cb3f634c5370be1ba2cb0b2.tar.bz2 |
* python/python-internal.h (Py_ssize_t): Define as int.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/python/python-internal.h | 7 |
2 files changed, 9 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 94d77a8..b959e9a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2009-01-05 Tom Tromey <tromey@redhat.com> + + * python/python-internal.h (Py_ssize_t): Define as int. + 2009-01-05 Jim Blandy <jimb@red-bean.com> * MAINTAINERS: Fix my e-mail address as steering committee member. diff --git a/gdb/python/python-internal.h b/gdb/python/python-internal.h index 24d1b44..4e9da33 100644 --- a/gdb/python/python-internal.h +++ b/gdb/python/python-internal.h @@ -33,8 +33,11 @@ #if HAVE_LIBPYTHON2_4 #include "python2.4/Python.h" -/* Py_ssize_t is not defined until 2.5. */ -typedef Py_intptr_t Py_ssize_t; +/* Py_ssize_t is not defined until 2.5. + Logical type for Py_ssize_t is Py_intptr_t, but that fails in 64-bit + compilation due to several apparent mistakes in python2.4 API, so we + use 'int' instead. */ +typedef int Py_ssize_t; #elif HAVE_LIBPYTHON2_5 #include "python2.5/Python.h" #elif HAVE_LIBPYTHON2_6 |