diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-20 04:18:01 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-20 04:18:01 +0000 |
commit | 9c868fe72b5fc25ec35009d25bea9723d0986454 (patch) | |
tree | 936b2397f2f0324b9649ed0f5d58ce161aa8d0bf /configure | |
parent | 9f37f99dcdf92de1881de2f91db353ee50de6d98 (diff) |
Edited to properly detect strlcpy on netbsd (different declaration in string.h didn't match regexp)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1461 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -92,7 +92,7 @@ if (!$fail) { # try and find the delcaration of: # size_t strlcpy(...) - if (($line =~ /size_t(\0x9|\s)+strlcpy(\0x9|\s)+\(/) || ($line =~ /size_t(\0x9|\s)+strlcpy\(/)) + if ($line =~ /size_t(\0x9|\s)+strlcpy/) { $config{HAS_STRLCPY} = "true"; } |