diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-03-19 08:01:40 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-03-19 08:01:40 +0000 |
commit | 72408684245a2b1a45cb4e09906436e06b95bf60 (patch) | |
tree | 342305969c739b4b5b548fa00118104cebc25601 /configure.in | |
parent | de3770d158d8c955e450f1c2359cbc85b7515ebe (diff) | |
download | ruby-72408684245a2b1a45cb4e09906436e06b95bf60.tar.gz |
* missing/{strlcat,strlcpy}.c, missing.h: new functions.
* LEGAL: add copyright notice about above files.
* configure.in: check whether strlcat and strlcpy are exist or not.
* {bcc32,win32,wince}/Makefile.sub: use above files.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12100 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 3843ea0d80..094e2437ef 100644 --- a/configure.in +++ b/configure.in @@ -561,8 +561,8 @@ powerpc-darwin*) esac AC_FUNC_MEMCMP AC_REPLACE_FUNCS(dup2 memmove strcasecmp strncasecmp strerror strftime\ - strchr strstr strtoul crypt flock\ - isnan finite isinf hypot acosh erf) + strchr strstr strtoul crypt flock vsnprintf\ + isnan finite isinf hypot acosh erf strlcpy strlcat) AC_CHECK_FUNCS(fmod killpg wait4 waitpid fork spawnv syscall chroot fsync getcwd eaccess\ truncate chsize times utimes fcntl lockf lstat link symlink readlink\ setitimer setruid seteuid setreuid setresuid setproctitle socketpair\ |