فهرست منبع

Expect arc4random on glib 2.36. Resolves #7. (#10)

* Expect arc4random on glib 2.36. Resolves #7.

* Merged into a single if.
Brucey 2 سال پیش
والد
کامیت
ec1ab0a774
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      core.mod/include/config.h

+ 1 - 1
core.mod/include/config.h

@@ -285,7 +285,7 @@
 /* #undef HAVE_ACL_TAG_T */
 
 /* Define to 1 if you have the `arc4random_buf' function. */
-#ifdef __APPLE__
+#if defined(__APPLE__) || (defined(__linux__) && (defined(__GLIBC__) && ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 36) || __GLIBC__ > 2)))
 #define HAVE_ARC4RANDOM_BUF 1
 #endif