mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
string.c: fallback to crypt_r
* string.c: prefer crypt_r to crypt iff system crypt nor crypt_r are not provided. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55250 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9eca2ced64
commit
a94201243e
1 changed files with 5 additions and 2 deletions
7
string.c
7
string.c
|
@ -29,8 +29,11 @@
|
|||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_CRYPT_R
|
||||
#include <crypt.h>
|
||||
#if defined HAVE_CRYPT_R
|
||||
# include <crypt.h>
|
||||
#elif !defined HAVE_CRYPT
|
||||
# include "missing/crypt.h"
|
||||
# define HAVE_CRYPT_R 1
|
||||
#endif
|
||||
|
||||
#define STRING_ENUMERATORS_WANTARRAY 0 /* next major */
|
||||
|
|
Loading…
Reference in a new issue