From 9c868fe72b5fc25ec35009d25bea9723d0986454 Mon Sep 17 00:00:00 2001 From: brain Date: Fri, 20 May 2005 04:18:01 +0000 Subject: [PATCH] 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 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index ac0be8fe0..1c17677ed 100755 --- a/configure +++ b/configure @@ -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"; } -- 2.39.2