From 4c7a3c1350687d2913a2e008c2c41deceedcdead Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Sat, 28 Sep 2019 18:01:32 +0300 Subject: Adapt to renaming butl::casecmp() to icasecmp() --- libbuild2/cc/windows-rpath.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libbuild2/cc/windows-rpath.cxx') diff --git a/libbuild2/cc/windows-rpath.cxx b/libbuild2/cc/windows-rpath.cxx index 5583315..b5d82b1 100644 --- a/libbuild2/cc/windows-rpath.cxx +++ b/libbuild2/cc/windows-rpath.cxx @@ -94,7 +94,7 @@ namespace build2 // size_t p (path::traits_type::find_extension (f)); - if (p == string::npos || casecmp (f.c_str () + p + 1, "dll") != 0) + if (p == string::npos || icasecmp (f.c_str () + p + 1, "dll") != 0) return; } @@ -172,7 +172,7 @@ namespace build2 { size_t p (path::traits_type::find_extension (f)); - if (p != string::npos && casecmp (f.c_str () + p + 1, "dll") == 0) + if (p != string::npos && icasecmp (f.c_str () + p + 1, "dll") == 0) { // See if we can find a corresponding .pdb. // -- cgit v1.1