<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; color: rgb(0, 0, 0); font-size: 14px; font-family: Calibri, sans-serif; ">
<div>Thomas,</div>
<div><br>
</div>
<div>Looks like there is a missing int declaration on lib/dimension.c for mapcache when compiling without pcre.</div>
<div><br>
</div>
<div>This fixed the issue for me</div>
<div><br>
</div>
<div>
<div>Index: lib/dimension.c</div>
<div>===================================================================</div>
<div>--- lib/dimension.c<span class="Apple-tab-span" style="white-space:pre"> </span>
(revision 12979)</div>
<div>&#43;&#43;&#43; lib/dimension.c<span class="Apple-tab-span" style="white-space:pre"> </span>
(working copy)</div>
<div>@@ -163,7 &#43;163,7 @@</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp;return;</div>
<div>&nbsp; &nbsp; }</div>
<div>&nbsp;#else</div>
<div>- &nbsp; rc = regcomp(dimension-&gt;regex, entry, REG_EXTENDED);</div>
<div>&#43; &nbsp; int rc = regcomp(dimension-&gt;regex, entry, REG_EXTENDED);</div>
<div>&nbsp; &nbsp; if(rc) {</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp;char errmsg[200];</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp;regerror(rc,dimension-&gt;regex,errmsg,200);</div>
</div>
<div><br>
</div>
<div><br>
</div>
<div>Mike</div>
<div><br>
</div>
<div>
<div>
<div>
<div>--&nbsp;</div>
<div>Michael Smith</div>
</div>
<div>US Army Corps</div>
<div>Remote Sensing GIS/Center</div>
</div>
</div>
</body>
</html>