1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
<html>
<head>
<title>Errors with CamStream</title>
<link rel="stylesheet" href="camstream.css" type="text/css">
</head>
<body>
<h1>Known issues with CamStream</h1>
<p>On this page you will find information about known bugs or features. This is
more like a quick hack-page if you want to get it working <u>now</u> and
can't wait until the next release.
<h3>Version 0.21: FTPClient.cc</h3>
<p>If compiling <span class="filename">FTPClient.cc</span> fails like this...
<pre class="command">
FTPClient.cc: In method `void CFTPClient::ListenRead (int)':
FTPClient.cc:494: `abort' undeclared (first use this function)
FTPClient.cc:494: (Each undeclared identifier is reported only once for
each function it appears in.)
make[1]: *** [FTPClient.o] Error 1
make[1]: Leaving directory /usr/local/src/camstream-0.21/src/lib'
make: *** [subdirs] Error 2
</pre>
<p>...then you must insert <span class="code">#include <stdlib.h></span>
at the top of that file. It's a libc thing.
</body>
</html>
|