diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-11-06 12:11:05 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-11-06 12:11:05 (GMT) |
commit | f122d366bf48d0451722b3a845f1753d783f74a3 (patch) | |
tree | 6723c8c5173a92bc71d70b5b9fdc7a7516cbbf37 | |
parent | ae2df938140fad46c8fc1398ac8cf8bde0f48bfb (diff) | |
download | cpython-f122d366bf48d0451722b3a845f1753d783f74a3.zip cpython-f122d366bf48d0451722b3a845f1753d783f74a3.tar.gz cpython-f122d366bf48d0451722b3a845f1753d783f74a3.tar.bz2 |
Enabled WITH_LONG_LONG. No reason it was disabled, it has been supported by the Metrowerks compiler for quite some time.
-rw-r--r-- | Mac/Include/pyconfig.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Include/pyconfig.h b/Mac/Include/pyconfig.h index eb53725..dc79dcb 100644 --- a/Mac/Include/pyconfig.h +++ b/Mac/Include/pyconfig.h @@ -185,7 +185,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #undef HAVE_LARGEFILE_SUPPORT /* Define this if you have the type long long */ -#undef HAVE_LONG_LONG +#define HAVE_LONG_LONG /* Define if your compiler supports function prototypes */ #define HAVE_PROTOTYPES 1 @@ -341,7 +341,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #define SIZEOF_LONG 4 /* The number of bytes in a long long. */ -#undef SIZEOF_LONG_LONG +#define SIZEOF_LONG_LONG 8 /* The number of bytes in a short. */ #define SIZEOF_SHORT 2 |