<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body><div>On Wed, Apr 12, 2017, at 18:29, Rosenbaum, Larry M. wrote:<br></div>
<blockquote type="cite"><div><p style="margin: 0in 0in 0.0001pt;"><span class="font" style="font-family:Calibri, sans-serif"><span class="size" style="font-size:11pt">I am trying to build Cyrus-IMAP 3.0.0 on RHEL6. I am getting the following build error:</span></span><br></p><p style="margin: 0in 0in 0.0001pt;"><span class="font" style="font-family:Calibri, sans-serif"><span class="size" style="font-size:11pt"> </span></span><br></p><p style="margin: 0in 0in 0.0001pt 0.5in;"><span class="font" style="font-family:Calibri, sans-serif"><span class="size" style="font-size:11pt">checking for ICU... configure: error: Package requirements (icu-uc) were not met:</span></span><br></p><p style="margin: 0in 0in 0.0001pt 0.5in;"><span class="font" style="font-family:Calibri, sans-serif"><span class="size" style="font-size:11pt"> </span></span><br></p><p style="margin: 0in 0in 0.0001pt 0.5in;"><span class="font" style="font-family:Calibri, sans-serif"><span class="size" style="font-size:11pt">No package 'icu-uc' found</span></span><br></p><p style="margin: 0in 0in 0.0001pt 0.5in;"><span class="font" style="font-family:Calibri, sans-serif"><span class="size" style="font-size:11pt"> </span></span><br></p><p style="margin: 0in 0in 0.0001pt 0.5in;"><span class="font" style="font-family:Calibri, sans-serif"><span class="size" style="font-size:11pt">Consider adjusting the PKG_CONFIG_PATH environment variable if you</span></span><br></p><p style="margin: 0in 0in 0.0001pt 0.5in;"><span class="font" style="font-family:Calibri, sans-serif"><span class="size" style="font-size:11pt">installed software in a non-standard prefix.</span></span><br></p><p style="margin: 0in 0in 0.0001pt 0.5in;"><span class="font" style="font-family:Calibri, sans-serif"><span class="size" style="font-size:11pt"> </span></span><br></p><p style="margin: 0in 0in 0.0001pt 0.5in;"><span class="font" style="font-family:Calibri, sans-serif"><span class="size" style="font-size:11pt">Alternatively, you may set the environment variables ICU_CFLAGS</span></span><br></p><p style="margin: 0in 0in 0.0001pt 0.5in;"><span class="font" style="font-family:Calibri, sans-serif"><span class="size" style="font-size:11pt">and ICU_LIBS to avoid the need to call pkg-config.</span></span><br></p><p style="margin: 0in 0in 0.0001pt 0.5in;"><span class="font" style="font-family:Calibri, sans-serif"><span class="size" style="font-size:11pt">See the pkg-config man page for more details.</span></span><br></p><p style="margin: 0in 0in 0.0001pt;"><span class="font" style="font-family:Calibri, sans-serif"><span class="size" style="font-size:11pt"> </span></span><br></p><p style="margin: 0in 0in 0.0001pt;"><span class="font" style="font-family:Calibri, sans-serif"><span class="size" style="font-size:11pt">I have already installed libicu-devel. What other package do I need to install to get past this check?</span></span><br></p></div>
</blockquote><div><br></div>
<div>Your pkg-config executable seems to be unable to find the icu-uc library.<br></div>
<div><br></div>
<div> You can check if  pkg-config finds icu-uc with<br></div>
<div><br></div>
<div>    $ pkg-config --cflags --libs icu-uc<br></div>
<div><br></div>
<div>which should print something like<br></div>
<div><br></div>
<div>    -I/usr/local/cyruslibs/include -L/usr/local/cyruslibs/lib -licuuc -licudata<br></div>
<div><br></div>
<div>If it doesn't, does pkg-config find any of the other ICU packages, e.g. icu-io?<br></div>
<div><br></div>
<div>If  yes, you might have an incomplete ICU installation.<br></div>
<div>If no,  you might want to check where the RPM did install libicu-devel to and update your PKG_CONFIG_PATH environment variable accordingly.<br></div>
<div><br></div>
<div>Cheers,<br></div>
<div>Robert<br></div>
</body>
</html>