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
9a10ff4d
Unverified
Kaydet (Commit)
9a10ff4d
authored
Kas 08, 2017
tarafından
Berker Peksag
Kaydeden (comit)
GitHub
Kas 08, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-11063: Add a configure check for uuid_generate_time_safe (GH-4287)
üst
bf9d3176
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
48 additions
and
9 deletions
+48
-9
_uuidmodule.c
Modules/_uuidmodule.c
+2
-9
configure
configure
+31
-0
configure.ac
configure.ac
+12
-0
pyconfig.h.in
pyconfig.h.in
+3
-0
No files found.
Modules/_uuidmodule.c
Dosyayı görüntüle @
9a10ff4d
...
...
@@ -4,17 +4,10 @@
#include <uuid/uuid.h>
/* bpo-11063: libuuid on macOS doesn't provide uuid_generate_time_safe(),
only uuid_generate_time(). */
#ifndef __APPLE__
# define HAVE_TIME_SAFE
#endif
static
PyObject
*
py_uuid_generate_time_safe
(
void
)
{
#ifdef HAVE_TIME_SAFE
#ifdef HAVE_
UUID_GENERATE_
TIME_SAFE
uuid_t
out
;
int
res
;
...
...
@@ -45,7 +38,7 @@ PyInit__uuid(void)
{
PyObject
*
mod
;
assert
(
sizeof
(
uuid_t
)
==
16
);
#ifdef HAVE_TIME_SAFE
#ifdef HAVE_
UUID_GENERATE_
TIME_SAFE
int
has_uuid_generate_time_safe
=
1
;
#else
int
has_uuid_generate_time_safe
=
0
;
...
...
configure
Dosyayı görüntüle @
9a10ff4d
...
...
@@ -9512,6 +9512,37 @@ _ACEOF
fi
# Dynamic linking for HP-UX
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking for uuid_generate_time_safe"
>
&5
$as_echo_n
"checking for uuid_generate_time_safe... "
>
&6
;
}
cat
confdefs.h -
<<
_ACEOF
>conftest.
$ac_ext
/* end confdefs.h. */
#include <uuid/uuid.h>
int
main ()
{
#ifndef uuid_generate_time_safe
uuid_t out;
uuid_generate_time_safe(out);
#endif
;
return 0;
}
_ACEOF
if
ac_fn_c_try_compile
"
$LINENO
"
;
then
:
$as_echo
"#define HAVE_UUID_GENERATE_TIME_SAFE 1"
>>
confdefs.h
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result: yes"
>
&5
$as_echo
"yes"
>
&6
;
}
else
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result: no"
>
&5
$as_echo
"no"
>
&6
;
}
fi
rm
-f
core conftest.err conftest.
$ac_objext
conftest.
$ac_ext
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking for library containing sem_init"
>
&5
$as_echo_n
"checking for library containing sem_init... "
>
&6
;
}
if
${
ac_cv_search_sem_init
+
:
}
false
;
then
:
...
...
configure.ac
Dosyayı görüntüle @
9a10ff4d
...
...
@@ -2677,6 +2677,18 @@ AC_CHECK_LIB(sendfile, sendfile)
AC_CHECK_LIB(dl, dlopen) # Dynamic linking for SunOS/Solaris and SYSV
AC_CHECK_LIB(dld, shl_load) # Dynamic linking for HP-UX
AC_MSG_CHECKING(for uuid_generate_time_safe)
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <uuid/uuid.h>]], [[
#ifndef uuid_generate_time_safe
uuid_t out;
uuid_generate_time_safe(out);
#endif
]])],
[AC_DEFINE(HAVE_UUID_GENERATE_TIME_SAFE, 1, Define if uuid_generate_time_safe() exists.)
AC_MSG_RESULT(yes)],
[AC_MSG_RESULT(no)]
)
AC_SEARCH_LIBS(sem_init, pthread rt posix4) # 'Real Time' functions on Solaris
# posix4 on Solaris 2.6
# pthread (first!) on Linux
...
...
pyconfig.h.in
Dosyayı görüntüle @
9a10ff4d
...
...
@@ -1187,6 +1187,9 @@
/* Define to 1 if you have the <utime.h> header file. */
#undef HAVE_UTIME_H
/* Define if uuid_generate_time_safe() exists. */
#undef HAVE_UUID_GENERATE_TIME_SAFE
/* Define to 1 if you have the `wait3' function. */
#undef HAVE_WAIT3
...
...
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