Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
40e9aed0
Kaydet (Commit)
40e9aed0
authored
Eki 02, 2006
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Guard uintptr_t test with HAVE_STDINT_H, test for
stdint.h. Will backport.
üst
ebe26709
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
7 deletions
+16
-7
pyport.h
Include/pyport.h
+4
-0
configure
configure
+7
-4
configure.in
configure.in
+5
-3
No files found.
Include/pyport.h
Dosyayı görüntüle @
40e9aed0
...
...
@@ -3,6 +3,10 @@
#include "pyconfig.h"
/* include for defines */
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
/**************************************************************************
Symbols and macros to supply platform-independent interfaces to basic
C language & library operations whose spellings vary across platforms.
...
...
configure
Dosyayı görüntüle @
40e9aed0
#! /bin/sh
# From configure.in Revision: 5
1971
.
# From configure.in Revision: 5
2086
.
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.59 for python 2.6.
#
...
...
@@ -4610,6 +4610,7 @@ done
...
...
@@ -4633,8 +4634,8 @@ done
for ac_header in asm/types.h conio.h curses.h direct.h dlfcn.h errno.h \
fcntl.h grp.h \
shadow.h
io.h langinfo.h libintl.h ncurses.h poll.h process.h pthread.h \
s
ignal
.h stropts.h termios.h thread.h \
io.h langinfo.h libintl.h ncurses.h poll.h process.h pthread.h \
s
hadow.h signal.h stdint
.h stropts.h termios.h thread.h \
unistd.h utime.h \
sys/audioio.h sys/bsdtty.h sys/file.h sys/loadavg.h sys/lock.h sys/mkdev.h \
sys/modem.h \
...
...
@@ -10084,7 +10085,9 @@ _ACEOF
cat confdefs.h >>conftest.$ac_ext
cat >>conftest.$ac_ext <<_ACEOF
/* end confdefs.h. */
#include <stdint.h>
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
int
main ()
...
...
configure.in
Dosyayı görüntüle @
40e9aed0
...
...
@@ -1068,8 +1068,8 @@ dnl AC_MSG_RESULT($cpp_type)
AC_HEADER_STDC
AC_CHECK_HEADERS(asm/types.h conio.h curses.h direct.h dlfcn.h errno.h \
fcntl.h grp.h \
shadow.h
io.h langinfo.h libintl.h ncurses.h poll.h process.h pthread.h \
s
ignal
.h stropts.h termios.h thread.h \
io.h langinfo.h libintl.h ncurses.h poll.h process.h pthread.h \
s
hadow.h signal.h stdint
.h stropts.h termios.h thread.h \
unistd.h utime.h \
sys/audioio.h sys/bsdtty.h sys/file.h sys/loadavg.h sys/lock.h sys/mkdev.h \
sys/modem.h \
...
...
@@ -1199,7 +1199,9 @@ fi
AC_CHECK_TYPES(uintptr_t,
[AC_CHECK_SIZEOF(uintptr_t, 4)],
[], [#include <stdint.h>])
[], [#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif])
# Hmph. AC_CHECK_SIZEOF() doesn't include <sys/types.h>.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment