<html><head><base href="x-msg://205/"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">Once you've made *any* changes to the supplied code - and that *especially* includes commenting out code to try to work around compiler/linker problems - then you can't expect any support on this mailing list.<div><br></div><div>Noone else has reported the compiler problems that you're seeing.  Perhaps you have out-of-date standard libraries and/or header files??</div><div><br></div><div>But in this case, "_strncasecmp" is defined in "liveMedia/include/RTSPCommon.hh".  Because you (I presume) have "__WIN32__" or "_WIN32" defined, that means that it's defined as "_strnicmp".</div><div><br></div><div>But note also the following code defined in "liveMedia/include/Media.hh":</div><div><br></div><div><div>// The following makes the Borland compiler happy:</div><div>#ifdef __BORLANDC__</div><div>#define _strnicmp strnicmp</div><div>#define fabsf(x) fabs(x)</div><div>#endif</div></div><div><br></div><div>Perhaps this is what you need (assuming that you also have "__BORLANDC__" defined)?</div><div><br></div><div><br></div><div>So, I suggest adding the following:</div><div><br></div><div><div>#ifndef _MEDIA_HH</div><div>#include <Media.hh></div><div>#endif</div></div><div><br></div><div>to the top of "liveMedia/include/RTSPCommon.hh".  That might help you.</div><div><br></div><div>In any case, stop arbitrarily commenting out code, if you expect it to work.</div><br><br><div>
<span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; ">Ross Finlayson<br>Live Networks, Inc.<br><a href="http://www.live555.com/">http://www.live555.com/</a></span></span>
</div>
<br></body></html>