File: bugs.html

package info (click to toggle)
camstream 0.25-4
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,996 kB
  • ctags: 1,478
  • sloc: cpp: 6,074; asm: 1,033; makefile: 272
file content (33 lines) | stat: -rw-r--r-- 997 bytes parent folder | download
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 &lt;stdlib.h&gt;</span>
at the top of that file. It's a libc thing.

</body>
</html>