<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>+++ lib/dimension.c<span class="Apple-tab-span" style="white-space:pre"> </span>
(working copy)</div>
<div>@@ -163,7 +163,7 @@</div>
<div> return;</div>
<div> }</div>
<div> #else</div>
<div>- rc = regcomp(dimension->regex, entry, REG_EXTENDED);</div>
<div>+ int rc = regcomp(dimension->regex, entry, REG_EXTENDED);</div>
<div> if(rc) {</div>
<div> char errmsg[200];</div>
<div> regerror(rc,dimension->regex,errmsg,200);</div>
</div>
<div><br>
</div>
<div><br>
</div>
<div>Mike</div>
<div><br>
</div>
<div>
<div>
<div>
<div>-- </div>
<div>Michael Smith</div>
</div>
<div>US Army Corps</div>
<div>Remote Sensing GIS/Center</div>
</div>
</div>
</body>
</html>